Home
last modified time | relevance | path

Searched refs:symbol (Results 1 – 25 of 32) sorted by relevance

12

/frameworks/base/core/res/
DMakeJavaSymbols.sed2 # to generate the set of <java-symbol> commands to have aapt generate
3 # the symbol for them.
7 s|.*R.id.\([a-zA-Z0-9_]*\).*| <java-symbol type="id" name="\1" />|gp
8 s|.*R.attr.\([a-zA-Z0-9_]*\).*| <java-symbol type="attr" name="\1" />|gp
9 s|.*R.bool.\([a-zA-Z0-9_]*\).*| <java-symbol type="bool" name="\1" />|gp
10 s|.*R.integer.\([a-zA-Z0-9_]*\).*| <java-symbol type="integer" name="\1" />|gp
11 s|.*R.color.\([a-zA-Z0-9_]*\).*| <java-symbol type="color" name="\1" />|gp
12 s|.*R.dimen.\([a-zA-Z0-9_]*\).*| <java-symbol type="dimen" name="\1" />|gp
13 s|.*R.fraction.\([a-zA-Z0-9_]*\).*| <java-symbol type="fraction" name="\1" />|gp
14 s|.*R.string.\([a-zA-Z0-9_]*\).*| <java-symbol type="string" name="\1" />|gp
[all …]
/frameworks/compile/mclinker/include/mcld/LD/
DDiagSymbolResolutions.inc1 …Engine::Note, "input file `%0' has no symbol table `%2'\n path of input file: %1", "input file `%…
4 DIAG(mark_dynamic_defined, DiagnosticEngine::Ignore, "refer to dynamic symbol %0", "call a external…
5 …to_define, DiagnosticEngine::Ignore, "common symbol %0 is overridden by previous definition", "com…
6 …define_common, DiagnosticEngine::Ignore, "common symbol %0 is overridden by definition", "common s…
7 …iagnosticEngine::Ignore, "indirect symbol %0 points to a common symbol", "indirect symbol %0 point…
8 …ect_refer_to_inexist, DiagnosticEngine::Fatal, "indirect symbol %0 points to a undefined symbol", …
9 DIAG(multiple_definitions, DiagnosticEngine::Error, "multiple definition of symbol `%0'", "you defi…
DDiagRelocations.inc2 … relocation type `%0' for symbol `%1', recompile with -fPIC", "attempt to generate unsupported rel…
3 …on type `%0' is not supported for symbol `%1'\nPlease report to %2", "relocation type `%0' is not …
6 …"encounter unknown relocation type `%0' for symbol `%1'", "encounter unknown relocation type `%0' …
7 …"relocation type `%0' is invalid for global symbol `%1'", "relocation type `%0' is invalid for glo…
8 …applying relocation `%0' causes overflow on symbol `%1'","applying relocation `%0' causes overflow…
9 … `%0' encounters unexpected opcode on symbol `%1'","applying relocation `%0' encounters unexpected…
DDiagGOTPLT.inc1 …icEngine::Unreachable, "%0 is not a dynamic symbol, do not put it in global got", "%0 is not a dyn…
DELFReader.tcc464 LDSymbol* symbol = pInput.context()->getSymbol(r_sym); in readRela() local
465 if (NULL == symbol) in readRela()
468 ResolveInfo* resolve_info = symbol->resolveInfo(); in readRela()
480 pLinker.addRelocation(r_type, *symbol, *resolve_info, *frag_ref, pSection, r_addend); in readRela()
511 LDSymbol* symbol = pInput.context()->getSymbol(r_sym); in readRel() local
512 if (NULL == symbol) { in readRel()
516 ResolveInfo* resolve_info = symbol->resolveInfo(); in readRel()
528 pLinker.addRelocation(r_type, *symbol, *resolve_info, *frag_ref, pSection); in readRel()
DDiagCommonKinds.inc12 …duplicated_wrap, DiagnosticEngine::Warning, "wrapped symbol `%0' had been claimed", "wrapped symbo…
14 …t_read_symbol, DiagnosticEngine::Fatal, "can not read symbol[%0] in file %1", "can not read symbol
/frameworks/compile/libbcc/lib/ExecutionEngine/
DELFObjectLoaderImpl.cpp107 const ELFSymbol<32> *symbol = mSymTab->getByName(pName); in getSymbolAddress() local
108 if (symbol == NULL) { in getSymbolAddress()
113 return symbol->getAddress(mObject->getHeader()->getMachine(), in getSymbolAddress()
122 const ELFSymbol<32> *symbol = mSymTab->getByName(pName); in getSymbolSize() local
124 if (symbol == NULL) { in getSymbolSize()
129 return static_cast<size_t>(symbol->getSize()); in getSymbolSize()
156 ELFSymbol<32> *symbol = (*mSymTab)[i]; in getSymbolNameList() local
157 if (symbol == NULL) { in getSymbolNameList()
162 (symbol->getType() == elf_type)) { in getSymbolNameList()
163 const char *symbol_name = symbol->getName(); in getSymbolNameList()
/frameworks/compile/linkloader/include/impl/
DELFSectionSymTab.hxx56 ELFSymbolTy *symbol = table[i]; in buildNameMap() local
57 if ( symbol ) { in buildNameMap()
58 name_map[symbol->getName()] = symbol; in buildNameMap()
66 typename llvm::StringMap<ELFSymbolTy *>::const_iterator symbol = in getByName() local
68 if (symbol == name_map.end()) { in getByName()
71 return symbol->getValue(); in getByName()
/frameworks/compile/linkloader/android/
Dlibrsloader.cpp115 ELFSymbol<32> *symbol = symtab->getByName(name); in rsloaderGetSymbolAddress() local
117 if (!symbol) { in rsloaderGetSymbolAddress()
124 return symbol->getAddress(machine, false); in rsloaderGetSymbolAddress()
137 ELFSymbol<32> *symbol = symtab->getByName(name); in rsloaderGetSymbolSize() local
139 if (!symbol) { in rsloaderGetSymbolSize()
144 return (size_t)symbol->getSize(); in rsloaderGetSymbolSize()
/frameworks/compile/mclinker/lib/Target/
DGNULDBackend.cpp711 SymbolCategory::const_iterator symbol; in sizeNamePools() local
713 for (symbol = pSymbols.begin(); symbol != symEnd; ++symbol) { in sizeNamePools()
714 size_t str_size = (*symbol)->nameSize() + 1; in sizeNamePools()
715 if (isDynamicSymbol(**symbol, pOutput)) { in sizeNamePools()
858 SymbolCategory::iterator symbol; in emitRegNamePools() local
860 for (symbol = pSymbols.begin(); symbol != symEnd; ++symbol) { in emitRegNamePools()
872 symtab32[symtabIdx].st_value = getSymbolValue(**symbol); in emitRegNamePools()
873 symtab32[symtabIdx].st_size = getSymbolSize(**symbol); in emitRegNamePools()
874 symtab32[symtabIdx].st_info = getSymbolInfo(**symbol); in emitRegNamePools()
875 symtab32[symtabIdx].st_other = (*symbol)->visibility(); in emitRegNamePools()
[all …]
/frameworks/compile/mclinker/lib/MC/
DMCLinker.cpp436 SymbolCategory::iterator symbol, symEnd = m_OutputSymbols.end(); in finalizeSymbols() local
437 for (symbol = m_OutputSymbols.begin(); symbol != symEnd; ++symbol) { in finalizeSymbols()
439 if ((*symbol)->resolveInfo()->isAbsolute() || in finalizeSymbols()
440 (*symbol)->resolveInfo()->type() == ResolveInfo::File) { in finalizeSymbols()
443 (*symbol)->setValue(0x0); in finalizeSymbols()
447 if ((*symbol)->hasFragRef()) { in finalizeSymbols()
451 uint64_t value = getLayout().getOutputOffset(*(*symbol)->fragRef()); in finalizeSymbols()
452 assert(NULL != (*symbol)->fragRef()->frag()); in finalizeSymbols()
453 uint64_t addr = getLayout().getOutputLDSection(*(*symbol)->fragRef()->frag())->addr(); in finalizeSymbols()
454 (*symbol)->setValue(value + addr); in finalizeSymbols()
/frameworks/compile/mclinker/lib/Target/Mips/
DMipsLDBackend.cpp350 for (SymbolCategory::iterator symbol = pSymbols.begin(), in emitDynNamePools() local
351 sym_end = pSymbols.end(); symbol != sym_end; ++symbol) { in emitDynNamePools()
352 if (!isDynamicSymbol(**symbol, pOutput)) in emitDynNamePools()
355 if (isGlobalGOTSymbol(**symbol)) in emitDynNamePools()
358 emitDynamicSymbol(symtab32[symtabIdx], pOutput, **symbol, pLayout, strtab, in emitDynNamePools()
363 strtabsize += (*symbol)->nameSize() + 1; in emitDynNamePools()
367 for (std::vector<LDSymbol*>::const_iterator symbol = m_GlobalGOTSyms.begin(), in emitDynNamePools() local
369 symbol != symbol_end; ++symbol) { in emitDynNamePools()
374 if (!isDynamicSymbol(**symbol, pOutput)) in emitDynNamePools()
375 fatal(diag::mips_got_symbol) << (*symbol)->name(); in emitDynNamePools()
[all …]
/frameworks/base/tools/aapt/
DAaptAssets.h475 bool check_valid_symbol_name(const String8& symbol, const SourcePos& pos, const char* label) { in check_valid_symbol_name() argument
476 if (valid_symbol_name(symbol)) { in check_valid_symbol_name()
479 pos.error("invalid %s: '%s'\n", label, symbol.string()); in check_valid_symbol_name()
482 AaptSymbolEntry& edit_symbol(const String8& symbol, const SourcePos* pos) { in edit_symbol() argument
483 ssize_t i = mSymbols.indexOfKey(symbol); in edit_symbol()
485 i = mSymbols.add(symbol, AaptSymbolEntry(symbol)); in edit_symbol()
493 const AaptSymbolEntry& get_symbol(const String8& symbol) const { in get_symbol() argument
494 ssize_t i = mSymbols.indexOfKey(symbol); in get_symbol()
DAaptAssets.cpp2658 valid_symbol_name(const String8& symbol) in valid_symbol_name() argument
2673 const char*const s = symbol.string(); in valid_symbol_name()
/frameworks/compile/libbcc/tools/build/
Dgen-sha1-stamp.py109 for (symbol, y) in zip(symbols, x):
110 print_asm_symbol_data(symbol, y[1])
/frameworks/base/docs/html/distribute/googleplay/promote/
Dbrand.jd22 <li>Android&trade; should have a trademark symbol the first time it appears in a creative.</li>
31 First instance of this use should be followed by a TM symbol, "for Android&trade;".</p>
93 <p>Always include a TM symbol on the first or most prominent instance of Google Play&trade;
/frameworks/base/libs/androidfw/
DKeyCharacterMap.cpp1031 char16_t symbol = 0; in finishKey() local
1040 symbol = ch; in finishKey()
1044 key->number = digit ? digit : symbol; in finishKey()
/frameworks/base/docs/html/guide/topics/resources/
Dlayout-resource.jd193 plus symbol, {@code +}, indicates that this is a new resource ID and the <code>aapt</code> tool will
209 plus symbol in the <code>android:id</code> value.</p>
Dmenu-resource.jd96 <code>"@+id/<em>name</em>"</code>. The plus symbol indicates that this should be created as a new
216 <code>"@+id/<em>name</em>"</code>. The plus symbol indicates that this should be created as a new
Daccessing-resources.jd296 format, but instead of the at-symbol ({@code &#64;}), use a question-mark ({@code ?}), and the
/frameworks/base/docs/html/guide/topics/admin/
Ddevice-admin.jd140 …sswords must contain at least a letter, a numerical digit, and a special symbol. Introduced in And…
555 password containing at least alphabetic (or other symbol) characters.</dd>
558 other symbol) characters.</dd>
564 a special symbol.</dd>
/frameworks/compile/libbcc/
DREADME.rst89 symbol lookup
/frameworks/base/docs/html/
Dlegal.jd29 and the first instance should be followed by a TM symbol, "for Android&trade;." In other
/frameworks/base/docs/html/guide/topics/ui/
Ddeclaring-layout.jd155 <p>The at-symbol (&#64;) at the beginning of the string indicates that the XML parser should parse…
156 of the ID string and identify it as an ID resource. The plus-symbol (+) means that this is a new re…
158 …by the Android framework. When referencing an Android resource ID, you do not need the plus-symbol,
/frameworks/base/docs/html/tools/adk/
Dadk2.jd110 <li>Place and hold your fingertip over the clock symbol on the control face.
115 <li>Place your fingertip over the alarm clock symbol to activate alarm setting.</li>
119 <li>To set the alarm tone, place and hold your fingertip over the alarm clock symbol, then tap the

12