HomeSort by relevance Sort by last modified time
    Searched defs:symbols (Results 251 - 275 of 926) sorted by null

<<11121314151617181920>>

  /toolchain/binutils/binutils-2.27/ld/
testplug2.c 44 struct ld_plugin_symbol *symbols; member in struct:claim_file
49 /* Types of things that can be added at all symbols read time. */
161 /* Record it as active for receiving symbols to register. */
189 doing so is not meaningful when calling the add symbols hook. */
261 /* Can't add symbols except as belonging to claimed files. */
275 last_claimfile->symbols = realloc (last_claimfile->symbols,
276 new_n_syms * sizeof *last_claimfile->symbols);
277 if (!last_claimfile->symbols)
281 last_claimfile->symbols[last_claimfile->n_syms_used++] = sym
    [all...]
testplug3.c 44 struct ld_plugin_symbol *symbols; member in struct:claim_file
49 /* Types of things that can be added at all symbols read time. */
160 /* Record it as active for receiving symbols to register. */
188 doing so is not meaningful when calling the add symbols hook. */
260 /* Can't add symbols except as belonging to claimed files. */
274 last_claimfile->symbols = realloc (last_claimfile->symbols,
275 new_n_syms * sizeof *last_claimfile->symbols);
276 if (!last_claimfile->symbols)
280 last_claimfile->symbols[last_claimfile->n_syms_used++] = sym
    [all...]
testplug4.c 44 struct ld_plugin_symbol *symbols; member in struct:claim_file
49 /* Types of things that can be added at all symbols read time. */
161 /* Record it as active for receiving symbols to register. */
189 doing so is not meaningful when calling the add symbols hook. */
261 /* Can't add symbols except as belonging to claimed files. */
275 last_claimfile->symbols = realloc (last_claimfile->symbols,
276 new_n_syms * sizeof *last_claimfile->symbols);
277 if (!last_claimfile->symbols)
281 last_claimfile->symbols[last_claimfile->n_syms_used++] = sym
    [all...]
  /bionic/libc/dns/resolv/
