HomeSort by relevance Sort by last modified time
    Searched defs:symbols (Results 1 - 25 of 491) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/v8/test/cctest/
test-symbols.cc 48 Handle<Symbol> symbols[kNumSymbols]; local
52 symbols[i] = isolate->factory()->NewSymbol();
53 CHECK(symbols[i]->IsName());
54 CHECK(symbols[i]->IsSymbol());
55 CHECK(symbols[i]->HasHashCode());
56 CHECK_GT(symbols[i]->Hash(), 0u);
57 os << Brief(*symbols[i]) << "\n";
59 symbols[i]->Print(os);
62 symbols[i]->ObjectVerify();
69 // All symbols should be distinct
    [all...]
  /system/extras/simpleperf/
read_apk_test.cpp 60 std::map<std::string, ElfFileSymbol> symbols; local
62 std::bind(ParseSymbol, std::placeholders::_1, &symbols)));
63 CheckElfFileSymbols(symbols);
read_elf_test.cpp 37 void ParseSymbol(const ElfFileSymbol& symbol, std::map<std::string, ElfFileSymbol>* symbols) {
38 (*symbols)[symbol.name] = symbol;
41 void CheckElfFileSymbols(const std::map<std::string, ElfFileSymbol>& symbols) {
42 auto pos = symbols.find("GlobalVar");
43 ASSERT_NE(pos, symbols.end());
45 pos = symbols.find("GlobalFunc");
46 ASSERT_NE(pos, symbols.end());
52 std::map<std::string, ElfFileSymbol> symbols; local
54 std::bind(ParseSymbol, std::placeholders::_1, &symbols)));
55 CheckElfFileSymbols(symbols);
59 std::map<std::string, ElfFileSymbol> symbols; local
67 std::map<std::string, ElfFileSymbol> symbols; local
73 std::map<std::string, ElfFileSymbol> symbols; local
    [all...]
  /bionic/libc/tools/
