HomeSort by relevance Sort by last modified time
    Searched refs:symbol (Results 76 - 100 of 324) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/elfutils/src/
ld.h 27 /* Character used to introduce version name after symbol. */
166 struct symbol *symbols;
178 /* The symbol table section.
180 XXX Maybe support for more than one symbol table is needed. */
184 /* Dynamic symbol table section. */
201 /* String table section associated with the symbol table. */
203 /* String table section associated with the dynamic symbol table. */
205 /* Number of entries in the symbol table. */
215 /* For undefined or common symbols we need a reference to the symbol
217 struct symbol **symref
401 struct symbol struct
955 struct symbol *symbol; member in struct:ld_state::scngroup
    [all...]
  /libcore/luni/src/main/java/java/util/
Currency.java 38 String symbol = ICU.getCurrencySymbol(Locale.US.toString(), currencyCode); local
39 if (symbol == null) {
141 * Returns the localized currency symbol for this currency in {@code locale}.
149 * <p>If there is no locale-specific currency symbol, the ISO 4217 currency code is returned.
163 String symbol = ICU.getCurrencySymbol(locale.toString(), currencyCode); local
164 return symbol != null ? symbol : currencyCode;
  /external/iptables/extensions/
libxt_tos.c 41 const struct tos_symbol_info *symbol; local
46 "[!] --tos symbol Match TOS field (IPv4 only) by symbol\n"
49 for (symbol = tos_symbol_names; symbol->name != NULL; ++symbol)
51 symbol->value, symbol->value, symbol->name);
  /cts/tools/dasm/src/java_cup/runtime/
lr_parser.java 18 * on top of the parse stack (stored as part of a symbol object representing
22 * changes to a new state by pushing a new symbol (containing a new state)
28 * this goto state by pushing the left hand side symbol of the production
61 * <dd> Indicates the index of the EOF symbol.
63 * <dd> Indicates the index of the error symbol.
64 * <dt> symbol do_action()
67 * fills in the left hand side non terminal symbol object that is to be
105 * @see java_cup.runtime.symbol
200 /** The index of the end of file terminal symbol (supplied by generated
207 /** The index of the special error symbol (supplied by generated subclass). *
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
SymbolTable.h 11 // Symbol table for parsing. Has these design characteristics:
13 // * Same symbol table can be used to compile many shaders, to preserve
18 // so that symbol table lookups are never ambiguous. This allows
19 // a simpler symbol table structure.
21 // * Pushing and popping of scope, so symbol table will really be a stack
22 // of symbol tables. Searched from the top, with new inserts going into
26 // in the symbol table. The parser can substitute constants at parse
30 // are tracked in the intermediate representation, not the symbol table.
39 // Symbol base class. (Can build functions or variables out of these...)
62 // Variable class, meaning a symbol that's not a function
288 TSymbol* symbol; local
    [all...]
  /external/bison/src/
parse-gram.y 56 static symbol *current_lhs;
95 symbol *symbol;
193 %type <symbol> ID symbol string_as_id
194 %printer { fprintf (stderr, "%s", $$->tag); } ID symbol string_as_id
195 %type <symbol> ID_COLON
258 | "%start" symbol
351 symbol { $$ = symbol_list_new ($1, @1); }
352 | symbols.1 symbol { $$ = symbol_list_prepend ($1, $2, @2);
438 symbol: label
    [all...]
state.h 42 For each state there is a particular symbol which must have been
52 replace them with the symbol that the rule derives, and leave the
77 grammar's start symbol. The next-to-final state has one shift to
121 /* What is the symbol labelling the transition to
175 symbol *symbols[1];
178 errs *errs_new (int num, symbol **tokens);
235 void state_errs_set (state *s, int num, symbol **errors);
  /external/oprofile/libpp/
profile_container.cpp 20 #include "symbol.h"
71 // the range of sample_entry inside each symbol entry are valid
125 symbol_entry const * symbol = symbols->insert(symb_entry); local
128 add_samples(abfd, i, p_it, symbol, pclass, start);
136 symbol_entry const * symbol, size_t pclass,
159 samples->insert(symbol, sample);
201 // contain sample does not work: a symbol can contain samples and this
202 // symbol is in a source file that contain zero sample because only
276 profile_container::find_sample(symbol_entry const * symbol, bfd_vma vma) const
278 return samples->find_by_vma(symbol, vma)
    [all...]
profile_container.h 45 * to record them at symbol level.
69 /// Find a symbol from its image_name, vma, return zero if no symbol
75 /// symbol_collection if no symbol at this location
79 /// Find a sample by its symbol, vma, return zero if there is no sample
81 sample_entry const * find_sample(symbol_entry const * symbol,
84 /// Find a symbol. Return NULL if not found.
85 symbol_entry const * find(symbol_entry const & symbol) const;
128 /// return an iterator to the first symbol
130 /// return an iterator to the last symbol
    [all...]
symbol_container.h 18 #include "symbol.h"
39 * Insert a new symbol. If the symbol already exists in the container,
41 * Returns the newly created symbol or the existing one. This pointer
55 /// find the symbol with the given image_name vma if any
59 /// Search a symbol. Return NULL if not found.
60 symbol_entry const * find(symbol_entry const & symbol) const;
69 /// build the symbol by file-location cache
79 * Differently-named symbol at same file location are allowed e.g.
  /cts/tools/dasm/src/java_cup/
lr_item_core.java 35 symbol after_dot = null;
53 /* cache the symbol after the dot */
103 /** Cache of symbol after the dot. */
104 protected symbol _symbol_after_dot = null;
116 /** Return the symbol after the dot. If there is no symbol after the dot
118 public symbol symbol_after_dot()
120 /* use the cached symbol */
131 symbol sym;
133 /* get the symbol after the dot *
    [all...]
  /external/qemu/android/
opengles.c 70 void* symbol; local
73 symbol = adynamicLibrary_findSymbol( rendererLib, #name, &error ); \
74 if (symbol != NULL) { \
75 _ptr_##name = symbol; \
77 derror("GLES emulation: Could not find required symbol (%s): %s", #name, error); \
  /external/bluetooth/glib/glib/
gscanner.h 136 /* Should symbol lookup work case sensitive?
228 const gchar *symbol,
232 const gchar *symbol);
235 const gchar *symbol);
241 const gchar *symbol);
259 #define g_scanner_add_symbol( scanner, symbol, value ) G_STMT_START { \
260 g_scanner_scope_add_symbol ((scanner), 0, (symbol), (value)); \
262 #define g_scanner_remove_symbol( scanner, symbol ) G_STMT_START { \
263 g_scanner_scope_remove_symbol ((scanner), 0, (symbol)); \
  /external/stlport/src/
facets_byname.cpp 517 case 0: // Parentheses surround the quantity and currency symbol
518 case 1: // The sign string precedes the quantity and currency symbol
521 // 1 if currency symbol precedes a positive value
522 pos_format.field[1] = (char) money_base::symbol;
524 // a space separates currency symbol from a positive value.
528 // a space not separates currency symbol from a positive value.
533 // 0 if currency symbol succeeds a positive value
536 // a space separates currency symbol from a positive value.
538 pos_format.field[3] = (char) money_base::symbol;
540 // a space not separates currency symbol from a positive value
    [all...]
  /external/webkit/Tools/Scripts/
check-for-weak-vtables-and-externals 96 print "ERROR: $shortName has a weak external symbol in it ($executablePath)\n";
97 print "ERROR: A weak external symbol is generated when a symbol is defined in multiple compilation units and is also marked as being exported from the library.\n";
99 for my $symbol (sort @weakExternalSymbols) {
100 print "ERROR: symbol $symbol\n";
  /external/webkit/Tools/Scripts/webkitperl/
features.pm 47 my ($path, $symbol) = @_;
58 $foundSymbol = 1 if /$symbol/; # FIXME: This should probably check for word boundaries before/after the symbol name.
  /ndk/sources/cxx-stl/stlport/src/
facets_byname.cpp 517 case 0: // Parentheses surround the quantity and currency symbol
518 case 1: // The sign string precedes the quantity and currency symbol
521 // 1 if currency symbol precedes a positive value
522 pos_format.field[1] = (char) money_base::symbol;
524 // a space separates currency symbol from a positive value.
528 // a space not separates currency symbol from a positive value.
533 // 0 if currency symbol succeeds a positive value
536 // a space separates currency symbol from a positive value.
538 pos_format.field[3] = (char) money_base::symbol;
540 // a space not separates currency symbol from a positive value
    [all...]
  /bionic/linker/
dlfcn.c 37 [DL_ERR_BAD_SYMBOL_NAME] = "Invalid symbol name",
38 [DL_ERR_SYMBOL_NOT_FOUND] = "Symbol not found",
39 [DL_ERR_SYMBOL_NOT_GLOBAL] = "Symbol is not global",
76 void *dlsym(void *handle, const char *symbol)
88 if(unlikely(symbol == 0)) {
94 sym = lookup(symbol, &found, NULL);
101 sym = lookup(symbol, &found, si->next);
105 sym = lookup_in_library(found, symbol);
142 /* Determine if any symbol in the library contains the specified address */
254 * a real symbol)
    [all...]
  /external/chromium/base/debug/
