HomeSort by relevance Sort by last modified time
    Searched refs:symbol (Results 226 - 250 of 832) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/tools/build/win/
syzygy_instrument.py 41 def _CompileFilter(syzygy_dir, executable, symbol, filter_file,
49 '--input-pdb=%s' % symbol,
60 def _InstrumentBinary(syzygy_dir, mode, executable, symbol, dst_dir,
63 instrumented executable and symbol files to dst_dir.
70 '--input-pdb=%s' % symbol,
74 os.path.join(dst_dir, os.path.basename(symbol)))]
115 help='The path to the input symbol file.')
135 option_parser.error('You must provide an input symbol file.')
syzygy_reorder.py 38 def _ReorderBinary(relink_exe, executable, symbol, destination_dir):
40 reordered executable and symbol files to destination_dir.
48 '--input-pdb=%s' % symbol,
52 os.path.join(destination_dir, os.path.basename(symbol))),]
91 help='The path to the input symbol file.')
102 option_parser.error('You must provide an input symbol file.')
  /external/chromium_org/tools/memory_watcher/
call_stack.cc 112 // Initialize the symbol engine.
165 // We need to delay load the symbol cache until after
305 // Try to locate a symbol for this frame.
310 IMAGEHLP_SYMBOL64* symbol = reinterpret_cast<IMAGEHLP_SYMBOL64*>(buffer); local
312 symbol->SizeOfStruct = sizeof(IMAGEHLP_SYMBOL64);
313 symbol->MaxNameLength = kStackWalkMaxNameLen;
317 symbol); // Symbol
319 // Try to locate more source information for the symbol.
330 if (strstr(symbol->Name, "CallStack::") |
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
TemplateTranslator.java 33 import static com.google.clearsilver.jsilver.compiler.JavaExpression.symbol;
91 public static final JavaExpression DATA = symbol(Type.DATA, "data");
93 public static final JavaExpression CONTEXT = symbol("context");
95 public static final JavaExpression DATA_CONTEXT = symbol(Type.DATA_CONTEXT, "dataContext");
96 public static final JavaExpression NULL = symbol("null");
99 public static final JavaExpression TEMPLATE_LOADER = symbol("getTemplateLoader()");
100 public static final JavaExpression THIS_TEMPLATE = symbol("this");
130 JavaExpression symbol; field in class:TemplateTranslator.MacroInfo
155 * @param symbol static variable name of the macro definition.
158 private void addMacro(String name, JavaExpression symbol, ADefCommand defNode)
    [all...]
  /art/compiler/
compiled_method.cc 29 const std::string& elf_object, const std::string& symbol)
30 : compiler_driver_(compiler_driver), instruction_set_(instruction_set), symbol_(symbol) {
32 CHECK_NE(symbol.size(), 0U);
152 const std::string& symbol)
153 : CompiledCode(&driver, instruction_set, code, symbol),
161 const std::string& code, const std::string& symbol)
162 : CompiledCode(&driver, instruction_set, code, symbol),
compiled_method.h 43 const std::string& elf_object, const std::string &symbol);
89 // Used for the Portable ELF symbol name.
92 // There are offsets from the oatdata symbol to where the offset to
122 const std::vector<uint8_t>& gc_map, const std::string& symbol);
126 const std::string& symbol);
  /external/chromium_org/third_party/android_platform/development/scripts/
