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

1 2 3 4 5 6 7 8 91011>>

  /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.
60 ebl_symbol_type_name (ebl, symbol, buf, len)
62 int symbol;
68 res = ebl != NULL ? ebl->symbol_type_name (symbol, buf, len) : NULL;
83 if (symbol < STT_NUM)
84 res = stt_names[symbol];
87 if (symbol >= STT_LOPROC && symbol <= STT_HIPROC)
88 snprintf (buf, len, "LOPROC+%d", symbol - STT_LOPROC);
89 else if (symbol >= STT_LOOS && symbol <= STT_HIOS
    [all...]
  /external/bison/src/
symtab.h 23 * \brief Manipulating ::symbol.
38 /** Symbol classes. */
52 typedef struct symbol symbol; typedef in typeref:struct:symbol
56 struct symbol struct
58 /** The key, name of the symbol. */
74 /** Any \c \%destructor declared specifically for this symbol.
76 Access this field only through <tt>symbol</tt>'s interface
77 functions. For example, if <tt>symbol::destructor = NULL</tt>, a
83 /** Any \c \%printer declared specifically for this symbol
    [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);
  /external/zlib/src/contrib/puff/
puff.c 65 * - Catch missing end-of-block symbol error
201 * symbol[] are the symbol values in canonical order, where the number of
207 short *symbol; /* canonically ordered symbols */ member in struct:huffman
211 * Decode a code from the stream s using huffman table h. Return the symbol or
240 int index; /* index of first code of length len in symbol table */
246 if (code - count < first) /* if length len, return symbol */
247 return h->symbol[index + (code - first)];
268 int index; /* index of first code of length len in symbol table */
283 if (code - count < first) { /* if length len, return symbol */
341 int symbol; \/* current symbol when stepping through length[] *\/ local
439 int symbol; \/* decoded symbol *\/ local
544 int symbol; local
703 int symbol; \/* decoded value *\/ local
    [all...]
  /device/generic/goldfish/opengl/tests/gles_android_wrapper/
ApiInitializer.h 34 void *symbol = NULL; local
36 symbol = dlsym(m_dso, name);
38 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/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/linux-tools-perf/util/
annotate.h 6 #include "symbol.h"
68 struct symbol symbol; member in struct:sannotation
77 static inline struct annotation *symbol__annotation(struct symbol *sym)
79 struct sannotation *a = container_of(sym, struct sannotation, symbol);
83 int symbol__inc_addr_samples(struct symbol *sym, struct map *map,
85 int symbol__alloc_hist(struct symbol *sym, int nevents);
86 void symbol__annotate_zero_histograms(struct symbol *sym);
90 int symbol__annotate(struct symbol *sym, struct map *map, size_t privsize);
92 int symbol__annotate(struct symbol *sym, struct map *map, size_t privsize
    [all...]
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
Exynos_OSAL_Library.h 38 void *Exynos_OSAL_dlsym(void *handle, const char *symbol);
Exynos_OSAL_Library.c 41 void *Exynos_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...]
  /external/webp/src/utils/
huffman.c 72 int symbol; local
84 for (symbol = 0; symbol < code_lengths_size; ++symbol) {
85 if (code_lengths[symbol] > max_code_length) {
86 max_code_length = code_lengths[symbol];
92 for (symbol = 0; symbol < code_lengths_size; ++symbol) {
93 ++code_length_hist[code_lengths[symbol]];
146 int symbol; 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.15/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.
56 * Symbol Meaning
87 * Constants for specifying a number format symbol.
107 /** The currency symbol */
109 /** The international currency symbol */
113 /** The exponential symbol */
115 /** Per mill symbol - replaces kPermillSymbol */
119 /** Infinity symbol */
121 /** Nan symbol */
123 /** Significant digit symbol
    [all...]
  /system/core/libcorkscrew/
backtrace.c 235 static void init_backtrace_symbol(backtrace_symbol_t* symbol, uintptr_t pc) {
236 symbol->relative_pc = pc;
237 symbol->relative_symbol_addr = 0;
238 symbol->map_name = NULL;
239 symbol->symbol_name = NULL;
240 symbol->demangled_name = NULL;
248 backtrace_symbol_t* symbol = &backtrace_symbols[i]; local
249 init_backtrace_symbol(symbol, frame->absolute_pc);
253 symbol->relative_pc = frame->absolute_pc - mi->start;
255 symbol->map_name = strdup(mi->name)
274 backtrace_symbol_t* symbol = &backtrace_symbols[i]; local
296 backtrace_symbol_t* symbol = &backtrace_symbols[i]; local
    [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...]
  /external/qemu/distrib/sdl-1.2.15/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/src/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 523 milliseconds

1 2 3 4 5 6 7 8 91011>>