Searched defs:mapping (Results 1 - 3 of 3) sorted by relevance

/frameworks/compile/mclinker/include/mcld/Target/
H A DSymbolEntryMap.h67 const_iterator mapping, mEnd = m_Pool.end(); local
68 for (mapping = m_Pool.begin(); mapping != mEnd; ++mapping) {
69 if (mapping->symbol == &pSymbol) {
70 return mapping->entry;
81 iterator mapping, mEnd = m_Pool.end(); local
82 for (mapping = m_Pool.begin(); mapping != mEnd; ++mapping) {
95 Mapping mapping; local
[all...]
/frameworks/base/core/java/android/view/
H A DViewDebug.java96 * A mapping can be defined to map int values to specific strings. For
98 * actually mean VISIBLE, INVISIBLE and GONE. A mapping can be used to see
102 * @ViewDebug.ExportedProperty(mapping = {
114 IntToString[] mapping() default { };
117 * A mapping can be defined to map array indices to specific strings.
118 * A mapping can be used to see human readable values for the indices
133 * @see #mapping()
138 * A flags mapping can be defined to map flags encoded in an integer to
139 * specific strings. A mapping can be used to see human readable values
186 * Defines a mapping fro
1202 exportUnrolledFlags(BufferedWriter out, FlagToString[] mapping, int intValue, String prefix) argument
[all...]
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp133 LinkerScript::AddressMap::const_iterator mapping = local
135 if (pScript.addressMap().end() != mapping)
136 return mapping.getEntry()->value();
2014 LinkerScript::AddressMap::const_iterator mapping; local
2016 mapping = script.addressMap().find(".text");
2018 mapping = script.addressMap().find(".data");
2020 mapping = script.addressMap().find(".bss");
2022 mapping = script.addressMap().find((*seg).front()->name());
2024 if (mapping != script.addressMap().end()) {
2025 // use address mapping i
[all...]

Completed in 832 milliseconds