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

1 2 3 4 5 6 7 8

  /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.
  /development/scripts/
stack 23 import symbol namespace
57 symbol.ARCH = value
  /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/third_party/angle/src/compiler/translator/
ForLoopUnroll.cpp 22 TIntermSymbol *symbol = node->getLeft()->getAsSymbolNode(); local
23 if (IsSampler(symbol->getBasicType()) && symbol->isArray() && !mLoopStack.empty())
47 TIntermSymbol *symbol = (*declSeq)[0]->getAsBinaryNode()->getLeft()->getAsSymbolNode(); local
48 if (symbol->getBasicType() == EbtInt)
63 void ForLoopUnrollMarker::visitSymbol(TIntermSymbol* symbol)
67 TIntermLoop *loop = mLoopStack.findLoop(symbol);
70 switch (symbol->getBasicType())
  /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
77 if symbol.ARCH == "arm64" or symbol.ARCH == "x86_64":
91 # #00 pc 001cf42e /data/data/com.my.project/lib/libmyproject.so (symbol)
108 # bea4170c 8018e4e9 /data/data/com.my.project/lib/libmyproject.so (symbol)
130 # It is faster to get symbol information with a single call rather than with
131 # separate calls for each line. Since symbol.SymbolInformation caches results,
132 # we can extract all the addresses that we will want symbol information for
133 # from the log and call symbol.SymbolInformation so that the results ar
    [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/translator/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/chromium_org/tools/memory_inspector/memory_inspector/core/
native_heap_unittest.py 24 from memory_inspector.core import symbol namespace
101 syms = symbol.Symbols()
102 syms.Add('/d/exe1', 0, symbol.Symbol('sym1', 'src1.c', 1)) # st1[0]
103 syms.Add('exe2', 4 + EXE_2_FILE_OFF, symbol.Symbol('sym3')) # st2[1]
106 self.assertEqual(st1[0].symbol.name, 'sym1')
107 self.assertEqual(st1[0].symbol.source_info[0].source_file_path, 'src1.c')
108 self.assertEqual(st1[0].symbol.source_info[0].line_number, 1)
110 # st1[1] should have no symbol info, because we didn't provide any above
    [all...]
native_heap.py 7 from memory_inspector.core import symbol namespace
36 assert(isinstance(symbols, symbol.Symbols))
stacktrace.py 7 from memory_inspector.core import symbol namespace
42 self.symbol = None
63 assert(isinstance(sym, symbol.Symbol))
64 assert(not self.symbol)
65 self.symbol = sym
82 if self.symbol:
83 return str(self.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/lldb/include/lldb/Host/
DynamicLibrary.h 33 void* symbol = Host::DynamicLibraryGetSymbol (m_handle, name, err); local
34 if (!symbol)
36 return (T)symbol;
  /art/compiler/sea_ir/
frontend.cc 49 std::string symbol = "dex_" + MangleForJni(PrettyMethod(method_idx, dex_file)); local
50 sea_ir::CodeGenData* llvm_data = ir_graph->CompileMethod(symbol,
59 *compiler.GetVerifiedMethodsData()->GetDexGcMap(mref), symbol);
  /bionic/tests/
stack_unwinding_test.cpp 43 const char* symbol = "<unknown>"; local
49 symbol = info.dli_sname;
55 fprintf(stderr, " #%02d %p %s%+d (%s)\n", *count_ptr, ip, symbol, offset, info.dli_fname ? info.dli_fname : "??");
  /build/tools/
adbs 25 import symbol namespace
  /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
53 return symbol.TranslateLibPath(library)
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:__anon21001
  /external/chromium_org/tools/memory_inspector/memory_inspector/classification/
native_heap_classifier_unittest.py 10 from memory_inspector.core import symbol namespace
114 mock_frame.SetSymbolInfo(symbol.Symbol(mock_btstr, mock_source_path))
129 mock_frame.SetSymbolInfo(symbol.Symbol(str(mock_addr), mock_source_path))
  /external/chromium_org/tools/memory_inspector/memory_inspector/data/
serialization.py 22 from memory_inspector.core import symbol namespace
30 if isinstance(obj, symbol.Symbols):
33 if isinstance(obj, (symbol.Symbol, symbol.SourceInfo)):
52 # Strip out the symbol information from stack frames. Symbols are stored
54 # share the same symbol db. Serializing the symbol information for each
85 symbols = symbol.Symbols()
87 sym = symbol.Symbol(sym_dict['name']
    [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/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 1306 milliseconds

1 2 3 4 5 6 7 8