Searched defs:sym (Results 1 - 25 of 291) sorted by path

1234567891011>>

/external/bison/src/
H A DLR0.c58 state_list_append (symbol_number sym, size_t core_size, item_number *core) argument
61 state *s = state_new (sym, core_size, core);
65 nstates, sym, symbols[sym]->tag);
191 symbol_number sym = item_number_as_symbol_number (ritem[itemset[i]]);
192 if (!kernel_size[sym])
194 shift_symbol[nshifts] = sym;
198 kernel_base[sym][kernel_size[sym]] = itemset[i] + 1;
199 kernel_size[sym]
190 symbol_number sym = item_number_as_symbol_number (ritem[itemset[i]]); local
211 get_state(symbol_number sym, size_t core_size, item_number *core) argument
248 symbol_number sym = shift_symbol[i]; local
257 symbol_number sym = shift_symbol[i]; local
[all...]
H A Dclosure.c134 item_number sym = derives[i - ntokens][j]->rhs[0];
135 if (ISVAR (sym))
136 bitset_set (FIRSTS (i), sym - ntokens);
132 item_number sym = derives[i - ntokens][j]->rhs[0]; local
H A Dgram.h129 symbol_number_as_item_number (symbol_number sym) argument
131 return sym;
H A Dielr.c266 symbol_number sym = TRANSITION_SYMBOL (trans, j); local
267 if (nullable[sym - ntokens])
268 edge_array[nedges++] = map_goto (to_state[i], sym);
H A Dlalr.c133 map_goto (state_number s0, symbol_number sym) argument
140 low = goto_map[sym - ntokens];
141 high = goto_map[sym - ntokens + 1] - 1;
180 symbol_number sym = TRANSITION_SYMBOL (sp, j); local
181 if (nullable[sym - ntokens])
182 edge[nedges++] = map_goto (stateno, sym);
H A Doutput.c352 symbol *sym = symbols[i]; local
353 int number = sym->user_token_number;
361 if (sym == errtoken)
366 if (sym->alias)
367 sym = sym->alias;
372 if (sym->tag[0] == '\'' || sym->tag[0] == '\"')
377 if (mbschr (sym->tag, '.')
378 || mbschr (sym
406 symbol *sym = symbols[i]; local
[all...]
H A Dparse-gram.c152 current_lhs(symbol *sym, location loc, named_ref *ref) argument
154 current_lhs_symbol = sym;
2562 symbol_type_set (list->content.sym, (yyvsp[(2) - (3)].uniqstr), (yylsp[(2) - (3)]));
2575 symbol_type_set (list->content.sym, current_type, (yylsp[(2) - (3)]));
2576 symbol_precedence_set (list->content.sym, current_prec, (yyvsp[(1) - (3)].assoc), (yylsp[(1) - (3)]));
H A Dprint-xml.c150 symbol *sym = symbols[TRANSITION_SYMBOL (trans, i)]; local
151 char const *tag = sym->tag;
163 symbol *sym = symbols[TRANSITION_SYMBOL (trans, i)]; local
164 char const *tag = sym->tag;
H A Dprint.c140 symbol *sym = symbols[TRANSITION_SYMBOL (trans, i)];
141 max_length (&width, sym->tag);
156 symbol *sym = symbols[TRANSITION_SYMBOL (trans, i)];
157 const char *tag = sym->tag;
139 symbol *sym = symbols[TRANSITION_SYMBOL (trans, i)]; local
155 symbol *sym = symbols[TRANSITION_SYMBOL (trans, i)]; local
H A Dprint_graph.c152 symbol_number sym = s1->accessing_symbol; local
161 && strcmp (symbols[sym]->tag, "error") != 0)
164 TRANSITION_IS_ERROR (trans, i) ? NULL : symbols[sym]->tag,
H A Dreader.c60 grammar_start_symbol_set (symbol *sym, location loc)
67 startsymbol = sym;
181 grammar_symbol_append (symbol *sym, location loc)
183 symbol_list *p = symbol_list_sym_new (sym, loc);
194 if (sym)
203 symbol *sym = p->content.sym;
205 if (name->id == sym->tag)
209 quote (sym->tag));
267 if (symbol_destructor_get (s->content.sym)
59 grammar_start_symbol_set(symbol *sym, location loc) argument
178 grammar_symbol_append(symbol *sym, location loc) argument
200 symbol *sym = p->content.sym; local
467 grammar_current_rule_symbol_append(symbol *sym, location loc, named_ref *name) argument
739 symbol_list *sym; local
[all...]
H A Dstate.c57 transitions_to (transitions *shifts, symbol_number sym) argument
63 if (TRANSITION_SYMBOL (shifts, j) == sym)
H A Dsymlist.c33 symbol_list_sym_new (symbol *sym, location loc) argument
38 res->content.sym = sym;
121 for (/* Nothing. */; l && l->content.sym; l = l->next)
123 symbol_print (l->content.sym, f);
125 if (l && l->content.sym)
169 l && !(l->content_type == SYMLIST_SYMBOL && l->content.sym == NULL);
192 || (l->content_type == SYMLIST_SYMBOL && l->content.sym == NULL))
215 return l->content.sym->type_name;
222 (node->content_type == SYMLIST_SYMBOL && !(node->content.sym));
[all...]
H A Dsymlist.h45 symbol *sym; member in union:symbol_list::__anon389
85 /** Create a list containing \c sym at \c loc. */
86 symbol_list *symbol_list_sym_new (symbol *sym, location loc);
H A Dsymtab.c177 symbol_type_set (symbol *sym, uniqstr type_name, location loc) argument
181 if (sym->type_name)
182 symbol_redeclaration (sym, "%type", sym->type_location, loc);
184 sym->type_name = type_name;
185 sym->type_location = loc;
194 symbol_destructor_set (symbol *sym, code_props const *destructor) argument
196 if (sym->destructor.code)
197 symbol_redeclaration (sym, "%destructor", sym
222 symbol_destructor_get(symbol const *sym) argument
251 symbol_printer_set(symbol *sym, code_props const *printer) argument
277 symbol_printer_get(symbol const *sym) argument
306 symbol_precedence_set(symbol *sym, int prec, assoc a, location loc) argument
328 symbol_class_set(symbol *sym, symbol_class class, location loc, bool declaring) argument
357 symbol_user_token_number_set(symbol *sym, int user_token_number, location loc) argument
389 symbol_check_defined(symbol *sym) argument
405 symbol_check_defined_processor(void *sym, void *null ATTRIBUTE_UNUSED) argument
412 symbol_make_alias(symbol *sym, symbol *str, location loc) argument
441 symbol *sym = this; local
743 symbol *sym; local
753 symbol_is_dummy(const symbol *sym) argument
[all...]
H A Dtables.c54 symbol_number_to_vector_number (symbol_number sym) argument
56 return state_number_as_int (nstates) + sym - ntokens;
281 symbol_number sym = TRANSITION_SYMBOL (trans, i); local
284 if (actrow[sym] != 0)
287 conflrow[sym] = 1;
289 actrow[sym] = state_number_as_int (shift_state->number);
293 if (sym == errtoken->number)
302 symbol *sym = errp->symbols[i]; local
303 actrow[sym->number] = ACTION_NUMBER_MINIMUM;
486 save_column (symbol_number sym, state_numbe argument
529 default_goto(symbol_number sym, size_t state_count[]) argument
[all...]
/external/chromium_org/native_client_sdk/src/libraries/xray/
H A Dsymtable.c123 struct XRaySymbol* sym = (struct XRaySymbol*) local
126 return sym;
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_elf_symbols.cpp69 const ELF::Sym* sym = &symbol_table_[n]; local
70 if (sym->st_shndx != SHN_UNDEF && elf_addr >= sym->st_value &&
71 elf_addr < sym->st_value + sym->st_size) {
72 return sym;
90 const ELF::Sym* sym = &symbol_table_[n]; local
91 if (sym->st_shndx == SHN_UNDEF)
94 if (elf_addr >= sym->st_value && elf_addr < sym
[all...]
H A Dcrazy_linker_elf_symbols.h39 const ELF::Sym* sym = LookupById(symbol_id); local
40 if (!sym)
42 return string_table_ + sym->st_name;
46 const ELF::Sym* sym = LookupByName(symbol_name); local
47 if (!sym)
49 return reinterpret_cast<void*>(load_bias + sym->st_value);
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/chromium_org/third_party/cython/src/Cython/Plex/
H A DRegexps.py271 SpecialSymbol(sym) is an RE which matches the special input
272 symbol |sym|, which is one of BOL, EOL or EOF.
276 sym = None variable in class:SpecialSymbol
278 def __init__(self, sym):
279 self.sym = sym
283 # to allow for bol if sym is eol
284 if match_bol and self.sym == EOL:
286 initial_state.add_transition(self.sym, final_state)
/external/chromium_org/third_party/fips181/
H A Drandpass.h40 struct sym struct
/external/chromium_org/third_party/hwcplus/src/
H A Dhardware.c100 const char *sym = HAL_MODULE_INFO_SYM_AS_STR; local
101 hmi = (struct hw_module_t *)dlsym(handle, sym);
103 ALOGE("load: couldn't find symbol %s", sym);
/external/chromium_org/third_party/icu/source/common/
H A Dicuplug.c47 char sym[UPLUG_NAME_MAX]; /**< plugin symbol, or NULL */ member in struct:UPlugData
342 plug->sym[0]=0;
366 uprv_strncpy(plug->sym, symName, UPLUG_NAME_MAX);
368 plug->sym[0] = 0;
462 return data->sym;
520 static UPlugData* uplug_initPlugFromEntrypointAndLibrary(UPlugEntrypoint *entrypoint, const char *config, void *lib, const char *sym, argument
524 plug = uplug_allocatePlug(entrypoint, config, lib, sym, status);
544 uplug_initErrorPlug(const char *libName, const char *sym, const char *config, const char *nameOrError, UErrorCode loadStatus, UErrorCode *status) argument
553 if(sym!=NULL) {
554 uprv_strncpy(plug->sym, sy
576 uplug_initPlugFromLibrary(const char *libName, const char *sym, const char *config, UErrorCode *status) argument
607 uplug_loadPlugFromLibrary(const char *libName, const char *sym, const char *config, UErrorCode *status) argument
[all...]

Completed in 382 milliseconds

1234567891011>>