/external/v8/test/mjsunit/ |
keyed-call-generic.js | 56 // Use a non-symbol key to force inline cache to generic case. 90 // Use a non-symbol key to force inline cache to generic case.
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_sundry.py | 78 import symbol namespace
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_sundry.py | 78 import symbol namespace
|
/external/elfutils/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]; 527 struct usedfiles *fileinfo, struct symbol *oldp) 559 struct symbol *oldp) 595 struct usedfiles *fileinfo, struct symbol *oldp 1276 struct symbol *symbol = fileinfo->scninfo[cnt].symbols; local [all...] |
/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/platform/ |
JSONValues.cpp | 72 unsigned symbol = static_cast<unsigned>(c); local 73 String symbolCode = String::format("\\u%04X", symbol);
|
/external/chromium_org/third_party/icu/source/i18n/unicode/ |
unum.h | 122 * locale like the currency symbol, the grouping seperator , monetary seperator 856 * Constants for specifying a number format symbol. 876 /** The currency symbol * [all...] |
/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/chromium_org/v8/test/mjsunit/harmony/ |
private.js | 48 assertEquals("symbol", typeof symbols[i]) 49 assertTrue(typeof symbols[i] === "symbol") 52 assertEquals("Symbol", %_ClassOf(new Symbol(symbols[i]))) 53 assertEquals("Symbol", %_ClassOf(Object(symbols[i]))) 61 assertSame(Symbol.prototype, symbols[i].__proto__) 69 assertSame(Symbol, symbols[i].__proto__.constructor) 89 assertThrows(function() { (new Symbol(symbols[i])).toString() }, TypeError) 91 assertEquals("[object Symbol]", Object.prototype.toString.call(symbols[i])) 124 // Every symbol should equal itself, and non-strictly equal its wrapper [all...] |
/external/icu4c/i18n/unicode/ |
unum.h | 122 * locale like the currency symbol, the grouping seperator , monetary seperator 147 * Currency format with a currency symbol, e.g., "$1.00". [all...] |
/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/libvpx/libvpx/build/make/ |
rtcd.sh | 15 --sym=SYMBOL Unique symbol to use for RTCD initialization function 38 --sym=*) symbol=${optval};; 199 outfile_basename=$(basename ${symbol:-rtcd}) 216 void ${symbol:-rtcd}(void);
|
/external/linux-tools-perf/util/ |
parse-events.c | 16 #include "symbol.h" 24 const char *symbol; member in struct:event_symbol 660 n = strlen(event_symbols[i].symbol); 661 if (!strncasecmp(str, event_symbols[i].symbol, n)) 1002 syms->symbol, syms->alias); 1004 snprintf(name, sizeof(name), "%s", syms->symbol); 1061 !(strglobmatch(syms->symbol, event_glob) || 1066 snprintf(name, MAX_NAME_LEN, "%s OR %s", syms->symbol, syms->alias); 1068 strncpy(name, syms->symbol, MAX_NAME_LEN);
|
/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.'
|
/frameworks/compile/slang/ |
SlangData.mk | 23 # slangdata_output_var_name -- name of the symbol that needs to be defined
|
/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)
|
/sdk/emulator/qtools/ |
q2dm.cpp | 14 struct symbol { struct 18 typedef TraceReader<symbol> TraceReaderType;
|
trace_reader.cpp | 926 // Add new symbol mappings to a linked list until we have the whole 928 // search on the address to find the symbol name quickly. 981 DexSymList *symbol = new DexSymList; local 982 symbol->sym.addr = addr; 983 symbol->sym.len = len; 984 symbol->sym.name = name; 985 symbol->next = NULL; 989 head = symbol; 991 prev->next = symbol; 992 prev = symbol; [all...] |
/system/core/init/ |
keywords.h | 42 #define KEYWORD(symbol, flags, nargs, func) K_##symbol,
|
/external/bison/doc/ |
refcard.tex | 337 \key{Declare a terminal symbol.}{\%token <{\it t\/}> 340 \key{Declare a terminal symbol, and define its association.} 360 definition, {\it n} is a {\it terminal} symbol name, {\it m} is a 361 {\it non-terminal} symbol name, and {\it association} can be one of 424 For altering the precedence of a symbol use: 442 \key{Access data associated with a symbol.} {\$\$, \$0\dots\${\it n}} 445 \key{Access symbol's location.} {@\$, @0\dots@{\it n}}
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
dfa.rb | 54 each step, the machine examines the next symbol on the input stream, checks the 69 The smallest value of the next input symbol that has 72 The largest value of the next input symbol that has 76 the current input symbol. 79 situations where a non-matching input symbol does
|
/external/oprofile/pp/ |
opannotate.cpp | 260 string symbol_annotation(symbol_entry const * symbol) 262 if (!symbol) 265 string annot = count_str(symbol->sample.counts, 268 string const & symname = symbol_names.demangle(symbol->name); 272 str += count_str(symbol->sample.counts, samples->samples_count()); 278 /// return true if this line contains a symbol name in objdump formatting 279 /// symbol are on the form 08030434 <symbol_name>: we need to be strict 280 /// here to avoid any interpretation of a source line as a symbol line 313 // this regexp dis-ambiguate between a symbol line and an asm line. If 343 // ! complexity: linear in number of symbol must use sorte [all...] |
/libcore/luni/src/main/java/libcore/icu/ |
NativeDecimalFormat.java | 629 private static native int getAttribute(long addr, int symbol); 630 private static native String getTextAttribute(long addr, int symbol); 642 private static native void setSymbol(long addr, int symbol, String str); 643 private static native void setAttribute(long addr, int symbol, int i); 645 private static native void setTextAttribute(long addr, int symbol, String str);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
pgen.py | 24 self.first = {} # map from symbol name to set of tokens 65 # Either a symbol name or a named token 67 # A symbol name (a non-terminal) 137 for symbol in itsfirst: 138 if symbol in inverse: 141 (name, symbol, label, inverse[symbol])) 142 inverse[symbol] = label
|