res_debug.c 629 const struct res_sym *symbols; local
633 symbols = __p_update_section_syms;
636 symbols = __p_default_section_syms;
639 return (sym_ntos(symbols, section, (int *)0));
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/
pydoc.py 527 """Mark up some plain text, given a context of symbols to look for.
1597 symbols = { variable in class:Helper
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/
pydoc.py 573 """Mark up some plain text, given a context of symbols to look for.
1677 symbols = { variable in class:Helper
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
pydoc.py 527 """Mark up some plain text, given a context of symbols to look for.
1593 symbols = { variable in class:Helper
    [all...]
  /external/google-breakpad/src/common/windows/
pdb_source_line_writer.cc 357 CComPtr<IDiaEnumSymbols> symbols = NULL; local
359 // Find all function symbols first.
361 hr = global->findChildren(SymTagFunction, NULL, nsNone, &symbols);
366 while (SUCCEEDED(symbols->Next(1, &symbol, &count)) && count == 1) {
379 symbols.Release();
382 // Find all public symbols. Store public symbols that are not also private
383 // symbols for later.
385 hr = global->findChildren(SymTagPublicSymbol, NULL, nsNone, &symbols);
390 while (SUCCEEDED(symbols->Next(1, &symbol, &count)) && count == 1)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
NumberFormat.java 489 * <li>The presence and position of special symbols, including currency, must match the
1283 DecimalFormatSymbols symbols = new DecimalFormatSymbols(desiredLocale); local
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
numberformatter.h 153 * monetary symbols and formats as with SHORT, but omit the currency symbol. For measure units, the behavior is
1299 SymbolsWrapper symbols; member in struct:number::impl::MacroProps
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
NumberFormat.java 520 * <li>The presence and position of special symbols, including currency, must match the
1374 DecimalFormatSymbols symbols = new DecimalFormatSymbols(desiredLocale); local
    [all...]
  /external/libxkbcommon/xkbcommon/src/xkbcomp/
ast.h 287 VarDef *symbols; member in struct:__anon26699
  /external/llvm/include/llvm/Object/
ELFObjectFile.h 69 elf_symbol_iterator_range symbols() const;
181 ELFObjectFileBase::symbols() const { function in class:llvm::object::ELFObjectFileBase
295 // visibility is either DEFAULT or PROTECTED. All other symbols are not
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 116 typedef std::vector<std::unique_ptr<COFFSymbol>> symbols; typedef in class:__anon27444::WinCOFFObjectWriter
127 symbols Symbols;
142 Symbols.clear();
238 return createCOFFEntity<COFFSymbol>(Name, Symbols);
246 createCOFFEntity<COFFSymbol>(Symbol->getName(), Symbols);
617 for (const MCSymbol &Symbol : Asm.symbols())
706 // between the two symbols. Update FixedValue to account for the delta, and
728 // Turn relocations for temporary symbols into section relocations.
828 // round up to calculate the number of auxiliary symbols require
    [all...]
  /external/python/cpython2/Lib/
pydoc.py 561 """Mark up some plain text, given a context of symbols to look for.
1661 symbols = { variable in class:Helper
    [all...]
  /external/python/cpython3/Lib/
pydoc.py 586 """Mark up some plain text, given a context of symbols to look for.
1730 symbols = { variable in class:Helper
    [all...]
  /external/skia/dm/
DM.cpp 282 char** symbols = backtrace_symbols(stack, count); local
285 info(" %s\n", symbols[i]);
    [all...]
  /external/skqp/dm/
DM.cpp 280 char** symbols = backtrace_symbols(stack, count); local
283 info(" %s\n", symbols[i]);
    [all...]
  /external/turbine/java/com/google/turbine/lower/
Lower.java 84 private final ImmutableSet<ClassSymbol> symbols; field in class:Lower.Lowered
86 public Lowered(ImmutableMap<String, byte[]> bytes, ImmutableSet<ClassSymbol> symbols) {
88 this.symbols = symbols;
96 /** Returns the set of all referenced symbols in the compilation. */
97 public ImmutableSet<ClassSymbol> symbols() { method in class:Lower.Lowered
98 return symbols;
109 Set<ClassSymbol> symbols = new LinkedHashSet<>(); local
111 result.put(sym.binaryName(), lower(units.get(sym), env, sym, symbols)); local
113 return new Lowered(result.build(), ImmutableSet.copyOf(symbols));
    [all...]
  /frameworks/base/tools/aapt/
AaptAssets.cpp 862 const sp<AaptSymbols>& symbols = javaSymbols->mNestedSymbols.valueAt(i); local
870 //printf("**** applying java symbols in dir %s\n", name.string());
871 status_t myerr = mNestedSymbols.valueAt(pos)->applyJavaSymbols(symbols);
1495 const sp<AaptSymbols>& symbols = mJavaSymbols.valueAt(i); local
    [all...]
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsLDBackend.cpp 358 // needs symbols to be grouped by hash code.
362 Module::SymbolTable& symbols = pModule.getSymbolTable(); local
365 symbols.dynamicBegin(), symbols.dynamicEnd(), DynsymGOTCompare(*m_pGOT));
578 /// allocateCommonSymbols - allocate common symbols in the corresponding
590 // FIXME: If the order of common symbols is defined, then sort common symbols
615 // allocate all local common symbols
622 // symbols. Therefore, we can not treat common symbols as normal symbol
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
SimpleDateFormatTest.java 496 DateFormatSymbols symbols = DateFormatSymbols.getInstance(Locale.ENGLISH); local
497 String[][] zoneStrings = symbols.getZoneStrings();
500 symbols.setZoneStrings(zoneStrings);
502 SimpleDateFormat sdf = new SimpleDateFormat("dd MM yyyy HH:mm zzz", symbols);
510 DateFormatSymbols symbols = DateFormatSymbols.getInstance(Locale.ENGLISH); local
511 String[][] zoneStrings = symbols.getZoneStrings();
514 symbols.setZoneStrings(zoneStrings);
515 SimpleDateFormat sdf = new SimpleDateFormat("zzzz", symbols);
523 symbols.setZoneStrings(zoneStrings);
524 sdf = new SimpleDateFormat("zzzz", symbols);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Object/
ELFObjectFile.h 71 elf_symbol_iterator_range symbols() const;
193 ELFObjectFileBase::symbols() const { function in class:llvm::object::ELFObjectFileBase
317 // visibility is either DEFAULT or PROTECTED. All other symbols are not
563 auto DotSymtabSecSyms = EF.symbols(DotSymtabSec);
566 auto DotDynSymSecSyms = EF.symbols(DotDynSymSec);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Object/
ELFObjectFile.h 71 elf_symbol_iterator_range symbols() const;
193 ELFObjectFileBase::symbols() const { function in class:llvm::object::ELFObjectFileBase
318 // visibility is either DEFAULT or PROTECTED. All other symbols are not
564 auto DotSymtabSecSyms = EF.symbols(DotSymtabSec);
567 auto DotDynSymSecSyms = EF.symbols(DotDynSymSec);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Object/
ELFObjectFile.h 71 elf_symbol_iterator_range symbols() const;
193 ELFObjectFileBase::symbols() const { function in class:llvm::object::ELFObjectFileBase
318 // visibility is either DEFAULT or PROTECTED. All other symbols are not
564 auto DotSymtabSecSyms = EF.symbols(DotSymtabSec);
567 auto DotDynSymSecSyms = EF.symbols(DotDynSymSec);
    [all...]

Completed in 767 milliseconds

<<11121314151617181920>>