HomeSort by relevance Sort by last modified time
    Searched refs:symbol (Results 1 - 25 of 339) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bison/src/
symtab.h 34 /* Symbol classes. */
38 token_sym, /* terminal symbol */
48 typedef struct symbol symbol; typedef in typeref:struct:symbol
52 struct symbol struct
54 /* The key, name of the symbol. */
77 /* Points to the other in the identifier-symbol pair for an alias.
79 identifier-symbol pair for an alias. */
80 symbol *alias;
88 /* `symbol->user_token_number == USER_NUMBER_ALIAS' means this symbo
    [all...]
  /cts/tools/dasm/src/java_cup/runtime/
symbol.java 4 /** This class represents a (terminal or non-terminal) symbol that, among
6 * keep track of state on the parse stack. The symbol currently on top
9 * of the symbol number that they represent in the sym field. Finally,
21 public class symbol { class
24 public symbol(int sym_num, int state) method in class:symbol
33 public symbol(int sym_num) method in class:symbol
40 /** The symbol number of the terminal or non terminal being represented */
45 /** The parse state to be recorded on the parse stack with this symbol.
token.java 4 /** This subclass of symbol represents (at least) terminal symbols returned
13 public class token extends symbol {
  /external/elfutils/libebl/
eblsymboltypename.c 1 /* Return symbol type name.
24 ebl_symbol_type_name (ebl, symbol, buf, len)
26 int symbol;
32 res = ebl != NULL ? ebl->symbol_type_name (symbol, buf, len) : NULL;
47 if (symbol < STT_NUM)
48 res = stt_names[symbol];
51 if (symbol >= STT_LOPROC && symbol <= STT_HIPROC)
52 snprintf (buf, len, "LOPROC+%d", symbol - STT_LOPROC);
53 else if (symbol >= STT_LOOS && symbol <= STT_HIOS
    [all...]
  /external/easymock/src/org/easymock/
LogicalOperator.java 48 private String symbol; field in class:LogicalOperator
50 private LogicalOperator(String symbol) {
51 this.symbol = symbol;
55 return symbol;
  /external/iptables/extensions/
tos_values.c 29 const struct tos_symbol_info *symbol; local
34 for (symbol = tos_symbol_names; symbol->name != NULL; ++symbol)
35 if (value == symbol->value) {
36 printf(" %s%s", prefix, symbol->name);
  /development/tools/emulator/opengl/tests/gles_android_wrapper/
ApiInitializer.h 18 void *symbol = NULL; local
20 symbol = dlsym(m_dso, name);
22 return symbol;
  /external/webkit/Source/WebKit2/Platform/gtk/
ModuleGtk.cpp 49 gpointer symbol = 0; local
50 g_module_symbol(m_handle, functionName, &symbol);
51 return symbol;
  /system/core/debuggerd/
symbol_table.h 4 struct symbol { struct
11 struct symbol *symbols;
18 const struct symbol *symbol_table_lookup(struct symbol_table *table, unsigned int addr);
  /system/extras/tests/bionic/libc/common/
test_dlopen_null.c 15 void* symbol; local
30 symbol = dlsym(lib, "foo");
31 if (symbol == NULL) {
32 fprintf(stderr, "Could not lookup symbol inside executable !!: %s\n", dlerror());
  /cts/tools/dasm/src/dasm/
parser.java 809 public java_cup.runtime.symbol do_action(
825 /** EOF symbol index */
828 /** error symbol index */
    [all...]
  /external/zlib/contrib/puff/
