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

1 2 3 4 5 6 7 8

  /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...]
symlist.h 31 /* The symbol. */
32 symbol *sym;
35 /* If this symbol is the generated lhs for a mid-rule, a pointer to
43 /* Whether this symbol's value is used in the current action. */
47 symbol *ruleprec;
57 symbol_list *symbol_list_new (symbol *sym, location loc);
64 symbol *sym,
73 /* Get symbol N in symbol list L. */
77 symbol N in rule RULE. *
    [all...]
gram.h 32 Each symbol (either token or variable) receives a symbol number.
34 are for variables. Symbol number zero is the end-of-input token.
40 initial rule, `$accept: START-SYMBOL $end', which is numbered 1,
46 instance RITEM stores both symbol (the RHS) and rule numbers: the
58 RULES[R].lhs -- the symbol of the left hand side of rule R.
63 RULES[R].prec -- the symbol providing the precedence level of R.
65 RULES[R].precsym -- the symbol attached (via %prec) to give its
67 need to distinguish one from the other when reducing: a symbol used
83 The right hand side is stored as symbol numbers in a portion o
    [all...]
symtab.c 0 /* Symbol table manager for Bison.
37 symbol *errtoken = NULL;
38 symbol *undeftoken = NULL;
39 symbol *endtoken = NULL;
40 symbol *accept = NULL;
41 symbol *startsymbol = NULL;
45 | Create a new symbol, named TAG. |
48 static symbol *
51 symbol *res = xmalloc (sizeof *res);
79 | Print a symbol.
    [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;
  /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 184 * symbol[] are the symbol values in canonical order, where the number of
190 short *symbol; /* canonically ordered symbols */ member in struct:huffman
194 * Decode a code from the stream s using huffman table h. Return the symbol or
223 int index; /* index of first code of length len in symbol table */
229 if (code < first + count) /* if length len, return symbol */
230 return h->symbol[index + (code - first)];
251 int index; /* index of first code of length len in symbol table */
266 if (code < first + count) { /* if length len, return symbol */
269 return h->symbol[index + (code - first)]
321 int symbol; \/* current symbol when stepping through length[] *\/ local
418 int symbol; \/* decoded symbol *\/ local
512 int symbol; local
659 int symbol; \/* decoded value *\/ local
    [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);
  /dalvik/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...]
  /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...]
parser.java 300 public java_cup.runtime.symbol do_action(
316 /** EOF symbol index */
319 /** error symbol index */
427 public final java_cup.runtime.symbol CUP$do_action(
435 java_cup.runtime.symbol CUP$result;
443 CUP$result = new java_cup.runtime.symbol(/*empty*/27);
475 CUP$result = new java_cup.runtime.symbol(/*new_non_term_id*/24);
481 lexer.emit_error( "Symbol \"" + (/*non_term_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val +
503 CUP$result = new java_cup.runtime.symbol(/*new_term_id*/23);
509 lexer.emit_error("Symbol \"" + (/*term_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val
    [all...]
symbol_set.java 10 * @see java_cup.symbol
62 /** Determine if the set contains a particular symbol.
63 * @param sym the symbol we are looking for.
65 public boolean contains(symbol sym) {return _all.containsKey(sym.name());};
78 if (!other.contains((symbol)e.nextElement()))
98 /** Add a single symbol to the set.
99 * @param sym the symbol we are adding.
102 public boolean add(symbol sym) throws internal_error
117 /** Remove a single symbol if it is in the set.
118 * @param sym the symbol we are removing
    [all...]
  /external/icu4c/i18n/unicode/
dcfmtsym.h 15 * 08/26/97 aliu Added currency/intl currency symbol support.
54 * Symbol Meaning
85 * Constants for specifying a number format symbol.
105 /** The currency symbol */
107 /** The international currency symbol */
111 /** The exponential symbol */
113 /** Per mill symbol - replaces kPermillSymbol */
117 /** Infinity symbol */
119 /** Nan symbol */
121 /** Significant digit symbol
    [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...]
  /external/elfutils/src/
symbolhash.c 0 /* Symbol hash table implementation.
23 /* Definitions for the symbol hash table. */
24 #define TYPE struct symbol *
symbolhash.h 17 /* Definitions for the symbol hash table. */
18 #define TYPE struct symbol *
  /external/qemu/distrib/sdl-1.2.12/src/loadso/os2/
SDL_sysloadso.c 52 void *symbol = NULL; local
53 APIRET ulrc = DosQueryProcAddr((HMODULE)handle, 0, (char *)name, &symbol);
57 loaderror = "Symbol not found";
59 if (symbol == NULL)
62 return(symbol);
  /build/tools/soslim/
symfilter.c 25 symfilter_list_t *symbol; local
34 INFO("Opening symbol-filter file %s...\n", name);
41 INFO("Symbol-filter file %s is %ld bytes long...\n",
56 INFO("Memory-mapped symbol-filter file at %p\n", filter->mmap);
67 "There is no dynamic-symbol table in this library.\n");
86 /* Build the symbol-name chain. */
87 INFO("Building symbol list...\n");
106 /* Add the entry to the symbol-filter list */
107 symbol = (symfilter_list_t *)MALLOC(sizeof(symfilter_list_t));
108 symbol->next = filter->symbols
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
symbol-table.cpp 0 // symbol-table.cc
17 // Classes to provide symbol-to-integer and integer-to-symbol mappings.
19 #include "fst/lib/symbol-table.h"
25 "Require symbol tables to match when appropriate");
32 // Identifies stream data as a symbol table (and its endianity)
38 LOG(ERROR) << "SymbolTable::ReadText: Can't open symbol file: "
58 const char *symbol = col[0]; local
68 impl->AddSymbol(symbol, key);
82 int64 SymbolTableImpl::AddSymbol(const string& symbol, int64 key)
116 string symbol; local
135 const string symbol = symbols_[i]; local
    [all...]

Completed in 242 milliseconds

1 2 3 4 5 6 7 8