Home
last modified time | relevance | path

Searched refs:pTag (Results 1 – 8 of 8) sorted by relevance

/aosp12/frameworks/compile/mclinker/include/mcld/Target/
H A DELFAttributeData.h47 virtual const ELFAttributeValue* getAttributeValue(TagType pTag) const = 0;
56 TagType pTag) = 0;
65 TagType pTag,
88 static bool ReadTag(TagType& pTag, const char*& pBuf, size_t& pBufSize);
105 static bool WriteAttribute(TagType pTag,
H A DELFDynamic.tcc20 void Entry<32, true>::setValue(uint64_t pTag, uint64_t pValue) { in setValue() argument
21 m_Pair.d_tag = pTag; in setValue()
42 void Entry<64, true>::setValue(uint64_t pTag, uint64_t pValue) { in setValue() argument
43 m_Pair.d_tag = pTag; in setValue()
H A DELFDynamic.h43 virtual void setValue(uint64_t pTag, uint64_t pValue) = 0;
72 inline void setValue(uint64_t pTag, uint64_t pValue);
103 inline void setValue(uint64_t pTag, uint64_t pValue);
164 void reserveOne(uint64_t pTag);
166 void applyOne(uint64_t pTag, uint64_t pValue);
/aosp12/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMELFAttributeData.cpp20 TagType pTag) const { in getAttributeValue()
21 if (pTag <= Tag_Max) { in getAttributeValue()
45 if (pTag <= Tag_Max) { in getOrCreateAttributeValue()
46 attr_value = &m_Attrs[pTag]; in getOrCreateAttributeValue()
49 attr_value = &m_UnknownAttrs[pTag]; in getOrCreateAttributeValue()
65 switch (pTag) { in GetAttributeValueType()
77 if (pTag < 32) in GetAttributeValueType()
146 TagType pTag, in merge() argument
152 ELFAttributeValue& out_attr = m_Attrs[pTag]; in merge()
157 switch (pTag) { in merge()
[all …]
H A DARMELFAttributeData.h151 virtual const ELFAttributeValue* getAttributeValue(TagType pTag) const;
154 TagType pTag);
172 TagType pTag,
187 static unsigned int GetAttributeValueType(TagType pTag);
/aosp12/frameworks/compile/mclinker/lib/Target/
H A DELFAttributeData.cpp18 bool ELFAttributeData::ReadTag(TagType& pTag, in ReadTag() argument
23 pTag = static_cast<ELFAttributeData::TagType>( in ReadTag()
64 bool ELFAttributeData::WriteAttribute(TagType pTag, in WriteAttribute() argument
68 leb128::encode<uint32_t>(pBuf, pTag); in WriteAttribute()
H A DELFDynamic.cpp79 void ELFDynamic::reserveOne(uint64_t pTag) { in reserveOne() argument
84 void ELFDynamic::applyOne(uint64_t pTag, uint64_t pValue) { in applyOne() argument
86 m_EntryList[m_Idx]->setValue(pTag, pValue); in applyOne()
/aosp12/frameworks/base/media/java/android/media/
H A DTtmlRenderer.java230 boolean pTag = node.mName.equals(TtmlUtils.TAG_P); in extractText()
233 extractText(node.mChildren.get(i), startUs, endUs, out, pTag || inPTag); in extractText()
235 if (pTag && length != out.length()) { in extractText()