Searched refs:symbol (Results 1 - 25 of 49) sorted by last modified time

12

/frameworks/opt/setupwizard/tools/docs/
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...
/frameworks/native/libs/input/
H A DKeyCharacterMap.cpp1119 char16_t symbol = 0; local
1128 symbol = ch;
1132 key->number = digit ? digit : symbol;
/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
218 return register(new TernaryExpr(left, right, symbol("false", boolean.class)));
222 return register(new TernaryExpr(left, symbol("true", boolean.class), right));
/frameworks/data-binding/compiler/src/test/java/android/databinding/tool/expr/
H A DExprModelTest.java151 mExprModel.comparison("==", a, mExprModel.symbol("null", Object.class));
304 .comparison("==", a, mExprModel.symbol("null", Object.class));
306 .comparison("==", b, mExprModel.symbol("null", Object.class));
/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. ...
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
H A DExpressionVisitor.java81 return mModel.symbol(javaString, String.class);
139 return mModel.ternary(mModel.comparison("==", left, mModel.symbol("null", Object.class)),
176 return mModel.symbol(node.getText(), classType);
/frameworks/compile/mclinker/tools/mcld/
H A DMain.cpp526 // Setup symbol stripping mode.
622 // -u symbol
631 // --wrap=symbol
634 const char* symbol = arg->getValue(); local
635 // symbol -> __wrap_symbol
637 script_.renameMap().insert(symbol, exist);
641 .append(symbol);
645 mcld::warning(mcld::diag::rewrap) << symbol << to_wrap_str;
647 // __real_symbol -> symbol
650 .append(symbol);
662 const char* symbol = arg->getValue(); local
[all...]
/frameworks/compile/mclinker/include/mcld/LD/
H A DBranchIsland.h115 const LDSymbol* symbol() const { return m_pSymbol; } function in class:mcld::BranchIsland::Key
121 llvm::StringRef sym_name(KEY.symbol()->name());
133 if (KEY1.symbol() == KEY2.symbol()) {
137 if (KEY1.symbol()->hasFragRef() && KEY2.symbol()->hasFragRef()) {
138 const FragmentRef* ref1 = KEY1.symbol()->fragRef();
139 const FragmentRef* ref2 = KEY2.symbol()->fragRef();
/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/compile/mclinker/lib/Fragment/
H A DStub.cpp35 // build a name for stub symbol
44 LDSymbol* symbol = local
54 setSymInfo(symbol->resolveInfo());
/frameworks/compile/mclinker/lib/LD/
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/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...]
H A DSectionMap.cpp340 if (dot != (*it)->dot_end() && (*dot).symbol().isDot() &&
353 *tok = &((*ref).symbol());
374 *tok = &((*dot).symbol());
/frameworks/compile/mclinker/lib/Script/
H A DAssignment.cpp115 *it = &(prevDotAssign.symbol());
152 *it = &(prevDotAssign.symbol());
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());
H A DScriptParser.yy195 %type <string> string symbol opt_region opt_lma_region wildcard_pattern
321 a symbol assignment (see Assignments)
480 a symbol assignment (see Assignments)
594 symbol_assignment : symbol '=' script_exp ';'
596 | symbol ADD_ASSIGN exp ';'
597 | symbol SUB_ASSIGN exp ';'
598 | symbol MUL_ASSIGN exp ';'
599 | symbol DIV_ASSIGN exp ';'
600 | symbol AND_ASSIGN exp ';'
601 | symbol OR_ASSIG
[all...]
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64LDBackend.cpp127 // Define the symbol _GLOBAL_OFFSET_TABLE_ if there is a symbol with the
161 // define symbol _GLOBAL_OFFSET_TABLE_ when .got create
332 // A stub symbol should be local
390 // calculate the possible symbol value
392 LDSymbol* symbol = relocation->symInfo()->outSymbol(); local
393 if (symbol->hasFragRef()) {
394 uint64_t value = symbol->fragRef()->getOutputOffset();
396 symbol->fragRef()->frag()->getParent()->getSection().addr();
407 sym_value, // symbol valu
[all...]
H A DAArch64LongBranchStub.cpp106 LDSymbol* symbol = pSrcReloc.symInfo()->outSymbol(); local
107 uint64_t dest = symbol->fragRef()->frag()->getParent()->getSection().addr() +
108 symbol->fragRef()->getOutputOffset();
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMLDBackend.cpp62 /// Helper function to create a local symbol at the end of the fragment.
65 // Create and add symbol to the name pool.
78 // Create input symbol.
87 // The output symbol is simply an alias to the input symbol.
198 // Define the symbol _GLOBAL_OFFSET_TABLE_ if there is a symbol with the
365 // define symbol _GLOBAL_OFFSET_TABLE_ when .got create
461 /// finalizeSymbol - finalize the symbol value
843 // calculate the possible symbol valu
845 LDSymbol* symbol = relocation->symInfo()->outSymbol(); local
[all...]
/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/compile/mclinker/lib/Target/Hexagon/
H A DHexagonLDBackend.cpp324 // define symbol _GLOBAL_OFFSET_TABLE_
478 // Define the symbol _GLOBAL_OFFSET_TABLE_ if there is a symbol with the
568 LDSymbol* symbol = relocation->symInfo()->outSymbol(); local
569 if (symbol->hasFragRef()) {
570 uint64_t value = symbol->fragRef()->getOutputOffset();
572 symbol->fragRef()->frag()->getParent()->getSection().addr();
576 sym_value, // symbol value
661 /// finalizeSymbol - finalize the symbol value
785 // We have to reset the description of the symbol her
[all...]
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.cpp124 // Define the symbol _GLOBAL_OFFSET_TABLE_ if there is a symbol with the
136 // Define the symbol _PROCEDURE_LINKAGE_TABLE_ if there is a symbol with the
357 // the GOT and the symbol table. At the same time .gnu.hash
570 /// finalizeSymbol - finalize the symbol value
580 /// FIXME: Mips needs to allocate small common symbol
620 // We have to reset the description of the symbol here. When doing
629 // allocate TLS common symbol in tbss section
647 // We have to reset the description of the symbol her
769 LDSymbol* symbol = pRel.symInfo()->outSymbol(); local
[all...]
/frameworks/base/tools/aapt/
H A DAaptAssets.cpp850 entry.sourcePos.error("Symbol '%s' declared with <java-symbol> not defined\n", name.string());
854 //printf("**** setting symbol #%d/%d %s to isJavaSymbol=%d\n",
866 pos.error("Java symbol dir %s not defined\n", name.string());
1499 pos.error("Java symbol dir %s not defined\n", name.string());
1620 valid_symbol_name(const String8& symbol) argument
1635 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.cpp1691 const Symbol& symbol = densityVaryingResources.keyAt(k); local
1692 ssize_t block = resTable.getResource(symbol.id, &val, true);
1696 block = finalResTable.getResource(symbol.id, &val, true);
1702 symbol.toString().string(), config.toString().string());
1710 symbol.toString().string(), def.config.toString().string());
1890 "%s:%d: Permission name <%s> is not a valid Java symbol\n",
2055 static String8 flattenSymbol(const String8& symbol) { argument
2056 String8 result(symbol);
2058 if ((first = symbol.find(":", 0)) >= 0
2059 || (first = symbol
2072 getSymbolPackage(const String8& symbol, const sp<AaptAssets>& assets, bool pub) argument
2080 getSymbolName(const String8& symbol) argument
[all...]

Completed in 384 milliseconds

12