Searched defs:symbol (Results 1 - 21 of 21) sorted by relevance

/frameworks/compile/mclinker/lib/Script/
H A DRpnEvaluator.cpp84 // we set up symbol operand here.
87 const LDSymbol* symbol = local
89 if (symbol == NULL) {
93 sym_opd->setValue(symbol->value());
/frameworks/base/tools/aapt/
H A DSymbol.h27 * A resource symbol, not attached to any configuration or context.
43 * A specific defintion of a symbol, defined with a configuration and a definition site.
50 Symbol symbol; member in struct:SymbolDefinition
85 : symbol(s)
91 return (symbol < rhs.symbol) || (config < rhs.config) || (source < rhs.source);
H A DAaptAssets.cpp847 entry.sourcePos.error("Symbol '%s' declared with <java-symbol> not defined\n", name.string());
851 //printf("**** setting symbol #%d/%d %s to isJavaSymbol=%d\n",
863 pos.error("Java symbol dir %s not defined\n", name.string());
1496 pos.error("Java symbol dir %s not defined\n", name.string());
1617 valid_symbol_name(const String8& symbol) argument
1632 const char*const s = symbol.string();
H A DAaptAssets.h306 * All information we know about a particular symbol.
371 if (!check_valid_symbol_name(name, pos, "symbol")) {
382 if (!check_valid_symbol_name(name, pos, "symbol")) {
392 if (!check_valid_symbol_name(name, pos, "symbol")) {
401 if (!check_valid_symbol_name(name, pos, "symbol")) {
436 if (!check_valid_symbol_name(name, pos, "nested symbol")) {
462 bool check_valid_symbol_name(const String8& symbol, const SourcePos& pos, const char* label) { argument
463 if (valid_symbol_name(symbol)) {
466 pos.error("invalid %s: '%s'\n", label, symbol.string());
469 AaptSymbolEntry& edit_symbol(const String8& symbol, cons argument
[all...]
H A DResource.cpp1663 const Symbol& symbol = densityVaryingResources.keyAt(k); local
1664 ssize_t block = resTable.getResource(symbol.id, &val, true);
1668 block = finalResTable.getResource(symbol.id, &val, true);
1674 symbol.toString().string(), config.toString().string());
1682 symbol.toString().string(), def.config.toString().string());
1864 "%s:%d: Permission name <%s> is not a valid Java symbol\n",
2031 static String8 flattenSymbol(const String8& symbol) { argument
2032 String8 result(symbol);
2034 if ((first = symbol.find(":", 0)) >= 0
2035 || (first = symbol
2048 getSymbolPackage(const String8& symbol, const sp<AaptAssets>& assets, bool pub) argument
2056 getSymbolName(const String8& symbol) argument
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DStubFactory.cpp74 // build a name for stub symbol
83 LDSymbol* symbol = local
93 stub->setSymInfo(symbol->resolveInfo());
H A DELFReader.cpp81 // skip the first NULL symbol
135 // Section symbol's st_name is the section index.
167 // 2. easy to know if a symbol is from .so
170 // sort symbols by symbol value and then weak before strong
173 // for each weak symbol, find out all its aliases, and
222 LDSymbol* symbol = pInput.context()->getSymbol(r_sym); local
223 if (symbol == NULL) {
227 IRBuilder::AddRelocation(pSection, r_type, *symbol, r_offset, r_addend);
249 LDSymbol* symbol = pInput.context()->getSymbol(r_sym);
250 if (symbol
717 LDSymbol* symbol = pInput.context()->getSymbol(r_sym); local
[all...]
/frameworks/compile/mclinker/include/mcld/Script/
H A DAssignment.h46 const SymOperand& symbol() const { return m_Symbol; } function in class:mcld::Assignment
47 SymOperand& symbol() { return m_Symbol; } function in class:mcld::Assignment
/frameworks/base/tools/aapt2/
H A DJavaClassGenerator.cpp65 static bool isValidSymbol(const StringPiece16& symbol) { argument
66 return sJavaIdentifiers.find(symbol) == sJavaIdentifiers.end();
73 static std::u16string transform(const StringPiece16& symbol) { argument
74 std::u16string output = symbol.toString();
157 // Check that we want to emit this symbol.
173 err << "invalid symbol name '" << resourceName << "'";
H A DBinaryResourceParser.cpp53 idToName(entry.symbol);
172 // This offset is a symbol!
187 // Since we scan the symbol table in order, we can start looking for the
188 // next symbol from this point.
238 << "failed to parse symbol string pool with code: "
712 // This reference has an invalid ID. Check if it is an unresolved symbol.
713 ResourceNameRef symbol; local
714 if (getSymbol(&value->data, &symbol)) {
715 return util::make_unique<Reference>(symbol, type);
718 // This is not an unresolved symbol, s
761 ResourceNameRef symbol; local
777 ResourceNameRef symbol; local
814 Attribute::Symbol symbol; local
854 ResourceNameRef symbol; local
[all...]
H A DResourceValues.h211 Reference symbol; member in struct:aapt::Attribute::Symbol
289 return out << s.symbol.name.entry << "=" << s.value;
/frameworks/compile/mclinker/include/mcld/LD/
H A DBranchIsland.h111 const LDSymbol* symbol() const { return m_pSymbol; } function in class:mcld::BranchIsland::Key
117 llvm::StringRef sym_name(KEY.symbol()->name());
129 if (KEY1.symbol() == KEY2.symbol()) {
133 if (KEY1.symbol()->hasFragRef() && KEY2.symbol()->hasFragRef()) {
134 const FragmentRef* ref1 = KEY1.symbol()->fragRef();
135 const FragmentRef* ref2 = KEY2.symbol()->fragRef();
/frameworks/compile/mclinker/tools/mcld/
H A DMain.cpp509 // Setup symbol stripping mode.
608 // -u symbol
617 // --wrap=symbol
620 const char* symbol = arg->getValue(); local
621 // symbol -> __wrap_symbol
623 script_.renameMap().insert(symbol, exist);
627 .append(symbol);
631 mcld::warning(mcld::diag::rewrap) << symbol << to_wrap_str;
633 // __real_symbol -> symbol
636 .append(symbol);
648 const char* symbol = arg->getValue(); local
[all...]
/frameworks/compile/mclinker/lib/Object/
H A DObjectLinker.cpp119 // Add the symbol set by -u as an undefind global symbol into symbol pool
137 // create the output symbol if it dose not have one
452 // symbol table. Since these symbols has fragRef to input fragments, which
487 // Traverse all the resolveInfo and add the output symbol to output
523 // go through the entire symbol assignments
525 LDSymbol* symbol = NULL; local
526 assert((*it).second.symbol().type() == Operand::SYMBOL);
527 const llvm::StringRef symName = (*it).second.symbol()
714 Module::sym_iterator symbol, symEnd = m_pModule->sym_end(); local
748 LDSymbol* symbol = (*assign).first; local
[all...]
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMLDBackend.cpp130 // Define the symbol _GLOBAL_OFFSET_TABLE_ if there is a symbol with the
297 // define symbol _GLOBAL_OFFSET_TABLE_ when .got create
393 /// finalizeSymbol - finalize the symbol value
674 // calculate the possible symbol value
676 LDSymbol* symbol = relocation->symInfo()->outSymbol(); local
677 if (symbol->hasFragRef()) {
678 uint64_t value = symbol->fragRef()->getOutputOffset();
680 symbol->fragRef()->frag()->getParent()->getSection().addr();
691 sym_value, // symbol valu
[all...]
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.cpp105 // Define the symbol _GLOBAL_OFFSET_TABLE_ if there is a symbol with the
117 // Define the symbol _PROCEDURE_LINKAGE_TABLE_ if there is a symbol with the
293 // the GOT and the symbol table. At the same time .gnu.hash
455 /// finalizeSymbol - finalize the symbol value
465 /// FIXME: Mips needs to allocate small common symbol
505 // We have to reset the description of the symbol here. When doing
514 // allocate TLS common symbol in tbss section
532 // We have to reset the description of the symbol her
629 LDSymbol* symbol = pRel.symInfo()->outSymbol(); local
[all...]
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DExprModel.java147 public SymbolExpr symbol(String text, Class type) { method in class:ExprModel
210 return register(new TernaryExpr(left, right, symbol("false", boolean.class)));
214 return register(new TernaryExpr(left, symbol("true", boolean.class), right));
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonLDBackend.cpp323 // define symbol _GLOBAL_OFFSET_TABLE_
477 // Define the symbol _GLOBAL_OFFSET_TABLE_ if there is a symbol with the
567 LDSymbol* symbol = relocation->symInfo()->outSymbol(); local
568 if (symbol->hasFragRef()) {
569 uint64_t value = symbol->fragRef()->getOutputOffset();
571 symbol->fragRef()->frag()->getParent()->getSection().addr();
575 sym_value, // symbol value
630 /// finalizeSymbol - finalize the symbol value
754 // We have to reset the description of the symbol her
[all...]
/frameworks/native/libs/input/
H A DKeyCharacterMap.cpp1033 char16_t symbol = 0; local
1042 symbol = ch;
1046 key->number = digit ? digit : symbol;
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp218 // name can be presented as C symbol
383 // symbol section index for _DYNAMIC. Now it will be ABS.
648 // ignore if symbol has no fragRef
652 // the value of a TLS symbol is the offset to the TLS segment
715 // number of entries in symbol tables starts from 1 to hold the special entry
727 // number of local symbol in the .symtab and .dynsym
732 Module::const_sym_iterator symbol, symEnd; local
737 2. check whether the symbol is used
746 for (symbol = symbols.begin(); symbol !
960 Module::const_sym_iterator symbol, symEnd; local
1035 Module::const_sym_iterator symbol, symEnd = symbols.dynamicEnd(); local
1126 Module::const_sym_iterator symbol, symEnd = pSymtab.dynamicEnd(); local
1161 Module::const_sym_iterator symbol, symEnd = pSymtab.dynamicEnd(); local
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 243 milliseconds