HomeSort by relevance Sort by last modified time
    Searched refs:symbol (Results 1 - 25 of 832) 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
202 * symbol[] are the symbol values in canonical order, where the number of
208 short *symbol; /* canonically ordered symbols */ member in struct:huffman
212 * Decode a code from the stream s using huffman table h. Return the symbol or
241 int index; /* index of first code of length len in symbol table */
247 if (code - count < first) /* if length len, return symbol */
248 return h->symbol[index + (code - first)];
269 int index; /* index of first code of length len in symbol table */
284 if (code - count < first) { /* if length len, return symbol */
342 int symbol; \/* current symbol when stepping through length[] *\/ local
440 int symbol; \/* decoded symbol *\/ local
545 int symbol; local
704 int symbol; \/* decoded value *\/ local
    [all...]
  /external/lzma/Java/SevenZip/Compression/RangeCoder/
BitTreeEncoder.java 20 public void Encode(Encoder rangeEncoder, int symbol) throws IOException
26 int bit = (symbol >>> bitIndex) & 1;
32 public void ReverseEncode(Encoder rangeEncoder, int symbol) throws IOException
37 int bit = symbol & 1;
40 symbol >>= 1;
44 public int GetPrice(int symbol)
51 int bit = (symbol >>> bitIndex) & 1;
58 public int ReverseGetPrice(int symbol)
64 int bit = symbol & 1;
65 symbol >>>= 1;
    [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/chromium_org/native_client_sdk/src/libraries/xray/
demangle.c 17 const char* XRayDemangle(char* demangle, size_t size, const char* symbol) {
20 __cxa_demangle(symbol, demangle, &size, &stat);
24 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());
  /external/chromium_org/third_party/codesighs/
nm_wrap_osx.pl 44 # A wrapper for nm that produces output listing symbol size.
62 my($symbol) = $4;
66 if ('trampoline_size' ne $symbol) {
67 warn "Encountered unknown absolutely addressed symbol '$symbol' in $module";
75 if ($symbol =~ /^(_[_Z].+)/)
78 $symbol = `c++filt '$1'`;
79 chomp($symbol);
80 # warn "Unmangling again to $symbol\n";
94 $prev_symbol = $symbol;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
codeop.py 39 compile_command(source, filename, symbol):
68 def _maybe_compile(compiler, source, filename, symbol):
75 if symbol != "eval":
82 code = compiler(source, filename, symbol)
87 code1 = compiler(source + "\n", filename, symbol)
92 code2 = compiler(source + "\n\n", filename, symbol)
101 def _compile(source, filename, symbol):
102 return compile(source, filename, symbol, PyCF_DONT_IMPLY_DEDENT)
104 def compile_command(source, filename="<input>", symbol="single"):
112 symbol -- optional grammar start symbol; "single" (default) or "eval
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
codeop.py 39 compile_command(source, filename, symbol):
68 def _maybe_compile(compiler, source, filename, symbol):
75 if symbol != "eval":
82 code = compiler(source, filename, symbol)
87 code1 = compiler(source + "\n", filename, symbol)
92 code2 = compiler(source + "\n\n", filename, symbol)
101 def _compile(source, filename, symbol):
102 return compile(source, filename, symbol, PyCF_DONT_IMPLY_DEDENT)
104 def compile_command(source, filename="<input>", symbol="single"):
112 symbol -- optional grammar start symbol; "single" (default) or "eval
    [all...]
  /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/chromium_org/third_party/mesa/src/src/mesa/main/
enums.h 50 extern int _mesa_lookup_enum_by_name( const char *symbol );
  /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...]
  /external/mesa3d/src/mesa/main/
enums.h 50 extern int _mesa_lookup_enum_by_name( const char *symbol );
  /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/lzma/CS/7zip/Compress/RangeCoder/
RangeCoderBitTree.cs 22 public void Encode(Encoder rangeEncoder, UInt32 symbol)
28 UInt32 bit = (symbol >> bitIndex) & 1;
34 public void ReverseEncode(Encoder rangeEncoder, UInt32 symbol)
39 UInt32 bit = symbol & 1;
42 symbol >>= 1;
46 public UInt32 GetPrice(UInt32 symbol)
53 UInt32 bit = (symbol >> bitIndex) & 1;
60 public UInt32 ReverseGetPrice(UInt32 symbol)
66 UInt32 bit = symbol & 1;
67 symbol >>= 1;
    [all...]
  /external/chromium_org/third_party/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)
  /external/chromium_org/third_party/libwebp/utils/
huffman.c 74 int symbol; local
86 for (symbol = 0; symbol < code_lengths_size; ++symbol) {
87 if (code_lengths[symbol] > max_code_length) {
88 max_code_length = code_lengths[symbol];
94 for (symbol = 0; symbol < code_lengths_size; ++symbol) {
95 ++code_length_hist[code_lengths[symbol]];
148 int symbol; local
    [all...]
  /external/webp/src/utils/
huffman.c 74 int symbol; local
86 for (symbol = 0; symbol < code_lengths_size; ++symbol) {
87 if (code_lengths[symbol] > max_code_length) {
88 max_code_length = code_lengths[symbol];
94 for (symbol = 0; symbol < code_lengths_size; ++symbol) {
95 ++code_length_hist[code_lengths[symbol]];
148 int symbol; local
    [all...]
  /libcore/luni/src/main/java/libcore/reflect/
GenericSignatureParser.java 86 char symbol; // 0: eof; else valid term symbol or first char of identifier. field in class:GenericSignatureParser
237 while (symbol > 0) {
249 if (symbol == '<') {
252 while ((symbol != '>') && (symbol > 0)) {
270 if (symbol == 'L' || symbol == '[' || symbol == 'T') {
274 while (symbol == ':')
    [all...]

Completed in 829 milliseconds

1 2 3 4 5 6 7 8 91011>>