/external/v8/src/heap/ |
D | gc-tracer.cc | 81 scopes[i] = 0; in Event() 190 current_.scopes[i] = 0; in Start() 268 current_.scopes[i] = incremental_marking_scopes_[i].duration; in Stop() 408 current_.scopes[Scope::MC_INCREMENTAL], in Print() 491 current_.reduce_memory, current_.scopes[Scope::SCAVENGER_SCAVENGE], in PrintNVP() 492 current_.scopes[Scope::SCAVENGER_EVACUATE], in PrintNVP() 493 current_.scopes[Scope::SCAVENGER_OLD_TO_NEW_POINTERS], in PrintNVP() 494 current_.scopes[Scope::SCAVENGER_WEAK], in PrintNVP() 495 current_.scopes[Scope::SCAVENGER_ROOTS], in PrintNVP() 496 current_.scopes[Scope::SCAVENGER_CODE_FLUSH_CANDIDATES], in PrintNVP() [all …]
|
D | gc-tracer.h | 223 double scopes[Scope::NUMBER_OF_SCOPES]; variable 338 current_.scopes[scope] += duration; in AddScopeSample() 377 return current_.scopes[Scope::EXTERNAL_WEAK_GLOBAL_HANDLES] + in TotalExternalTime() 378 current_.scopes[Scope::EXTERNAL_EPILOGUE] + in TotalExternalTime() 379 current_.scopes[Scope::EXTERNAL_PROLOGUE] + in TotalExternalTime() 380 current_.scopes[Scope::MC_INCREMENTAL_EXTERNAL_EPILOGUE] + in TotalExternalTime() 381 current_.scopes[Scope::MC_INCREMENTAL_EXTERNAL_PROLOGUE]; in TotalExternalTime()
|
/external/elfutils/libdw/ |
D | dwarf_getscopes.c | 42 Dwarf_Die *scopes; member 53 if (a->scopes != NULL) in pc_match() 98 Dwarf_Die *scopes = realloc (a->scopes, nscopes * sizeof scopes[0]); in origin_match() local 99 if (scopes == NULL) in origin_match() 101 free (a->scopes); in origin_match() 106 a->scopes = scopes; in origin_match() 110 scopes[a->nscopes++] = die->die; in origin_match() 126 if (a->scopes == NULL) in pc_record() 131 a->scopes = malloc (a->nscopes * sizeof a->scopes[0]); in pc_record() 132 if (a->scopes == NULL) in pc_record() [all …]
|
D | dwarf_getscopes_die.c | 42 Dwarf_Die *scopes = malloc (depth * sizeof scopes[0]); in scope_visitor() local 43 if (scopes == NULL) in scope_visitor() 52 scopes[i++] = die->die; in scope_visitor() 58 *(void **) arg = scopes; in scope_visitor() 63 dwarf_getscopes_die (Dwarf_Die *die, Dwarf_Die **scopes) in dwarf_getscopes_die() argument 72 *scopes = info; in dwarf_getscopes_die()
|
D | dwarf_getscopevar.c | 86 dwarf_getscopevar (Dwarf_Die *scopes, int nscopes, in dwarf_getscopevar() argument 98 if (INTUSE(dwarf_haschildren) (&scopes[out])) in dwarf_getscopevar() 100 if (INTUSE(dwarf_child) (&scopes[out], result) != 0) in dwarf_getscopevar() 134 || getfiles (&scopes[out], &files) != 0) in dwarf_getscopevar()
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/output1/ |
D | SymbolTableLexer.m | 4 …the grammar source file : /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g 40 // $ANTLR 3.2 Aug 19, 2010 17:16:04 /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/Sym… 151 #pragma mark Rule return scopes start 152 #pragma mark Rule return scopes end 158 …r setGrammarFileName:@"/usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g"]; 199 …// /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g:7:6: ( 'method' ) // … 200 … // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g:7:8: 'method' // alt 229 …// /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g:8:6: ( '(' ) // ruleB… 230 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g:8:8: '(' // alt 259 …// /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g:9:6: ( ')' ) // ruleB… [all …]
|
D | SymbolTableParser.m | 4 …the grammar source file : /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g 40 // $ANTLR 3.2 Aug 19, 2010 17:16:04 /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/Sym… 163 #pragma mark Rule return scopes start 227 …* /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g:25:1: prog : globals (… 234 …// /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g:25:5: ( globals ( met… 235 …// /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g:25:9: globals ( metho… 252 … // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g:25:18: method // alt 285 …* /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g:28:1: globals : ( decl… 300 …// /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g:34:5: ( ( decl )* ) /… 301 …// /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/scopes/SymbolTable.g:34:9: ( decl )* // alt [all …]
|
/external/elfutils/src/ |
D | addr2line.c | 328 Dwarf_Die *scopes; in print_dwarf_function() local 329 int nscopes = dwarf_getscopes (cudie, addr - bias, &scopes); in print_dwarf_function() 335 switch (dwarf_tag (&scopes[i])) in print_dwarf_function() 339 const char *name = get_diename (&scopes[i]); in print_dwarf_function() 349 const char *name = get_diename (&scopes[i]); in print_dwarf_function() 369 if (dwarf_formudata (dwarf_attr (&scopes[i], in print_dwarf_function() 376 if (dwarf_formudata (dwarf_attr (&scopes[i], in print_dwarf_function() 380 if (dwarf_formudata (dwarf_attr (&scopes[i], in print_dwarf_function() 421 free (scopes); in print_dwarf_function() 740 Dwarf_Die *scopes = NULL; in handle_address() local [all …]
|
D | stack.c | 323 Dwarf_Die *scopes = NULL; in print_inline_frames() local 324 int nscopes = dwarf_getscopes_die (die, &scopes); in print_inline_frames() 335 Dwarf_Die *last_scope = &scopes[0]; in print_inline_frames() 338 Dwarf_Die *scope = &scopes[i]; in print_inline_frames() 356 free (scopes); in print_inline_frames() 385 Dwarf_Die *scopes = NULL; in print_frames() local 388 &scopes); in print_frames() 393 Dwarf_Die *scope = &scopes[i]; in print_frames() 406 free (scopes); in print_frames()
|
/external/libnl/lib/route/ |
D | rtnl.c | 92 static const struct trans_tbl scopes[] = { variable 102 return __type2str(scope, buf, size, scopes, ARRAY_SIZE(scopes)); in rtnl_scope2str() 107 return __str2type(name, scopes, ARRAY_SIZE(scopes)); in rtnl_str2scope()
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
D | t022scopes.g | 7 /* global scopes */ 19 /* rule scopes, from the book, final beta, p.147 */ 36 /* rule scopes, from the book, final beta, p.148 */ 62 /* recursive rule scopes, from the book, final beta, p.150 */ 96 /* recursive rule scopes, access bottom-most scope */ 110 /* recursive rule scopes, access with negative index */
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
D | t022scopes.g | 7 /* global scopes */ 19 /* rule scopes, from the book, final beta, p.147 */ 36 /* rule scopes, from the book, final beta, p.148 */ 61 /* recursive rule scopes, from the book, final beta, p.150 */ 90 /* recursive rule scopes, access bottom-most scope */ 104 /* recursive rule scopes, access with negative index */
|
/external/python/cpython2/Lib/compiler/ |
D | pycodegen.py | 259 return s.scopes 347 self.scopes = self.parseSymbols(node) 348 self.scope = self.scopes[node] 361 self.scopes = self.parseSymbols(node) 362 self.scope = self.scopes[node] 383 gen = self.FunctionGen(node, self.scopes, isLambda, 395 gen = self.ClassGen(node, self.scopes, 673 gen = GenExprCodeGenerator(node, self.scopes, self.class_name, 1298 scopes = None variable in ModuleCodeGenerator 1312 scopes = None variable in ExpressionCodeGenerator [all …]
|
D | symbols.py | 214 self.scopes = {} 220 scope = self.module = self.scopes[node] = ModuleScope() 234 self.scopes[node] = scope 245 self.scopes[node] = scope 276 self.scopes[node] = scope 302 self.scopes[node] = scope 435 names2 = s.scopes[tree].get_names() 445 d.update(s.scopes) 447 scopes = d.values() variable 452 l = [sc for sc in scopes
|
/external/elfutils/tests/ |
D | addrscopes.c | 102 Dwarf_Die *scopes; in handle_address() local 103 int n = dwarf_getscopes (cudie, pc - cubias, &scopes); in handle_address() 114 Dwarf_Die *const die = &scopes[n]; in handle_address() 137 free (scopes); in handle_address()
|
D | funcscopes.c | 121 Dwarf_Die *scopes; in handle_function() local 122 int n = dwarf_getscopes_die (funcdie, &scopes); in handle_function() 142 Dwarf_Die *const die = &scopes[n]; in handle_function() 165 free (scopes); in handle_function()
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/lexertest-simple/output1/ |
D | TestLexer.h | 13 #pragma mark Rule return scopes start 14 #pragma mark Rule return scopes end
|
D | 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/lexertest-simple/ |
D | TestLexer.h | 13 #pragma mark Rule return scopes start 14 #pragma mark Rule return scopes end
|
D | 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/treerewrite/output1/ |
D | 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/combined/ |
D | CombinedLexer.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/ |
D | 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/hoistedPredicates/ |
D | 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/treeparser/ |
D | LangLexer.h | 14 #pragma mark Rule return scopes start 15 #pragma mark Rule return scopes end
|