Searched refs:symbol (Results 226 - 250 of 670) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dcheck-for-global-initializers157 my ($symbol) = @_;
158 if (!open FILT, "c++filt $symbol |") {
/external/chromium_org/third_party/android_platform/development/scripts/
H A Dsymbol.py19 The information can include symbol names, offsets, and source locations.
294 # untranslated in case it is an Android symbol in SYMBOLS_DIR.
317 """Look up symbol information about an address.
341 """Look up symbol information for a set of addresses from the given library.
411 """Look up line and symbol information for a set of addresses.
418 A dictionary of the form {addr: [(symbol, file:line)]} where
420 or an empty list if no symbol information was found.
447 symbol = child.stdout.readline().strip()
448 if symbol == "??":
449 symbol
[all...]
/external/chromium_org/third_party/lzma_sdk/
H A DLzmaDec.c118 /* First LZMA-symbol is always decoded.
163 unsigned symbol; local
173 symbol = 1;
174 do { GET_BIT(prob + symbol, symbol) } while (symbol < 0x100);
181 symbol = 1;
188 probLit = prob + offs + bit + symbol;
189 GET_BIT2(probLit, symbol, offs &= ~bit, offs &= bit)
191 while (symbol <
517 unsigned symbol = 1; local
525 unsigned symbol = 1; local
[all...]
/external/chromium_org/third_party/mesa/src/src/glx/
H A Dapplegl_glx.c106 applegl_get_proc_address(const char *symbol) argument
108 return dlsym(apple_cgl_get_dl_handle(), symbol);
/external/chromium_org/third_party/ots/third_party/lzma_sdk/
H A DLzmaDec.c119 /* First LZMA-symbol is always decoded.
164 unsigned symbol; local
174 symbol = 1;
175 do { GET_BIT(prob + symbol, symbol) } while (symbol < 0x100);
182 symbol = 1;
189 probLit = prob + offs + bit + symbol;
190 GET_BIT2(probLit, symbol, offs &= ~bit, offs &= bit)
192 while (symbol <
518 unsigned symbol = 1; local
526 unsigned symbol = 1; local
[all...]
/external/chromium_org/tools/memory_inspector/memory_inspector/core/
H A Dnative_heap.py7 from memory_inspector.core import symbol namespace
36 assert(isinstance(symbols, symbol.Symbols))
/external/chromium_org/ui/gfx/
H A Dfont_unittest.cc126 Font symbol("Symbol", 16);
127 EXPECT_EQ("symbol",
128 base::StringToLowerASCII(symbol.GetActualFontNameForTesting()))
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dcallchain.h8 #include "symbol.h"
73 struct symbol *sym;
127 struct map *map, struct symbol *sym);
H A Dhist.h14 struct symbol;
85 struct symbol *parent, u64 period,
95 struct symbol *sym_parent,
102 struct symbol *sym_parent,
/external/lzma/C/
H A DLzmaDec.c118 /* First LZMA-symbol is always decoded.
163 unsigned symbol; local
173 symbol = 1;
174 do { GET_BIT(prob + symbol, symbol) } while (symbol < 0x100);
181 symbol = 1;
188 probLit = prob + offs + bit + symbol;
189 GET_BIT2(probLit, symbol, offs &= ~bit, offs &= bit)
191 while (symbol <
517 unsigned symbol = 1; local
525 unsigned symbol = 1; local
[all...]
/external/mesa3d/src/glx/
H A Dapplegl_glx.c106 applegl_get_proc_address(const char *symbol) argument
108 return dlsym(apple_cgl_get_dl_handle(), symbol);
/external/valgrind/main/helgrind/tests/
H A Dlocked_vs_unlocked3.stderr.exp32 Address 0x........ is 0 bytes inside data symbol "x"
/external/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp539 ELFDynamic &symbol = m_dynamic_symbols[i]; local
541 if (symbol.d_tag == DT_DEBUG)
609 ELFDynamic symbol; local
617 if (!symbol.Parse(dynsym_data, &offset))
620 if (symbol.d_tag != DT_NEEDED)
623 uint32_t str_index = static_cast<uint32_t>(symbol.d_val);
1018 ELFSymbol symbol; local
1037 if (symbol.Parse(symtab_data, &offset) == false)
1040 const char *symbol_name = strtab_data.PeekCStr(symbol.st_name);
1046 //symbol
1242 ELFDynamic symbol; local
1271 ELFDynamic *symbol = &*I; local
1283 const ELFDynamic *symbol = FindDynamicSymbol(DT_PLTREL); local
1305 ELFSymbol symbol; local
1483 const ELFDynamic *symbol = FindDynamicSymbol(DT_JMPREL); local
[all...]
/external/llvm/lib/LTO/
H A DLTOModule.cpp207 info.symbol = clgv;
223 info.symbol = clgv;
249 info.symbol = clgv;
269 info.symbol = clgv;
423 info.symbol = def;
429 /// addAsmGlobalSymbol - Add a global symbol from module-level ASM to the
443 if (info.symbol == nullptr) {
457 info.symbol = nullptr;
465 addDefinedFunctionSymbol(info.name, cast<Function>(info.symbol));
467 addDefinedDataSymbol(info.name, info.symbol);
[all...]
/external/chromium_org/third_party/codesighs/
H A Dmsmap2tsv.c78 ** The size of the symbol.
82 ** match the object name in the scenario where multiple symbol
85 ** mSize The size of the symbol in these objects.
86 ** mObjects A list of objects containing said symbol.
99 ** Each section for a symbol has a list of sizes.
100 ** Should there be exactly one size for the symbol, then that
106 ** mSizes The varoius sizes of the symbol in this section.
119 ** Each symbol has at least one section.
120 ** The section indicates what type of symbol a client may be looking for.
124 ** mName The mangled name of the symbol
391 char* symbol = NULL; local
722 const SymDB_Symbol* symbol = (const SymDB_Symbol*)inItem; local
761 SymDB_Symbol* symbol = (SymDB_Symbol*)match; local
1733 MSMap_Symbol* symbol = NULL; local
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/interface/
H A Dabstract_tts.js96 for (var symbol in cvox.AbstractTts.SUBSTITUTION_DICTIONARY) {
97 symbols.push(symbol);
234 function(symbol) {
235 return ' ' + cvox.AbstractTts.SUBSTITUTION_DICTIONARY[symbol] + ' ';
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DValidateLimitations.h30 bool isLoopIndex(TIntermSymbol *symbol);
34 // If valid, return the index symbol id; Otherwise, return -1.
H A DVariableInfo.h28 virtual void visitSymbol(TIntermSymbol *symbol);
/external/chromium_org/tools/valgrind/
H A Dtest_suppressions.py88 for (symbol, suppressions) in sorted_reports[:top_count]:
89 print "%4d occurrences : %s" % (len(suppressions), symboltable[symbol])
109 parser.add_argument('--symbol-filter', action='append',
110 help='Filter out all suppressions not containing the specified symbol(s). '
112 parser.add_argument('--exclude-symbol', action='append',
113 help='Filter out all suppressions containing the specified symbol(s). '
182 for symbol in symbols:
183 symbol_reports[symbol].append(report_hashes[r])
/external/chromium_org/v8/src/
H A Dlog-utils.h76 void AppendSymbolName(Symbol* symbol);
/external/harfbuzz_ng/src/
H A Dhb-ot-shape-complex-indic-machine.rl70 symbol = Symbol.N?;
83 symbol_cluster = symbol syllable_tail;
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/gtk/
H A Dannotate.c22 static int perf_gtk__get_percent(char *buf, size_t size, struct symbol *sym,
51 static int perf_gtk__get_offset(char *buf, size_t size, struct symbol *sym,
88 static int perf_gtk__annotate_symbol(GtkWidget *window, struct symbol *sym,
157 int symbol__gtk_annotate(struct symbol *sym, struct map *map,
/external/lldb/include/lldb/API/
H A DSBSymbolContext.h50 void SetSymbol (lldb::SBSymbol symbol);
/external/lldb/utils/test/
H A Dlldb-disasm.py117 def IsCodeType(symbol):
119 return symbol.GetType() == lldb.eSymbolTypeCode
123 # If we specify the symbols to disassemble, ignore symbol table dump.
127 print "symbol:", symbols[i]
142 # If a regexp symbol pattern is supplied, consult it.
144 # If the pattern does not match, look for the next symbol.
148 # If we come here, we're ready to disassemble the symbol.
150 print "symbol:", s.GetName()
155 print "returning symbol:", s.GetName()
161 print "symbol descriptio
[all...]
/external/llvm/lib/Support/Windows/
H A DSignals.inc365 // Initialize the symbol handler.
407 // Print the symbol name.
409 IMAGEHLP_SYMBOL64 *symbol = reinterpret_cast<IMAGEHLP_SYMBOL64 *>(buffer);
410 memset(symbol, 0, sizeof(IMAGEHLP_SYMBOL64));
411 symbol->SizeOfStruct = sizeof(IMAGEHLP_SYMBOL64);
412 symbol->MaxNameLength = 512 - sizeof(IMAGEHLP_SYMBOL64);
415 if (!SymGetSymFromAddr64(hProcess, PC, &dwDisp, symbol)) {
422 fprintf(stderr, ", %s() + 0x%llX bytes(s)", symbol->Name, dwDisp);
424 fprintf(stderr, ", %s", symbol->Name);

Completed in 1037 milliseconds

1234567891011>>