Searched refs:pTag (Results 1 - 7 of 7) sorted by relevance

/frameworks/compile/mclinker/include/mcld/Target/
H A DELFAttributeData.h48 virtual const ELFAttributeValue *getAttributeValue(TagType pTag) const = 0;
57 getOrCreateAttributeValue(TagType pTag) = 0;
65 TagType pTag, const ELFAttributeValue& pInAttr) = 0;
85 /// except leaving undefined value in pTag.
86 static bool ReadTag(TagType& pTag, const char* &pBuf, size_t &pBufSize);
102 static bool WriteAttribute(TagType pTag, const ELFAttributeValue& pValue,
H A DELFDynamic.h44 virtual void setValue(uint64_t pTag, uint64_t pValue) = 0;
80 inline void setValue(uint64_t pTag, uint64_t pValue);
117 inline void setValue(uint64_t pTag, uint64_t pValue);
179 void reserveOne(uint64_t pTag);
181 void applyOne(uint64_t pTag, uint64_t pValue);
/frameworks/compile/mclinker/lib/Target/
H A DELFAttributeData.cpp18 bool ELFAttributeData::ReadTag(TagType& pTag, const char* &pBuf, argument
23 pTag = static_cast<ELFAttributeData::TagType>(
64 bool ELFAttributeData::WriteAttribute(TagType pTag, argument
69 leb128::encode<uint32_t>(pBuf, pTag);
H A DELFDynamic.cpp84 void ELFDynamic::reserveOne(uint64_t pTag) argument
90 void ELFDynamic::applyOne(uint64_t pTag, uint64_t pValue) argument
93 m_EntryList[m_Idx]->setValue(pTag, pValue);
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMELFAttributeData.h154 virtual const ELFAttributeValue *getAttributeValue(TagType pTag) const;
157 getOrCreateAttributeValue(TagType pTag);
175 TagType pTag, const ELFAttributeValue& pInAttr);
189 static unsigned int GetAttributeValueType(TagType pTag);
H A DARMELFAttributeData.cpp18 const ELFAttributeValue *ARMELFAttributeData::getAttributeValue(TagType pTag) const
20 if (pTag <= Tag_Max) {
21 const ELFAttributeValue &attr_value = m_Attrs[pTag];
30 UnknownAttrsMap::const_iterator attr_it = m_UnknownAttrs.find(pTag);
41 ARMELFAttributeData::getOrCreateAttributeValue(TagType pTag) argument
45 if (pTag <= Tag_Max) {
46 attr_value = &m_Attrs[pTag];
49 attr_value = &m_UnknownAttrs[pTag];
58 attr_value->setType(GetAttributeValueType(pTag));
63 unsigned int ARMELFAttributeData::GetAttributeValueType(TagType pTag) argument
146 merge(const LinkerConfig& pConfig, const Input &pInput, TagType pTag, const ELFAttributeValue& pInAttr) argument
[all...]
/frameworks/base/media/java/android/media/
H A DTtmlRenderer.java239 boolean pTag = node.mName.equals(TtmlUtils.TAG_P);
242 extractText(node.mChildren.get(i), startUs, endUs, out, pTag || inPTag);
244 if (pTag && length != out.length()) {

Completed in 284 milliseconds