stack_core.py 21 import symbol namespace
55 # TODO(cjhopman): it seems that symbol.SymbolInformation always fails to
82 # #00 pc 001cf42e /data/data/com.my.project/lib/libmyproject.so (symbol)
89 # bea4170c 8018e4e9 /data/data/com.my.project/lib/libmyproject.so (symbol)
106 # It is faster to get symbol information with a single call rather than with
107 # separate calls for each line. Since symbol.SymbolInformation caches results,
108 # we can extract all the addresses that we will want symbol information for
109 # from the log and call symbol.SymbolInformation so that the results are
128 symbol.SymbolInformationForSet(
129 symbol.TranslateLibPath(lib), code_addresses[lib], more_info
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/
VariableInfo.cpp 202 void CollectVariables::visitSymbol(TIntermSymbol* symbol)
204 ASSERT(symbol != NULL);
206 switch (symbol->getQualifier())
212 var = findVariable(symbol->getType(), symbol->getSymbol(), mVaryings);
215 var = findVariable(symbol->getType(), symbol->getSymbol(), mUniforms);
  /external/chromium_org/tools/deep_memory_profiler/tests/
dmprof_test.py 19 from lib.symbol import SymbolMappingCache
20 from lib.symbol import FUNCTION_SYMBOLS, SOURCEFILE_SYMBOLS, TYPEINFO_SYMBOLS
109 def add(self, symbol_type, address, symbol):
110 self._symbol_caches[symbol_type][address] = symbol
113 symbol = self._symbol_caches[symbol_type].get(address)
114 return symbol if symbol else '0x%016x' % address
  /external/icu4c/test/depstest/
dependencies.py 23 with standard-library system symbol names.
114 def _AddSystemSymbol(item, symbol):
117 exports.add(symbol)
127 # One double-quote-enclosed symbol on the line, allows spaces in a symbol name.
128 symbol = line[1:-1]
129 if line.startswith('"') and line.endswith('"') and '"' not in symbol:
130 _AddSystemSymbol(item, symbol)
132 sys.exit("Error:%d: invalid quoted symbol name %s" % (_line_number, line))
135 for symbol in line.split(): _AddSystemSymbol(item, symbol
    [all...]
  /external/linux-tools-perf/util/
symbol.h 77 /** struct symbol - symtab entry
81 struct symbol { struct
91 void symbol__delete(struct symbol *sym);
126 static inline void *symbol__priv(struct symbol *sym)
139 struct symbol *sym;
147 struct symbol *sym;
244 struct symbol *dso__find_symbol(struct dso *dso, enum map_type type,
246 struct symbol *dso__find_symbol_by_name(struct dso *dso, enum map_type type,
  /external/valgrind/main/coregrind/m_initimg/
simple_huffman.c 22 * 12 bits per symbol (for 8 bit symbols), meaning a maximum of 384
71 UInt Symbol;
189 sym[k].Symbol = k;
201 /* Sort histogram - most frequent symbol first (bubble sort) */
233 /* Append symbol to tree description */
235 _Huffman_WriteBits( stream, sym[first].Symbol, 8 );
237 /* Store code info in symbol array */
313 UInt symbol; local
318 /* Get symbol from tree description */
319 symbol = _Huffman_ReadBits( stream, 8 )
371 UInt k, total_bytes, swaps, symbol, last_symbol; local
    [all...]
  /art/compiler/sea_ir/
frontend.cc 52 std::string symbol = "dex_" + MangleForJni(PrettyMethod(method_idx, dex_file)); local
53 sea_ir::CodeGenData* llvm_data = ir_graph->CompileMethod(symbol,
62 *verifier::MethodVerifier::GetDexGcMap(mref), symbol);
  /external/bison/src/
state.h 40 For each state there is a particular symbol which must have been
50 replace them with the symbol that the rule derives, and leave the
74 grammar's start symbol. The next-to-final state has one shift to
118 /* What is the symbol labelling the transition to
172 symbol *symbols[1];
175 errs *errs_new (int num, symbol **tokens);
243 void state_errs_set (state *s, int num, symbol **errors);
  /external/chromium_org/third_party/mesa/src/src/gallium/targets/egl-static/
egl_st.c 101 const char symbol[] = "st_api_create_OpenGL"; local
104 stapi = load_gl(module, symbol);
113 stapi = load_gl(module, symbol);
  /external/chromium_org/third_party/protobuf/python/google/protobuf/
descriptor_pool.py 116 def FindFileContainingSymbol(self, symbol):
117 """Gets the FileDescriptor for the file containing the specified symbol.
120 symbol: The name of the symbol to search for.
123 A FileDescriptor that contains the specified symbol.
130 file_proto = self._internal_db.FindFileContainingSymbol(symbol)
133 file_proto = self._descriptor_db.FindFileContainingSymbol(symbol)
137 raise KeyError('Cannot find a file containing %s' % symbol)
199 def _strip_package(symbol):
200 if symbol.startswith(package_prefix)
    [all...]
  /external/lzma/CS/7zip/Compress/RangeCoder/
RangeCoder.cs 97 public void EncodeBit(uint size0, int numTotalBits, uint symbol)
100 if (symbol == 0)
216 uint symbol;
219 symbol = 0;
224 symbol = 1;
229 return symbol;
  /external/mesa3d/src/gallium/targets/egl-static/
egl_st.c 101 const char symbol[] = "st_api_create_OpenGL"; local
104 stapi = load_gl(module, symbol);
113 stapi = load_gl(module, symbol);
  /frameworks/compile/mclinker/lib/Support/
DefSymParser.cpp 124 // the integer conversion failed means the token is a symbol
125 // or its invalid if the NamePool has no such symbol;
126 const LDSymbol* symbol = local
129 if (!symbol)
133 result = symbol->value();
  /libnativehelper/
JniInvocation.cpp 115 bool JniInvocation::FindSymbol(void** pointer, const char* symbol) {
116 *pointer = dlsym(handle_, symbol);
118 ALOGE("Failed to find symbol %s: %s\n", symbol, dlerror());
  /art/compiler/jni/portable/
jni_compiler.h 63 void CreateFunction(const std::string& symbol);
  /external/chromium/base/debug/
stack_trace_posix.cc 68 // Look for the start of a mangled symbol, from search_from.
72 break; // Mangled symbol not found.
75 // Look for the end of the mangled symbol.
84 // Try to demangle the mangled symbol candidate.
89 // Remove the mangled symbol.
91 // Insert the demangled symbol.
93 // Next time, we'll start right after the demangled symbol we inserted.
105 // Gets the backtrace as a vector of strings. If possible, resolve symbol
107 // if any symbol name is resolved. Returns false on error and *may* fill
119 char symbol[1024] local
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
tsdtfmsy.cpp 41 DateFormatSymbols *symbol; local
43 symbol=new DateFormatSymbols(Locale::getDefault(), status);
45 month=symbol->getMonths(cnt);
54 delete symbol;
60 DateFormatSymbols *symbol; local
62 symbol=new DateFormatSymbols(Locale::getDefault(), status);
70 const UnicodeString * month = symbol->getMonths(cnt,context[i],width[j]);
79 delete symbol;
85 DateFormatSymbols *symbol; local
87 symbol=new DateFormatSymbols(Locale::getDefault(), status)
113 DateFormatSymbols *symbol; local
    [all...]
  /external/llvm/test/MC/PowerPC/
ppc64-tls-relocs-01.s 17 # against the thread-local symbol 't'.
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
symshift.pl 3 # "plane" and create combined symbol table
9 # This script creates a symbol table which must be used when
86 reads in a combination of symbol tables with ids in range [0..2^8-1]
87 and converts into one symbol table with ids in range [0..2^16-1] which
96 -pb_strengths <infile> read symbol tables from <file> and shift them into
132 #translation between symbol names used in decision trees
197 #we have the symbol (which potentially contains an exclamation mark)
207 print STDERR "symbol \"$sym\" was allready assigned to plane of \"$table{$otherplane}\" ($otherplane); overwriting\n";

Completed in 204 milliseconds

1 2 3 4 5 6 7 8 91011>>