stack_trace_win.cc 24 // thread at a time. SymbolContext code may access a symbol server over the
77 // Initialize symbol information retrieval structures.
79 PSYMBOL_INFO symbol = reinterpret_cast<PSYMBOL_INFO>(&buffer[0]); local
80 symbol->SizeOfStruct = sizeof(SYMBOL_INFO);
81 symbol->MaxNameLen = kMaxNameLength - 1;
83 &sym_displacement, symbol);
95 (*os) << symbol->Name << " [0x" << trace[i] << "+"
98 // If there is no symbol informtion, add a spacer.
99 (*os) << "(No symbol) [0x" << trace[i] << "]";
113 // Defer symbol load until they're needed, use undecorated names, an
    [all...]
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/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...]
  /development/scripts/
symbol.py 7 The information can include symbol names, offsets, and source locations.
82 """Look up symbol information about an address.
106 """Look up symbol information for a set of addresses from the given library.
151 """Look up line and symbol information for a set of addresses.
158 A dictionary of the form {addr: (symbol, file:line)}. The values may
178 symbol = child.stdout.readline().strip()
179 if symbol == "??":
180 symbol = None
184 result[addr] = (symbol, location)
198 A dictionary of the form {addr: (string symbol, offset)}
    [all...]
  /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...]
  /external/bluetooth/glib/gmodule/
gmodule.h 76 /* retrieve a symbol pointer from `module', returns TRUE on success */
79 gpointer *symbol);
  /external/icu4c/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...]

Completed in 2229 milliseconds

1 2 34 5 6 7 8 91011>>