ndk_missing_symbols.py 21 import symbols namespace
35 current = symbols.GetFromAndroidSo(['libc.so', 'libm.so'])
36 device = (symbols.GetFromElf(os.path.join(tmp_dir, 'libc.so')) |
37 symbols.GetFromElf(os.path.join(tmp_dir, 'libm.so')))
38 compat_lib = symbols.GetFromAndroidStaticLib(['libc_ndk.a'])
check-symbols-glibc.py 23 import symbols namespace
42 files = glob.glob('%s/ndk/build/tools/unwanted-symbols/%s/*' %
56 glibc = symbols.GetFromSystemSo([
65 bionic = symbols.GetFromAndroidSo(['libc.so', 'libm.so'])
67 posix = symbols.GetFromTxt(os.path.join(this_dir, 'posix-2013.txt'))
72 # bionic includes various BSD symbols to ease porting other BSD-licensed code.
93 # Some symbols are part of the FORTIFY implementation.
114 # Some symbols are used to implement public macros.
  /external/mesa3d/src/glsl/
ir_print_visitor.h 88 _mesa_symbol_table *symbols; member in class:ir_print_visitor
ir_import_prototypes.cpp 45 import_prototype_visitor(exec_list *list, glsl_symbol_table *symbols,
50 this->symbols = symbols;
58 this->function = this->symbols->get_function(ir->name);
66 this->symbols->add_function(this->function);
98 glsl_symbol_table *symbols; member in class:import_prototype_visitor
110 * \param symbols Symbol table where new functions will be stored
115 glsl_symbol_table *symbols, void *mem_ctx)
117 import_prototype_visitor v(dest, symbols, mem_ctx);
  /external/icu/android_icu4j/cts-coverage/src/main/tests/android/icu/cts/coverage/text/
DateFormatSymbolsTest.java 30 DateFormatSymbols symbols = DateFormatSymbols.getInstance(); local
32 symbols.setEraNames(eraNamesInput);
33 assertArrayEquals(eraNamesInput, symbols.getEraNames());
35 assertEquals("longAgo", symbols.getEraNames()[0]);
41 DateFormatSymbols symbols = DateFormatSymbols.getInstance(); local
43 symbols.setYearNames(
46 symbols.getYearNames(DateFormatSymbols.FORMAT, DateFormatSymbols.ABBREVIATED));
49 symbols.getYearNames(DateFormatSymbols.FORMAT, DateFormatSymbols.ABBREVIATED)[0]);
  /external/libxml2/doc/
libxml-doc.el 1 ;;; libxml-doc.el - look up libxml-symbols and start browser on documentation
29 ;; "Look up libxml-symbols and start browser on documentation." t)
32 ;; "Look up libxml-symbols and start browser on documentation." t)
74 ;; - Now keeps the list of symbols between calls to speed things up.
92 ;; - keep (match-string 1) in a variable (libxmldoc-get-list-of-symbols)
104 "Symbols that match this regular expression will be excluded when doing
118 "History for looking up libxml-symbols.")
119 (defvar libxmldoc-symbols nil
120 "The list of libxml-symbols.")
129 (if (null libxmldoc-symbols)
    [all...]
  /external/dbus/test/
unused-code-gc.py 8 ## hash from symbol name to list of symbols with that name,
9 ## where the list of symbols contains a list representing each symbol
10 symbols = {} variable
18 if symbols.has_key(r):
19 targets = symbols[r]
25 if not symbols.has_key(name):
27 syms = symbols[name]
58 for (name, syms) in symbols.items():
60 if not s[4] and name[0] != '.': ## skip .L129 type symbols
76 print "%s has these symbols not reachable from exported symbols:" % next_filenam
    [all...]
  /packages/apps/Calculator/src/com/android/calculator2/
CalculatorExpressionTokenizer.java 44 final DecimalFormatSymbols symbols = new DecimalFormatSymbols(locale); local
45 final char zeroDigit = symbols.getZeroDigit();
47 mReplacementMap.put(".", String.valueOf(symbols.getDecimalSeparator()));
CalculatorNumericPadLayout.java 54 final DecimalFormatSymbols symbols = DecimalFormatSymbols.getInstance(locale); local
55 final char zeroDigit = symbols.getZeroDigit();
92 b.setText(String.valueOf(symbols.getDecimalSeparator()));
  /external/icu/icu4c/source/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/webrtc/webrtc/base/
checks.cc 55 // to get usable symbols on Linux. This is copied from V8. Chromium has a more
61 char** symbols = backtrace_symbols(trace, size); local
65 } else if (symbols == NULL) {
66 PrintError("(no symbols)\n");
70 if (sscanf(symbols[i], "%*[^(]%*[(]%200[^)+]", mangled) == 1) { // NOLINT
79 PrintError("%s\n", symbols[i]);
83 free(symbols);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/picker/
PickerConstant.java 41 DateFormatSymbols symbols = DateFormatSymbols.getInstance(locale); local
42 months = symbols.getShortMonths();
49 ampm = symbols.getAmPmStrings();
  /ndk/sources/android/libthread_db/
libthread_db.c 28 // We don't have any symbols to cache.
30 static char const* symbols[] = { NULL }; local
31 return symbols;
  /external/bison/src/
state.h 30 state. These symbols at these items are the allowable inputs that
172 symbol *symbols[1]; member in struct:__anon6638
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/number/
CurrencyDemo.java 49 DecimalFormatSymbols symbols = result.getDecimalFormatSymbols(); local
50 symbols.setCurrencySymbol(hack.symbol);
51 result.setDecimalFormatSymbols(symbols);
  /external/libxml2/doc/examples/
index.py 19 symbols = {} variable
49 res = ctxt.xpathEval("/api/symbols/*[@name = '%s']" % (name))
93 global symbols
160 if symbols.has_key(name):
161 sinfo = symbols[name]
163 # gather at most 5 references per symbols
169 symbols[name] = [1, filename]
187 global symbols
189 output.write(" <symbols>\n")
190 keys = symbols.keys(
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_debug_refcnt.c 114 static void dump_stack(const char* symbols[STACK_LEN])
119 if(symbols[i])
120 fprintf(stream, "%s\n", symbols[i]);
145 const char* symbols[STACK_LEN]; local
157 symbols[i] = debug_symbol_name_cached(frames[i].function);
159 symbols[i] = 0;
167 dump_stack(symbols);
174 dump_stack(symbols);
182 dump_stack(symbols);
189 dump_stack(symbols);
    [all...]
  /system/core/libbacktrace/
backtrace_offline_test.cpp 131 static std::vector<FunctionSymbol> symbols; local
132 if (symbols.empty()) {
133 symbols = std::vector<FunctionSymbol>{
144 symbols.begin(), symbols.end(),
146 for (size_t i = 0; i + 1 < symbols.size(); ++i) {
147 symbols[i].end = symbols[i + 1].start;
150 for (auto& symbol : symbols) {
  /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/fec/
vtest27.c 45 unsigned char symbols[8*2*(MAXBYTES+6)]; local
120 symbols[2*i+0] = addnoise(parity(sr & V27POLYA),gain,Gain,127.5,255);
121 symbols[2*i+1] = addnoise(parity(sr & V27POLYB),gain,Gain,127.5,255);
128 update_viterbi27_blk(vp,symbols,framebits+6);
164 memset(symbols,127,sizeof(symbols));
172 update_viterbi27_blk(vp,symbols,framebits);
vtest29.c 45 unsigned char symbols[8*2*(MAXBYTES+8)]; local
120 symbols[2*i+0] = addnoise(parity(sr & V29POLYA),gain,Gain,127.5,255);
121 symbols[2*i+1] = addnoise(parity(sr & V29POLYB),gain,Gain,127.5,255);
128 update_viterbi29_blk(vp,symbols,framebits+8);
163 memset(symbols,127,sizeof(symbols));
171 update_viterbi29_blk(vp,symbols,framebits);
vtest39.c 45 unsigned char symbols[8*3*(MAXBYTES+8)]; local
120 symbols[3*i+0] = addnoise(parity(sr & V39POLYA),gain,Gain,127.5,255);
121 symbols[3*i+1] = addnoise(parity(sr & V39POLYB),gain,Gain,127.5,255);
122 symbols[3*i+2] = addnoise(parity(sr & V39POLYC),gain,Gain,127.5,255);
129 update_viterbi39_blk(vp,symbols,framebits+8);
164 memset(symbols,127,sizeof(symbols));
172 update_viterbi39_blk(vp,symbols,framebits);

Completed in 446 milliseconds

1 2 3 4 5 6 7 8 91011>>