HomeSort by relevance Sort by last modified time
    Searched refs:symbols (Results 126 - 150 of 480) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/icu4c/test/intltest/
sdtfmtts.cpp 77 DateFormatSymbols *symbols = new DateFormatSymbols(Locale::getFrench(), status); local
83 SimpleDateFormat cust1(pattern, symbols, status);
85 dataerrln("ERROR: Could not create SimpleDateFormat (pattern, symbols*) - exitting");
90 SimpleDateFormat cust2(pattern, *symbols, status);
92 errln("ERROR: Could not create SimpleDateFormat (pattern, symbols)");
  /external/mesa3d/scons/
custom.py 253 symbols = names
255 symbols = sym_table.keys()
259 for sym in symbols:
  /external/oprofile/libpp/
format_output.h 176 /// class to output in a columned format symbols and associated samples
182 /** output a vector of symbols to out according to the output format
201 /// true if we need to show details for each symbols
217 /// class to output a columned format symbols plus diff values
225 * Output a vector of symbols to out according to the output
242 symbol_collection & symbols, extra_images const & extra,
268 // ordered collection of symbols associated with this profile
269 symbol_collection & symbols; member in class:format_output::xml_formatter
271 /// true if we need to show details for each symbols
304 symbol_collection & symbols, string_filter const & sf)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_symtable.py 171 symbols = symtable.symtable("42", "?", "eval")
174 symbols = symtable.symtable("42", "?", "single")
177 symbols = symtable.symtable("def f(x): return x", "?", "exec")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_symtable.py 171 symbols = symtable.symtable("42", "?", "eval")
174 symbols = symtable.symtable("42", "?", "single")
177 symbols = symtable.symtable("def f(x): return x", "?", "exec")
  /sdk/emulator/qtools/
trace_reader.cpp 677 DexSym *symbols = dexfile->symbols; local
679 delete[] symbols[ii].name;
681 delete[] dexfile->symbols;
823 DexSym *symbols = NULL;
825 symbols = new DexSym[num_symbols];
828 dexfile->symbols = symbols;
835 symbols[next_index].addr = sym->sym.addr;
836 symbols[next_index].len = sym->sym.len
    [all...]
  /external/v8/tools/
tickprocessor.js 612 this.symbols = [];
623 this.symbols = [
629 this.symbols = ['', ''];
635 if (this.symbols.length == 0) {
638 var lineEndPos = this.symbols[0].indexOf('\n', this.parsePos);
640 this.symbols.shift();
645 var line = this.symbols[0].substring(this.parsePos, lineEndPos);
670 this.symbols = [os.system(this.nmExec, ['-n', '-f', libName], -1, -1), ''];
673 this.symbols = '';
679 this.symbols = ''
    [all...]
  /external/chromium_org/third_party/icu/source/common/unicode/
uniset.h 385 * @param symbols a symbol table mapping variable names to values
393 const SymbolTable* symbols,
404 * @param symbols a symbol table mapping variable names to values
411 const SymbolTable* symbols,
599 * @param symbols a symbol table mapping variable names to
609 const SymbolTable* symbols,
636 * @param symbols a symbol table mapping variable names to
646 const SymbolTable* symbols,
    [all...]
  /external/chromium_org/tools/valgrind/asan/third_party/
asan_symbolize.py 225 self.symbols = {}
243 self.symbols[int(fragments[1], 16)] = ' '.join(fragments[3:])
248 if not cur_function_addr in self.symbols.keys():
249 self.symbols[cur_function_addr] = ' '.join(fragments[4:])
272 symbol = self.symbols[sym_id]
  /external/compiler-rt/lib/asan/scripts/
asan_symbolize.py 250 self.symbols = {}
268 self.symbols[int(fragments[1], 16)] = ' '.join(fragments[3:])
273 if not cur_function_addr in self.symbols.keys():
274 self.symbols[cur_function_addr] = ' '.join(fragments[4:])
297 symbol = self.symbols[sym_id]
  /external/llvm/bindings/python/llvm/
object.py 18 symbols, and relocations. These are represented by the classes ObjectFile,
28 Once you have an object file, you can inspect its sections and symbols directly
35 The LLVM bindings expose iteration over sections, symbols, and relocations in a
59 symbols = list(obj.get_symbols())
60 for symbol in symbols:
64 symbols = []
66 symbols.append(symbol)
69 for symbol in symbols:
74 symbols = list(obj.get_symbols(cache=True))
75 for symbol in symbols
    [all...]
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
SimpleDateFormatTest.java 115 assertTrue("Wrong symbols", f2.getDateFormatSymbols().equals(
131 assertTrue("Wrong symbols", f2.getDateFormatSymbols().equals(
161 DateFormatSymbols symbols = new DateFormatSymbols(Locale.ENGLISH); local
162 symbols.setEras(new String[] { "Before", "After" });
163 SimpleDateFormat f2 = new SimpleDateFormat("y'y'yy", symbols);
166 assertTrue("Wrong symbols", f2.getDateFormatSymbols().equals(symbols));
182 assertTrue("Wrong symbols", f2.getDateFormatSymbols().equals(
568 assertTrue("Symbols identical", dfs != df.getDateFormatSymbols());
812 DateFormatSymbols symbols = new DateFormatSymbols(); local
    [all...]
  /cts/tools/dasm/src/java_cup/
parser.java 389 MAX_RHS + " symbols and actions");
409 /** table of declared symbols -- contains production parts indexed by name */
410 protected Hashtable symbols = new Hashtable(); field in class:CUP$actions
478 if (symbols.get((/*non_term_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val) != null)
493 /* build a production_part and put it in the symbols table */
494 symbols.put((/*non_term_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val, new symbol_part(this_nt));
506 if (symbols.get((/*term_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val) != null)
515 symbols.put((/*term_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val,
595 production_part symb = (production_part)symbols.get((/*symid*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-1)).str_val);
    [all...]
  /external/chromium_org/third_party/icu/source/common/
uniset_props.cpp 358 const SymbolTable* symbols,
371 applyPattern(pattern, options, symbols, status);
379 const SymbolTable* symbols,
392 applyPattern(pattern, pos, options, symbols, status);
432 const SymbolTable* symbols,
439 applyPattern(pattern, pos, options, symbols, status);
458 const SymbolTable* symbols,
466 RuleCharacterIterator chars(pattern, symbols, pos);
467 applyPattern(chars, symbols, rebuiltPat, options, status);
517 * @param symbols symbol table to use to parse and dereferenc
    [all...]
  /external/linux-tools-perf/util/
map.c 81 struct rb_root *symbols = &self->dso->symbols[self->type]; local
82 struct rb_node *nd = rb_first(symbols);
91 struct rb_root *symbols = &self->dso->symbols[self->type]; local
92 struct rb_node *nd = rb_last(symbols);
122 pr_warning(", continuing without symbols\n");
134 pr_warning("no symbols found in %s, maybe install "
  /ndk/build/tools/
gen-platforms.sh 32 # Also, we generate on-the-fly shared dynamic libraries from list of symbols:
34 # $SRC/android-N/arch-A/symbols --> $DST/android-N/arch-A/usr/lib
311 # Remove unwanted symbols
326 # Remove unwanted symbols from a library's functions list.
330 # Out: Input symbol list without any unwanted symbols.
337 SYMBOL_FILE=$PROGDIR/unwanted-symbols/$ARCH/$LIBRARY.functions.txt
349 SYMBOL_FILE=$PROGDIR/unwanted-symbols/$ARCH/$LIBRARY.variables.txt
446 # In certain cases, the symbols directory doesn't exist,
694 gen_shared_libraries $ARCH $PLATFORM_SRC/arch-$ARCH/symbols $SYSROOT_DST/lib "-m32"
695 gen_shared_libraries $ARCH $PLATFORM_SRC/arch-$ARCH/symbols $SYSROOT_DST/lib64 "-m64
    [all...]
  /external/bison/src/
output.c 146 | Prepare the muscles related to the symbols: translate, tname, and |
173 char *cp = quotearg_alloc (symbols[i]->tag, -1, qo);
204 values[i] = symbols[i]->user_token_number;
352 symbol *sym = symbols[i];
356 part of SYMBOLS, so we should not find their aliased symbols
406 symbol *sym = symbols[i];
nullable.c 50 fprintf (out, "\t%s: %s\n", symbols[i]->tag,
state.h 30 state. These symbols at these items are the allowable inputs that
172 symbol *symbols[1]; member in struct:__anon2789
  /external/oprofile/pp/
opgprof.cpp 190 symbol_collection symbols = samples.select_symbols(choice); local
192 symbol_collection::const_iterator sit = symbols.begin();
193 symbol_collection::const_iterator send = symbols.end();
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsLDBackend.cpp 211 // needs symbols to be grouped by hash code.
215 Module::SymbolTable& symbols = pModule.getSymbolTable(); local
217 std::stable_sort(symbols.dynamicBegin(), symbols.dynamicEnd(),
265 /// allocateCommonSymbols - allocate common symbols in the corresponding
279 // FIXME: If the order of common symbols is defined, then sort common symbols
304 // allocate all local common symbols
311 // symbols. Therefore, we can not treat common symbols as normal symbol
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
symtable.py 98 return self._table.symbols.keys()
103 flags = self._table.symbols[name]
131 if test_func(self._table.symbols[ident])])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
symtable.py 98 return self._table.symbols.keys()
103 flags = self._table.symbols[name]
131 if test_func(self._table.symbols[ident])])
  /external/chromium_org/third_party/android_platform/development/scripts/
stack 29 DEFAULT_SYMROOT='/tmp/symbols'
37 print " --symbols-dir=path"
38 print " the path to a symbols dir, such as =/tmp/out/target/product/dream/symbols"
40 print " --chrome-symbols-dir=path"
41 print " the path to a Chrome symbols dir (can be absolute or relative"
46 print " --symbols-zip=path"
47 print " the path to a symbols zip file, such as =dream-symbols-12345.zip"
78 the path to the "symbols" directory in the unzipped file). To clea
    [all...]
  /external/chromium_org/third_party/icu/source/tools/toolutil/
pkg_genc.c 992 IMAGE_SYMBOL symbols[1]; local
1101 uprv_memset(&symbols, 0, sizeof(symbols));
    [all...]

Completed in 6234 milliseconds

1 2 3 4 56 7 8 91011>>