puff.c 65 * - Catch missing end-of-block symbol error
192 * symbol[] are the symbol values in canonical order, where the number of
198 short *symbol; /* canonically ordered symbols */ member in struct:huffman
202 * Decode a code from the stream s using huffman table h. Return the symbol or
231 int index; /* index of first code of length len in symbol table */
237 if (code - count < first) /* if length len, return symbol */
238 return h->symbol[index + (code - first)];
259 int index; /* index of first code of length len in symbol table */
274 if (code - count < first) { /* if length len, return symbol */
329 int symbol; \/* current symbol when stepping through length[] *\/ local
426 int symbol; \/* decoded symbol *\/ local
525 int symbol; local
683 int symbol; \/* decoded value *\/ local
    [all...]
  /device/samsung/crespo/sec_mm/sec_omx/sec_osal/
SEC_OSAL_Library.h 38 void *SEC_OSAL_dlsym(void *handle, const char *symbol);
SEC_OSAL_Library.c 41 void *SEC_OSAL_dlsym(void *handle, const char *symbol)
43 return dlsym(handle, symbol);
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
SearchSymbol.cpp 6 // SearchSymbol is an AST traverser to detect the use of a given symbol name
16 SearchSymbol::SearchSymbol(const TString &symbol) : mSymbol(symbol)
ValidateLimitations.cpp 12 bool IsLoopIndex(const TIntermSymbol* symbol, const TLoopStack& stack) {
14 if (i->index.id == symbol->getId())
37 virtual void visitSymbol(TIntermSymbol* symbol) {
41 mValid = (symbol->getQualifier() == EvqConst) ||
42 IsLoopIndex(symbol, mLoopStack);
156 bool ValidateLimitations::isLoopIndex(const TIntermSymbol* symbol) const
158 return IsLoopIndex(symbol, mLoopStack);
221 TIntermSymbol* symbol = declInit->getLeft()->getAsSymbolNode(); local
222 if (symbol == NULL) {
227 TBasicType type = symbol->getBasicType()
263 TIntermSymbol* symbol = binOp->getLeft()->getAsSymbolNode(); local
321 TIntermSymbol* symbol = NULL; local
384 TIntermSymbol* symbol = params[i]->getAsSymbolNode(); local
395 TSymbol* symbol = symbolTable.find(node->getName()); local
419 const TIntermSymbol* symbol = operand->getAsSymbolNode(); local
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
GenericSignatureParser.java 83 char symbol; // 0: eof; else valid term symbol or first char of identifier. field in class:GenericSignatureParser
223 while (symbol > 0) {
235 if (symbol == '<') {
238 while ((symbol != '>') && (symbol > 0)) {
256 if (symbol == 'L' || symbol == '[' || symbol == 'T') {
260 while (symbol == ':')
    [all...]
  /external/oprofile/libpp/
symbol_container.cpp 32 symbol_entry * symbol = const_cast<symbol_entry*>(&*p.first); local
33 symbol->sample.counts += symb.sample.counts;
45 symbol_entry symbol; local
46 symbol.sample.file_loc.filename = filename;
47 symbol.sample.file_loc.linenr = linenr;
52 pair<it, it> p_it = symbols_by_loc.equal_range(&symbol);
65 symbol_entry symbol; local
66 symbol.sample.file_loc.filename = filename;
67 symbol.sample.file_loc.linenr = 0;
70 it first = symbols_by_loc.lower_bound(&symbol);
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/loadso/dlopen/
SDL_sysloadso.c 46 void *symbol = dlsym(handle, name); local
47 if ( symbol == NULL ) {
53 symbol = dlsym(handle, _name);
55 if ( symbol == NULL ) {
59 return(symbol);
  /external/icu4c/i18n/unicode/
dcfmtsym.h 15 * 08/26/97 aliu Added currency/intl currency symbol support.
55 * Symbol Meaning
86 * Constants for specifying a number format symbol.
106 /** The currency symbol */
108 /** The international currency symbol */
112 /** The exponential symbol */
114 /** Per mill symbol - replaces kPermillSymbol */
118 /** Infinity symbol */
120 /** Nan symbol */
122 /** Significant digit symbol
    [all...]
  /cts/tools/dasm/src/java_cup/
symbol.java 4 * both terminals and non-terminals). Each symbol has a name string, and
5 * a string giving the type of object that the symbol will be represented by
6 * on the runtime parse stack. In addition, each symbol maintains a use count
16 public abstract class symbol { class
22 * @param nm the name of the symbol.
25 public symbol(String nm, String tp) method in class:symbol
40 * @param nm the name of the symbol.
42 public symbol(String nm) method in class:symbol
51 /** String for the human readable name of the symbol. */
54 /** String for the human readable name of the symbol. *
    [all...]
lalr_transition.java 20 * @param on_sym symbol we are transitioning on.
24 public lalr_transition(symbol on_sym, lalr_state to_st, lalr_transition nxt)
29 throw new internal_error("Attempt to create transition on null symbol");
42 * @param on_sym symbol we are transitioning on.
45 public lalr_transition(symbol on_sym, lalr_state to_st) throws internal_error
54 /** The symbol we make the transition on. */
55 protected symbol _on_symbol;
57 /** The symbol we make the transition on. */
58 public symbol on_symbol() {return _on_symbol;}
symbol_part.java 3 /** This class represents a part of a production which is a symbol (terminal
4 * or non terminal). This simply maintains a reference to the symbol in
18 * @param sym the symbol that this part is made up of.
21 public symbol_part(symbol sym, String lab) throws internal_error
27 "Attempt to construct a symbol_part with a null symbol");
34 * @param sym the symbol that this part is made up of.
36 public symbol_part(symbol sym) throws internal_error
45 /** The symbol that this part is made up of. */
46 protected symbol _the_symbol;
48 /** The symbol that this part is made up of. *
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/loadso/mint/
SDL_sysloadso.c 48 void *symbol = (void *)ldg_find((char *)name, (LDG *)handle); local
49 if ( symbol == NULL ) {
52 return(symbol);
  /external/zlib/contrib/blast/
blast.c 93 * symbol[] are the symbol values in canonical order, where the number of
99 short *symbol; /* canonically ordered symbols */ member in struct:huffman
103 * Decode a code from the stream s using huffman table h. Return the symbol or
129 int index; /* index of first code of length len in symbol table */
144 if (code < first + count) { /* if length len, return symbol */
147 return h->symbol[index + (code - first)];
181 * enough bits will resolve to a symbol. If the return value is positive, then
187 int symbol; /* current symbol when stepping through length[] * local
280 int symbol; \/* decoded symbol, extra bits for distance *\/ local
    [all...]

Completed in 736 milliseconds

1 2 3 4 5 6 7 8 91011>>