HomeSort by relevance Sort by last modified time
    Searched refs:symbol (Results 576 - 600 of 1029) sorted by null

<<21222324252627282930>>

  /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/lldb/source/Symbol/
ObjectFile.cpp 21 #include "lldb/Symbol/ObjectFile.h"
22 #include "lldb/Symbol/ObjectContainer.h"
23 #include "lldb/Symbol/SymbolFile.h"
342 Symbol *symbol = symtab->FindSymbolContainingFileAddress(file_addr); local
343 if (symbol)
345 if (symbol->ValueIsAddress())
347 const SectionSP section_sp (symbol->GetAddress().GetSection());
395 const SymbolType symbol_type = symbol->GetType();
  /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 624 private static native int getAttribute(long addr, int symbol);
625 private static native String getTextAttribute(long addr, int symbol);
637 private static native void setSymbol(long addr, int symbol, String str);
638 private static native void setAttribute(long addr, int symbol, int i);
640 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
  /prebuilts/python/linux-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
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
probe-finder.c 39 #include "symbol.h"
690 const char *symbol; local
709 /* Get an appropriate symbol from symtab */
710 symbol = dwfl_module_addrsym(mod, paddr, &sym, NULL);
711 if (!symbol) {
712 pr_warning("Failed to find symbol at 0x%lx\n",
717 tp->symbol = strdup(symbol);
718 if (!tp->symbol)
1028 return DWARF_CB_ABORT; /* Exit; no same symbol in this CU. *
    [all...]
  /external/valgrind/main/coregrind/
m_redir.c 74 (shared object symbol table, basically) appears. Appearance of new
86 pattern, function name pattern) pair which is encoded in the symbol
118 from reading symbol tables of the currently loaded objects.
120 Active is a pure function of Specs and the current symbol table
224 If ld.so does not have a visible 'strlen' symbol, Memcheck
285 TopSpec* parent_sym; /* the TopSpec which supplied the symbol */
314 HChar* symbol, Addr addr );
333 /* Copy all the names from a given symbol into an AR_DINFO allocated,
495 /* scan this DebugInfo's symbol table, pulling out and demangling
505 /* Set up to conveniently iterate over all names for this symbol. *
    [all...]
  /external/deqp/modules/glshared/
glsShaderExecUtil.cpp 90 for (vector<Symbol>::const_iterator input = shaderSpec.inputs.begin(); input != shaderSpec.inputs.end(); ++input)
93 for (vector<Symbol>::const_iterator output = shaderSpec.outputs.begin(); output != shaderSpec.outputs.end(); ++output)
116 for (vector<Symbol>::const_iterator output = shaderSpec.outputs.begin(); output != shaderSpec.outputs.end(); ++output)
132 for (vector<Symbol>::const_iterator output = shaderSpec.outputs.begin(); output != shaderSpec.outputs.end(); ++output)
165 for (vector<Symbol>::const_iterator input = shaderSpec.inputs.begin(); input != shaderSpec.inputs.end(); ++input)
168 for (vector<Symbol>::const_iterator output = shaderSpec.outputs.begin(); output != shaderSpec.outputs.end(); ++output)
190 for (vector<Symbol>::const_iterator input = shaderSpec.inputs.begin(); input != shaderSpec.inputs.end(); ++input)
194 for (vector<Symbol>::const_iterator output = shaderSpec.outputs.begin(); output != shaderSpec.outputs.end(); ++output)
212 for (vector<Symbol>::const_iterator output = shaderSpec.outputs.begin(); output != shaderSpec.outputs.end(); ++output)
257 for (vector<Symbol>::const_iterator input = shaderSpec.inputs.begin(); input != shaderSpec.inputs.end(); ++input
478 const Symbol& symbol = m_inputs[inputNdx]; local
529 const Symbol& symbol = m_outputs[outputNdx]; local
722 const Symbol& symbol = m_inputs[inputNdx]; local
946 const Symbol& symbol = symbols[varNdx]; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
ObjectPropertiesSection.js 133 if (propertyA.symbol && !propertyB.symbol)
135 if (propertyB.symbol && !propertyA.symbol)
194 if (this.property.symbol)
195 this.nameElement.addEventListener("contextmenu", this._contextMenuFired.bind(this, this.property.symbol), false);
213 // Render \n as a nice unicode cr symbol.
406 var property = WebInspector.RemoteObject.toCallArgument(this.property.symbol || this.property.name);
    [all...]
  /external/chromium_org/tools/binary_size/template/
D3SymbolTreeMap.js 96 'W': 'Global weak symbol (W)',
97 'w': 'Local weak symbol (w)',
108 * Given a symbol type code, look up and return a human-readable description
109 * of that symbol type. If the symbol type does not match one of the known
110 * types, the unrecognized description (corresponding to symbol type '?') is
219 // Leaf node (symbol); accumulate stats.
224 // New symbol type we haven't seen before, just record.
228 // Existing symbol type, increment.
478 // Anything that isn't a bucket or a leaf (symbol) or th
    [all...]
  /external/pixman/pixman/
pixman-mips-dspr2-asm.h 72 #define LEAF_MIPS32R2(symbol) \
73 .globl symbol; \
75 .type symbol, @function; \
76 .ent symbol, 0; \
77 symbol: .frame sp, 0, ra; \
86 #define LEAF_MIPS_DSPR2(symbol) \
87 LEAF_MIPS32R2(symbol) \
  /external/lldb/source/Plugins/SymbolFile/DWARF/
SymbolFileDWARFDebugMap.cpp 27 #include "lldb/Symbol/ClangExternalASTSourceCallbacks.h"
28 #include "lldb/Symbol/CompileUnit.h"
29 #include "lldb/Symbol/LineTable.h"
30 #include "lldb/Symbol/ObjectFile.h"
31 #include "lldb/Symbol/SymbolVendor.h"
32 #include "lldb/Symbol/VariableList.h"
42 // (so we can fixup the symbol file id.
88 // End index is one past the last valid symbol index
94 Symbol *exe_symbol = exe_symtab->SymbolAtIndex(idx);
116 // First we find the original symbol in the .o file's symbol tabl
384 const Symbol *symbol = symtab->SymbolAtIndex(sym_idx); local
392 const Symbol *symbol = symtab->SymbolAtIndex(sym_idx); local
    [all...]
  /external/bison/src/
conflicts.c 150 " <resolution rule=\"%d\" symbol=\"%s\""
159 " <resolution rule=\"%d\" symbol=\"%s\""
167 " <resolution rule=\"%d\" symbol=\"%s\""
261 resolve_sr_conflict (state *s, int ruleno, symbol **errors, int *nerrs)
329 set_conflicts (state *s, symbol **errors)
390 symbol **errors = xnmalloc (ntokens + 1, sizeof *errors);
print.c 76 symbol *previous_lhs = NULL;
140 symbol *sym = symbols[TRANSITION_SYMBOL (trans, i)];
156 symbol *sym = symbols[TRANSITION_SYMBOL (trans, i)];
symlist.c 33 symbol_list_sym_new (symbol *sym, location loc)
177 | Get item N in symbol list L. |
202 | symbol N in symbol list L. |
  /external/chromium_org/third_party/WebKit/Source/platform/text/
LocaleICU.cpp 77 String LocaleICU::decimalSymbol(UNumberFormatSymbol symbol)
80 int32_t bufferLength = unum_getSymbol(m_numberFormat, symbol, 0, 0, &status);
86 unum_getSymbol(m_numberFormat, symbol, buffer.characters(), bufferLength, &status);
  /external/chromium_org/v8/test/mjsunit/es6/
symbols.js 38 return ["Symbol(66)", "Symbol()"].indexOf(s) >= 0;
44 function indirectSymbol() { return Symbol() }
48 symbols.push(Symbol())
49 symbols.push(Symbol(undefined))
50 symbols.push(Symbol("66"))
51 symbols.push(Symbol(66))
52 symbols.push(Symbol().valueOf())
59 assertThrows(function () { Symbol(Symbol()) }, TypeError
    [all...]
  /external/elfutils/0.153/src/
addr2line.c 71 { "symbols", 'S', NULL, 0, N_("Also show symbol or section names"), 0 },
119 /* True if ELF symbol or section info should be shown. */
342 /* No symbol name. Get a section name instead. */
379 GElf_Sym *symbol = ((void **) arg)[1]; local
384 const char *symbol_name = dwfl_module_getsym (mod, i, symbol, NULL);
387 switch (GELF_ST_TYPE (symbol->st_info))
472 /* It was symbol[+offset]. */
477 error (0, 0, gettext ("cannot find symbol '%s'"), name);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
hists_link.c 4 #include "symbol.h"
129 struct symbol *sym;
155 struct symbol *sym;
266 struct thread *t, struct map *m, struct symbol *s)
  /external/llvm/test/MC/ARM/
