/external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/ |
DynamicLoaderMacOSXDYLD.cpp | 22 #include "lldb/Symbol/Function.h" 23 #include "lldb/Symbol/ObjectFile.h" 221 const Symbol *symbol = frame_sp->GetSymbolContext(eSymbolContextSymbol).symbol; local 222 if (symbol) 224 if (symbol->GetName() == ConstString("_dyld_start")) 407 const Symbol *symbol = dyld_module_sp->FindFirstSymbolWithNameAndType (g_dyld_all_image_infos, eSymbolTypeData); local 408 if (symbol) [all...] |
/external/elfutils/0.153/src/ |
ldgeneric.c | 99 struct symbol **ndxtosymp); 111 /* Map symbol index to struct symbol record. */ 112 static struct symbol **ndxtosym; 114 /* String table reference to all symbols in the symbol table. */ 174 /* If this symbol is not undefined in this file it cannot come from 179 struct symbol *sym = file->symref[symidx]; 525 struct usedfiles *fileinfo, struct symbol *oldp) 557 struct symbol *oldp) 593 struct usedfiles *fileinfo, struct symbol *oldp 1274 struct symbol *symbol = fileinfo->scninfo[cnt].symbols; local [all...] |
/bionic/libc/tools/ |
genlibgcc_compat.py | 36 * into libfoo.so. Instead, a symbol import definition will be added to it 117 sys.exit("Error: symbol list is empty, please check the build log: " + build_output_file_path)
|
/build/core/ |
droiddoc.mk | 167 -XDignore.symbol.file \ 203 -XDignore.symbol.file \
|
/development/tools/rmtypedefs/test/com/android/tools/rmtypedefs/ |
RmTypeDefsTest.java | 175 // Make sure the Visibility symbol is completely gone from the outer class 193 String symbol = new String(contents, i, length, UTF_8); local 195 sub.equals(symbol));
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
Token.js | 28 * will avoid creating a token for this symbol and try to fetch another.
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorFrontendHost.cpp | 190 unsigned symbol = static_cast<unsigned>(c); local 191 String symbolCode = String::format("\\u%04X", symbol);
|
/external/chromium_org/third_party/brotli/src/brotli/dec/ |
decode.c | 138 int symbol = 0; local 153 while (symbol < num_symbols && space > 0) { 166 code_lengths[symbol++] = code_len; 190 if (symbol + repeat_delta > num_symbols) { 193 memset(&code_lengths[symbol], repeat_code_len, (size_t)repeat_delta); 194 symbol += repeat_delta; 204 memset(&code_lengths[symbol], 0, (size_t)(num_symbols - symbol)); [all...] |
/external/chromium_org/third_party/icu/source/i18n/unicode/ |
unum.h | 124 * locale like the currency symbol, the grouping seperator , monetary seperator 149 * Currency format with a currency symbol, e.g., "$1.00". [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
unum.cpp | 683 UNumberFormatSymbol symbol, 691 if(fmt==NULL || symbol< 0 || symbol>=UNUM_FORMAT_SYMBOL_COUNT) { 704 getConstSymbol((DecimalFormatSymbols::ENumberFormatSymbol)symbol). 710 UNumberFormatSymbol symbol, 718 if(fmt==NULL || symbol< 0 || symbol>=UNUM_FORMAT_SYMBOL_COUNT || value==NULL || length<-1) { 730 symbols.setSymbol((DecimalFormatSymbols::ENumberFormatSymbol)symbol,
|
/external/chromium_org/third_party/webtreemap/src/ |
webtreemap.js | 57 if (tree.data['$symbol']) { 58 dom.className += (' webtreemap-symbol-' + 59 tree.data['$symbol'].replace(' ', '_')); 62 dom.className += (' webtreemap-symbol-' +
|
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/ |
symrec.pxi | 26 cdef class Symbol: 32 self.sym = <yasm_symrec *>__get_voidp(symrec, Symbol) 96 # Use associated data mechanism to keep Symbol reference paired with symrec. 114 symbol = Symbol(__pass_voidp(symrec, Symbol)) 117 <void *>symbol) 118 Py_INCREF(symbol) # We're keeping a reference on the C side! 119 return symbol
|
/external/icu/icu4c/source/i18n/ |
unum.cpp | 687 UNumberFormatSymbol symbol, 695 if(fmt==NULL || symbol< 0 || symbol>=UNUM_FORMAT_SYMBOL_COUNT) { 708 getConstSymbol((DecimalFormatSymbols::ENumberFormatSymbol)symbol). 714 UNumberFormatSymbol symbol, 722 if(fmt==NULL || symbol< 0 || symbol>=UNUM_FORMAT_SYMBOL_COUNT || value==NULL || length<-1) { 734 symbols.setSymbol((DecimalFormatSymbols::ENumberFormatSymbol)symbol,
|
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
JavaSourceWriter.java | 315 public static void writeJavaSymbol(PrintWriter out, String symbol) { 316 out.append(symbol); // TODO Make safe and validate.
|
/external/lldb/include/lldb/Symbol/ |
Symtab.h | 20 #include "lldb/Symbol/Symbol.h" 31 eDebugNo, // Not a debug symbol 32 eDebugYes, // A debug symbol 46 Symbol * Resize (size_t count); 47 uint32_t AddSymbol(const Symbol& symbol); 51 uint32_t GetIndexForSymbol (const Symbol *symbol) const; 56 Symbol * FindSymbolByID (lldb::user_id_t uid) const [all...] |
/external/lldb/scripts/Python/interface/ |
SBAddress.i | 101 /// GetSymbolContext() and the following can lookup symbol information for a given address. 115 /// are less efficient if you want more than one symbol related objects. 116 /// Use one of the following when you want multiple debug symbol related 121 /// OR'ed together to more efficiently retrieve multiple symbol objects. 181 __swig_getmethods__["symbol"] = GetSymbol 182 if _newclass: symbol = property(GetSymbol, None, doc='''A read only property that returns an lldb object that represents the symbol (lldb.SBSymbol) that this address resides within.''')
|
SBSymbolContextList.i | 13 "Represents a list of symbol context object. See also SBSymbolContext. 108 obj = self.GetContextAtIndex(i).symbol 135 if _newclass: symbols = property(get_symbol_array, None, doc='''Returns a list() of lldb.SBSymbol objects, one for each symbol in each SBSymbolContext object in this list.''')
|
/external/lldb/source/Core/ |
Disassembler.cpp | 33 #include "lldb/Symbol/ClangNamespaceDecl.h" 34 #include "lldb/Symbol/Function.h" 35 #include "lldb/Symbol/ObjectFile.h" 464 else if ((sc.function || sc.symbol) && (sc.function != prev_sc.function || sc.symbol != prev_sc.symbol)) 466 if (prev_sc.function || prev_sc.symbol) 529 else if (sc.symbol && sc.symbol->ValueIsAddress()) 531 range.GetBaseAddress() = sc.symbol->GetAddress() [all...] |
/external/lldb/source/Plugins/SymbolFile/Symtab/ |
SymbolFileSymtab.cpp | 15 #include "lldb/Symbol/ClangExternalASTSourceCommon.h" 16 #include "lldb/Symbol/CompileUnit.h" 17 #include "lldb/Symbol/Function.h" 18 #include "lldb/Symbol/ObjectFile.h" 19 #include "lldb/Symbol/ObjectFile.h" 20 #include "lldb/Symbol/Symbol.h" 21 #include "lldb/Symbol/SymbolContext.h" 22 #include "lldb/Symbol/Symtab.h" 23 #include "lldb/Symbol/TypeList.h [all...] |
/external/llvm/tools/lto/ |
lto.cpp | 239 const char *symbol) { 240 unwrap(cg)->addMustPreserveSymbol(symbol);
|
/external/stlport/test/eh/ |
sunpro42.mak | 48 echo 'Info: For CC 4.x, warnings from ld in the form "symbol `XXX' has differing sizes" are normal.'
|
/external/valgrind/main/helgrind/tests/ |
pth_cond_destroy_busy.stderr.exp | 30 Address 0x........ is 4 bytes inside data symbol "s_cond"
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
code.py | 51 def runsource(self, source, filename="<input>", symbol="single"): 76 code = self.compile(source, filename, symbol)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
code.py | 51 def runsource(self, source, filename="<input>", symbol="single"): 76 code = self.compile(source, filename, symbol)
|
/system/core/init/ |
keywords.h | 45 #define KEYWORD(symbol, flags, nargs, func) K_##symbol,
|