HomeSort by relevance Sort by last modified time
    Searched defs:symbol (Results 1 - 25 of 267) 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.
  /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());
  /development/scripts/
stack 23 import symbol namespace
57 symbol.ARCH = value
72 print "Reading symbols from", symbol.SYMBOLS_DIR
stack_core.py 21 import symbol namespace
76 # #00 pc 001cf42e /data/data/com.my.project/lib/libmyproject.so (symbol)
83 # bea4170c 8018e4e9 /data/data/com.my.project/lib/libmyproject.so (symbol)
148 info = symbol.SymbolInformation(area, code_addr)
153 source_symbol = symbol.CallCppFilt(symbol_name)
177 info = symbol.SymbolInformation(area, value)
181 source_symbol = symbol.CallCppFilt(symbol_name)
  /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/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/chromium_org/third_party/android_platform/development/scripts/
stack_core.py 21 import symbol namespace
55 # TODO(cjhopman): it seems that symbol.SymbolInformation always fails to
82 # #00 pc 001cf42e /data/data/com.my.project/lib/libmyproject.so (symbol)
89 # bea4170c 8018e4e9 /data/data/com.my.project/lib/libmyproject.so (symbol)
106 # It is faster to get symbol information with a single call rather than with
107 # separate calls for each line. Since symbol.SymbolInformation caches results,
108 # we can extract all the addresses that we will want symbol information for
109 # from the log and call symbol.SymbolInformation so that the results are
128 symbol.SymbolInformationForSet(
129 symbol.TranslateLibPath(lib), code_addresses[lib], more_info
    [all...]
stack 26 import symbol namespace
96 raise SymbolDownloadException("failed to extract symbol files (%s)."
105 # This is a zip of Chrome symbols, so symbol.CHROME_SYMBOLS_DIR needs to be
107 symbol.CHROME_SYMBOLS_DIR = symdir
130 symbol.SYMBOLS_DIR = os.path.expanduser(value)
134 symbol.ARCH = value
136 symbol.CHROME_SYMBOLS_DIR = os.path.join(symbol.CHROME_SYMBOLS_DIR, value)
157 rootdir, symbol.SYMBOLS_DIR = UnzipSymbols(zip_arg)
159 print "Reading Android symbols from", symbol.SYMBOLS_DI
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/depgraph/
DependencyGraphOutput.cpp 28 void TDependencyGraphOutput::visitSymbol(TGraphSymbol* symbol)
31 mSink << symbol->getIntermSymbol()->getSymbol() << " (symbol id: "
32 << symbol->getIntermSymbol()->getId() << ")\n";
59 TGraphNode* symbol = *iter; local
62 symbol->traverse(this);
  /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/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/qemu/distrib/sdl-1.2.15/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);
  /external/strace/
ioctlsort.c 40 const char *symbol; member in struct:ioctlent
66 ioctlent[i].doth, ioctlent[i].symbol, ioctlent[i].code);
  /external/v8/test/cctest/
test-random.cc 86 Object* symbol = FACTORY->LookupAsciiSymbol("f")->ToObjectChecked(); local
88 context->global()->GetProperty(String::cast(symbol));
  /frameworks/compile/mclinker/lib/LD/
StubFactory.cpp 67 // build a name for stub symbol
76 LDSymbol* symbol = local
86 stub->setSymInfo(symbol->resolveInfo());
  /art/compiler/sea_ir/
frontend.cc 52 std::string symbol = "dex_" + MangleForJni(PrettyMethod(method_idx, dex_file)); local
53 sea_ir::CodeGenData* llvm_data = ir_graph->CompileMethod(symbol,
62 *verifier::MethodVerifier::GetDexGcMap(mref), symbol);
  /bionic/libdl/
dltest.c 41 {"symbol", required_argument, 0, 's'},
48 "specify a library path to look up symbol",
49 "specify symbol to look up",
56 "\t%s [-l <libname>] -s <symbol name>\n"
117 fprintf(stderr, "You must specify a symbol!\n");
124 void *handle, *symbol; local
132 printf("opening symbol [%s]\n", symname);
133 symbol = dlsym(handle, symname);
141 else printf("successfully opened symbol\n");
  /cts/tests/tests/view/src/android/view/cts/
View_IdsTest.java 42 TextView symbol = (TextView) activity.findViewById(R.id.symbolball); local
48 assertNotNull(symbol);
  /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/chromium_org/build/android/
asan_symbolize.py 16 # Uses symbol.py from third_party/android_platform, not python's.
20 import symbol namespace
52 return symbol.TranslateLibPath(library)
66 original_symbols_dir = symbol.SYMBOLS_DIR
70 info_dict = symbol.SymbolInformationForSet(libname,
symbolize.py 19 # Uses symbol.py from third_party/android_platform, not python's.
23 import symbol namespace
47 # 1) Have Python load the libraries and do symbol lookups instead of
52 # the symbol lookups.
58 sym = symbol.SymbolInformation(lib, addr, False)[0][0]
  /external/chromium_org/third_party/mesa/src/src/gallium/targets/egl-static/
egl_st.c 101 const char symbol[] = "st_api_create_OpenGL"; local
104 stapi = load_gl(module, symbol);
113 stapi = load_gl(module, symbol);
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
parser.h 24 Symbol *symbol; member in union:__anon17286
  /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/lzma/Java/SevenZip/Compression/RangeCoder/
BitTreeDecoder.java 30 int symbol = 0; local
36 symbol |= (bit << bitIndex);
38 return symbol;
45 int symbol = 0; local
51 symbol |= (bit << bitIndex);
53 return symbol;

Completed in 2045 milliseconds

1 2 3 4 5 6 7 8 91011