ldr-pseudo-darwin.s 88 @ load an undefined symbol
95 @ load a symbol from another section
102 @ load a symbol from the same section
  /external/oprofile/libutil++/
bfd_support.cpp 119 * for the symbol name, and:
176 * symbol to the nearest one it can find with debug information.
177 * To mitigate this problem, we check that the symbol name
361 * and sometimes this symbol appears at an address
439 * 1) the real image is completely stripped, where there is no symbol
449 * translate_debuginfo_syms function maps the debuginfo symbol's sections to
524 /* For ppc64, a debuginfo file by itself does not hold enough symbol
625 // take care about artificial symbol
626 if (!sym.symbol())
633 section = sym.symbol()->section
    [all...]
  /external/srec/tools/grxmlcompile/
fst-io.h 81 string symbol = syms->Find(id); local
82 if (symbol == "") {
84 << " is not mapped to any textual symbol"
85 << ", symbol table = " << syms->Name()
89 *ostrm_ << symbol; local
138 const SymbolTable *isyms_; // ilabel symbol table
139 const SymbolTable *osyms_; // olabel symbol table
140 const SymbolTable *ssyms_; // slabel symbol table
296 LOG(ERROR) << "FstReader: Symbol \"" << s
298 << ", symbol table = " << syms->Name(
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/speech_rules/
mathml_store_util.js 27 * Retrieve an extender symbol for a given node.
41 * Retrieve an extender symbol for a given node.

Completed in 853 milliseconds

<<21222324252627282930>>