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

1 2 3 4

  /external/elfutils/libdw/
dwarf_getscopes_die.c 63 Dwarf_Die *scopes = malloc (depth * sizeof scopes[0]);
64 if (scopes == NULL)
73 scopes[i++] = die->die;
79 *(void **) arg = scopes;
84 dwarf_getscopes_die (Dwarf_Die *die, Dwarf_Die **scopes)
93 *scopes = info;
dwarf_getscopes.c 63 Dwarf_Die *scopes; member in struct:args
74 if (a->scopes != NULL)
115 function of which A->scopes[A->nscopes - 1] is a concrete instance.
119 Dwarf_Die *scopes = realloc (a->scopes, nscopes * sizeof scopes[0]); local
120 if (scopes == NULL)
122 free (a->scopes);
127 a->scopes = scopes;
    [all...]
dwarf_getscopevar.c 1 /* Find a named variable or parameter within given scopes.
76 /* Search SCOPES[0..NSCOPES-1] for a variable called NAME.
77 Ignore the first SKIP_SHADOWS scopes that match the name.
83 and return N where SCOPES[N] is the scope defining the variable.
87 dwarf_getscopevar (Dwarf_Die *scopes, int nscopes,
115 if (INTUSE(dwarf_haschildren) (&scopes[out]))
117 if (INTUSE(dwarf_child) (&scopes[out], result) != 0)
153 || getfiles (&scopes[out], &files) != 0)
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/combined/
CombinedLexer.h 14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
CombinedParser.h 18 #pragma mark Dynamic Global Scopes
19 #pragma mark Dynamic Rule Scopes
20 #pragma mark Rule Return Scopes start
21 #pragma mark Rule return scopes end
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/lexertest-simple/
TestLexer.h 13 #pragma mark Rule return scopes start
14 #pragma mark Rule return scopes end
TestLexerLexer.h 14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/lexertest-simple/output1/
TestLexer.h 13 #pragma mark Rule return scopes start
14 #pragma mark Rule return scopes end
TestLexerLexer.h 13 #pragma mark Rule return scopes start
14 #pragma mark Rule return scopes end
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/output1/
TreeRewriteLexer.h 14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/detector/api/
Scope.java 89 * @param scopes the scope set to check
92 public static boolean checkSingleFile(@NonNull EnumSet<Scope> scopes) {
93 return scopes.size() == 1 &&
94 (scopes.contains(JAVA_FILE)
95 || scopes.contains(CLASS_FILE)
96 || scopes.contains(RESOURCE_FILE)
97 || scopes.contains(PROGUARD_FILE)
98 || scopes.contains(MANIFEST));
118 /** All scopes: running lint on a project will check these scopes */
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
TLexer.h 14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/
TreeRewriteLexer.h 14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
SymbolTableLexer.h 14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
LangLexer.h 14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/
SimpleCLexer.h 14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/output1/
SymbolTableLexer.h 1 // $ANTLR 3.2 Aug 19, 2010 17:16:04 /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g 2010-08-19 17:16:47
21 #pragma mark Rule return scopes start
22 #pragma mark Rule return scopes end
SymbolTableParser.h 1 // $ANTLR 3.2 Aug 19, 2010 17:16:04 /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g 2010-08-19 17:16:47
25 #pragma mark Dynamic Global Scopes
44 #pragma mark Dynamic Rule Scopes
45 #pragma mark Rule Return Scopes start
46 #pragma mark Rule return scopes end
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCLexer.h 14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
  /external/v8/test/mjsunit/bugs/harmony/
debug-blockscopes.js 80 // Check that the scope chain contains the expected types of scopes.
81 function CheckScopeChain(scopes, exec_state) {
82 assertEquals(scopes.length, exec_state.frame().scopeCount());
83 for (var i = 0; i < scopes.length; i++) {
86 assertEquals(scopes[i], scope.scopeType());
89 if (scopes[i] == debug.ScopeType.Global) {
99 // Send a scopes request and check the result.
101 var request_json = '{"seq":0,"type":"request","command":"scopes"}';
104 assertEquals(scopes.length, response.body.scopes.length)
    [all...]
  /external/v8/test/mjsunit/harmony/
debug-blockscopes.js 83 // Check that the scope chain contains the expected types of scopes.
84 function CheckScopeChain(scopes, exec_state) {
85 assertEquals(scopes.length, exec_state.frame().scopeCount());
86 for (var i = 0; i < scopes.length; i++) {
89 assertEquals(scopes[i], scope.scopeType());
92 if (scopes[i] == debug.ScopeType.Global) {
102 // Send a scopes request and check the result.
104 var request_json = '{"seq":0,"type":"request","command":"scopes"}';
107 assertEquals(scopes.length, response.body.scopes.length)
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/
Fuzzy.h 14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
FuzzyLexer.h 22 #pragma mark Rule return scopes start
23 #pragma mark Rule return scopes end
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/output1/
FuzzyLexer.h 22 #pragma mark Rule return scopes start
23 #pragma mark Rule return scopes end
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCLexer.h 22 #pragma mark Rule return scopes start
23 #pragma mark Rule return scopes end

Completed in 333 milliseconds

1 2 3 4