/prebuilts/gcc/darwin-x86/mips/mips64el-linux-android-4.9/share/gdb/python/gdb/ |
FrameDecorator.py | 150 Symbol/Value interface. If there are no frame arguments, or 166 Symbol/Value interface. If there are no frame locals, or if 181 pc. If symbol table/line information does not exist, or if 207 """A container class conforming to the Symbol/Value interface 209 def __init__(self, symbol, value): 210 self.sym = symbol 214 """ Return the value associated with this symbol, or None""" 217 def symbol(self): member in class:SymValueWrapper 218 """ Return the symbol, or Python text, associated with this 219 symbol, or None"" [all...] |
/prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.8/share/gdb/python/gdb/ |
FrameDecorator.py | 150 Symbol/Value interface. If there are no frame arguments, or 166 Symbol/Value interface. If there are no frame locals, or if 181 pc. If symbol table/line information does not exist, or if 207 """A container class conforming to the Symbol/Value interface 209 def __init__(self, symbol, value): 210 self.sym = symbol 214 """ Return the value associated with this symbol, or None""" 217 def symbol(self): member in class:SymValueWrapper 218 """ Return the symbol, or Python text, associated with this 219 symbol, or None"" [all...] |
/prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/share/gdb/python/gdb/ |
FrameDecorator.py | 150 Symbol/Value interface. If there are no frame arguments, or 166 Symbol/Value interface. If there are no frame locals, or if 181 pc. If symbol table/line information does not exist, or if 207 """A container class conforming to the Symbol/Value interface 209 def __init__(self, symbol, value): 210 self.sym = symbol 214 """ Return the value associated with this symbol, or None""" 217 def symbol(self): member in class:SymValueWrapper 218 """ Return the symbol, or Python text, associated with this 219 symbol, or None"" [all...] |
/prebuilts/gcc/linux-x86/mips/mips64el-linux-android-4.9/share/gdb/python/gdb/ |
FrameDecorator.py | 150 Symbol/Value interface. If there are no frame arguments, or 166 Symbol/Value interface. If there are no frame locals, or if 181 pc. If symbol table/line information does not exist, or if 207 """A container class conforming to the Symbol/Value interface 209 def __init__(self, symbol, value): 210 self.sym = symbol 214 """ Return the value associated with this symbol, or None""" 217 def symbol(self): member in class:SymValueWrapper 218 """ Return the symbol, or Python text, associated with this 219 symbol, or None"" [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/hotshot/ |
log.py | 4 import symbol namespace 179 funcdef = symbol.funcdef 180 lambdef = symbol.lambdef
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/hotshot/ |
log.py | 4 import symbol namespace 179 funcdef = symbol.funcdef 180 lambdef = symbol.lambdef
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/discovery/ |
NdkDiscoveredPathInfo.java | 151 for (Entry<String, String> symbol : mSymbols.entrySet()) { 153 out.print(symbol.getKey()); 155 out.print(symbol.getValue());
|
/art/runtime/ |
elf_file.cc | 420 // Need a hash section for dynamic symbol lookup. 799 Elf32_Sym* symbol = GetSymbol(SHT_DYNSYM, symbol_and_chain_index); local 800 if (symbol == nullptr) { 803 const char* name = GetString(SHT_DYNSYM, symbol->st_name); 805 return symbol; 867 Elf32_Sym* symbol = GetSymbol(section_type, i); local 868 if (symbol == nullptr) { 871 unsigned char type = ELF32_ST_TYPE(symbol->st_info); 875 const char* name = GetString(*string_section, symbol->st_name); 880 (*symbol_table)->insert(std::make_pair(name, symbol)); 911 Elf32_Sym* symbol = GetSymbol(section_type, i); local 929 Elf32_Sym* symbol = FindSymbolByName(section_type, symbol_name, build_map); local [all...] |
/external/valgrind/main/VEX/switchback/ |
linker.c | 143 /* An array containing ptrs to all the symbol names copied from 144 this object into the global symbol hash table. This is so that 368 // SYMBOL TABLE(s) 371 * lookup a symbol in the global symbol table 520 char *symbol = NULL; 549 /* First see if it is a local symbol. */ 551 /* Yes, so we can get the address directly from the ELF symbol 553 symbol = sym.st_name==0 ? "(noname)" : strtab+sym.st_name; 560 symbol = strtab + sym.st_name [all...] |
/external/valgrind/main/VEX/unused/ |
linker.c | 77 /* An array containing ptrs to all the symbol names copied from 78 this object into the global symbol hash table. This is so that 300 // SYMBOL TABLE(s) 303 * lookup a symbol in the global symbol table 424 char *symbol = NULL; local 453 /* First see if it is a local symbol. */ 455 /* Yes, so we can get the address directly from the ELF symbol 457 symbol = sym.st_name==0 ? "(noname)" : strtab+sym.st_name; 464 symbol = strtab + sym.st_name 550 char *symbol; local [all...] |
/external/chromium_org/third_party/brotli/src/brotli/enc/ |
entropy_encode.cc | 300 int symbol = counts[0]; local 303 if (i == length || counts[i] != symbol) { 304 if ((symbol == 0 && stride >= 5) || 305 (symbol != 0 && stride >= 7)) { 313 symbol = counts[i]; 479 // 0 bit depth means that the symbol does not exist.
|
encode.cc | 81 int ParseAsUTF8(int* symbol, const uint8_t* input, int size) { 84 *symbol = input[0]; 85 if (*symbol > 0) { 93 *symbol = (((input[0] & 0x1f) << 6) | 95 if (*symbol > 0x7f) { 104 *symbol = (((input[0] & 0x0f) << 12) | 107 if (*symbol > 0x7ff) { 117 *symbol = (((input[0] & 0x07) << 18) | 121 if (*symbol > 0xffff && *symbol <= 0x10ffff) 135 int symbol; local [all...] |
/cts/tools/dasm/etc/ |
java_cup-new.jar | |
java_cup.jar | |
java_cup.jar.old | |
/external/lzma/Java/SevenZip/Compression/LZMA/ |
Encoder.java | 78 public void Encode(SevenZip.Compression.RangeCoder.Encoder rangeEncoder, byte symbol) throws IOException
83 int bit = ((symbol >> i) & 1);
89 public void EncodeMatched(SevenZip.Compression.RangeCoder.Encoder rangeEncoder, byte matchByte, byte symbol) throws IOException
95 int bit = ((symbol >> i) & 1);
108 public int GetPrice(boolean matchMode, byte matchByte, byte symbol)
118 int bit = (symbol >> i) & 1;
130 int bit = (symbol >> i) & 1;
196 public void Encode(SevenZip.Compression.RangeCoder.Encoder rangeEncoder, int symbol, int posState) throws IOException
198 if (symbol < Base.kNumLowLenSymbols)
201 _lowCoder[posState].Encode(rangeEncoder, symbol);
[all...] |
/external/lldb/source/Core/ |
Module.cpp | 28 #include "lldb/Symbol/CompileUnit.h" 29 #include "lldb/Symbol/ObjectFile.h" 30 #include "lldb/Symbol/SymbolContext.h" 31 #include "lldb/Symbol/SymbolVendor.h" 36 #include "lldb/Symbol/SymbolFile.h" 244 // variables since the object file and symbol files might need to make 246 // here because symbol files can require the module object file. So we tear 247 // down the symbol file first, then the object file. 456 // Clear the result symbol context in case we don't find anything, but don't clear the target 482 // Resolve the symbol if requested, but don't re-look it up if we've already found it [all...] |
/external/chromium_org/base/third_party/symbolize/ |
symbolize.cc | 91 // where the input symbol is demangled in-place. 271 // Read a symbol table and look for the symbol containing the 272 // pc. Iterate over symbols in a symbol table and look for the symbol 273 // containing "pc". On success, return true and write the symbol name 304 const ElfW(Sym)& symbol = buf[j]; 305 uint64_t start_address = symbol.st_value; 307 uint64_t end_address = start_address + symbol.st_size; 308 if (symbol.st_value != 0 && // Skip null value symbols [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/mathmaps/ |
math_map.js | 25 * The compund store for symbol and function mappings. 94 * Array of JSON filenames containing symbol definitions for math speak. 123 * Array of JSON filenames containing symbol definitions for math speak.
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/ |
RemoteObject.js | 249 this._hasChildren = (type !== "symbol"); 370 var propertySymbol = property.symbol ? this._target.runtimeModel.createRemoteObject(property.symbol) : null; 818 * @param {?WebInspector.RemoteObject=} symbol 820 WebInspector.RemoteObjectProperty = function(name, value, enumerable, writable, isOwn, wasThrown, symbol) 829 if (symbol) 830 this.symbol = symbol; [all...] |
/external/lldb/source/Breakpoint/ |
BreakpointResolverName.cpp | 20 #include "lldb/Symbol/ClangNamespaceDecl.h" 21 #include "lldb/Symbol/Block.h" 22 #include "lldb/Symbol/Function.h" 23 #include "lldb/Symbol/Symbol.h" 24 #include "lldb/Symbol/SymbolContext.h" 267 // Remove any duplicates between the funcion list and the symbol list 290 else if (sc.symbol) 292 break_addr = sc.symbol->GetAddress(); 295 const uint32_t prologue_byte_size = sc.symbol->GetPrologueByteSize() [all...] |
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
AppleObjCRuntimeV1.cpp | 27 #include "lldb/Symbol/ClangASTContext.h" 28 #include "lldb/Symbol/Symbol.h" 329 const Symbol *symbol = objc_module_sp->FindFirstSymbolWithNameAndType(g_objc_debug_class_hash, lldb::eSymbolTypeData); local 330 if (symbol) 336 lldb::addr_t objc_debug_class_hash_addr = symbol->GetAddress().GetLoadAddress(&process->GetTarget());
|
/external/lldb/source/Target/ |
ThreadPlanStepRange.cpp | 23 #include "lldb/Symbol/Function.h" 24 #include "lldb/Symbol/Symbol.h" 223 else if (m_addr_context.symbol) 225 AddressRange range(m_addr_context.symbol->GetAddress(), m_addr_context.symbol->GetByteSize()); 515 // check that we are in the same symbol.
|
/external/llvm/test/MC/ARM/ |
ldr-pseudo.s | 88 @ load an undefined symbol 95 @ load a symbol from another section 102 @ load a symbol from the same section
|
/frameworks/compile/mclinker/lib/LD/ |
ELFReader.cpp | 85 // skip the first NULL symbol 140 // Section symbol's st_name is the section index. 176 // 2. easy to know if a symbol is from .so 179 // sort symbols by symbol value and then weak before strong 182 // for each weak symbol, find out all its aliases, and 230 LDSymbol* symbol = pInput.context()->getSymbol(r_sym); 231 if (NULL == symbol) { 235 IRBuilder::AddRelocation(pSection, r_type, *symbol, r_offset, r_addend); 258 LDSymbol* symbol = pInput.context()->getSymbol(r_sym); 259 if (NULL == symbol) { 752 LDSymbol* symbol = pInput.context()->getSymbol(r_sym); local [all...] |