Home
last modified time | relevance | path

Searched refs:scopes (Results 1 – 25 of 218) sorted by relevance

123456789

/external/v8/src/heap/
Dgc-tracer.cc81 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 …]
Dgc-tracer.h223 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/
Ddwarf_getscopes.c42 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 …]
Ddwarf_getscopes_die.c42 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()
Ddwarf_getscopevar.c86 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/
DSymbolTableLexer.m4 …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 …]
DSymbolTableParser.m4 …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/
Daddr2line.c328 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 …]
Dstack.c323 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/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
Dt022scopes.g7 /* 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/
Dt022scopes.g7 /* 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/tensorflow/tensorflow/contrib/framework/python/framework/
Dcheckpoint_utils.py262 scopes = ""
265 scopes = current_var_or_name[:current_var_or_name.rindex("/")]
270 scopes, tensor_name_in_ckpt))
275 if not scopes or var_name.startswith(scopes + "/"):
283 full_tensor_name = var_name[len(scopes):]
291 full_tensor_name, var_name[len(scopes) + 1:],
/external/libnl/lib/route/
Drtnl.c92 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/tensorflow/tensorflow/python/training/
Dcheckpoint_utils.py224 scopes = ""
227 scopes = current_var_or_name[:current_var_or_name.rindex("/")]
232 scopes, tensor_name_in_ckpt))
237 if not scopes or var_name.startswith(scopes + "/"):
245 full_tensor_name = var_name[len(scopes):]
256 full_tensor_name, var_name[len(scopes) + 1:],
/external/python/cpython2/Lib/compiler/
Dpycodegen.py259 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 …]
Dsymbols.py214 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/
Daddrscopes.c102 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()
Dfuncscopes.c121 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/
DTestLexer.h13 #pragma mark Rule return scopes start
14 #pragma mark Rule return scopes end
DTestLexerLexer.h13 #pragma mark Rule return scopes start
14 #pragma mark Rule return scopes end
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/lexertest-simple/
DTestLexer.h13 #pragma mark Rule return scopes start
14 #pragma mark Rule return scopes end
/external/python/cpython3/Python/
Dsymtable.c459 analyze_name(PySTEntryObject *ste, PyObject *scopes, PyObject *name, long flags, in analyze_name() argument
476 SET_SCOPE(scopes, name, GLOBAL_EXPLICIT); in analyze_name()
502 SET_SCOPE(scopes, name, FREE); in analyze_name()
507 SET_SCOPE(scopes, name, LOCAL); in analyze_name()
520 SET_SCOPE(scopes, name, FREE); in analyze_name()
528 SET_SCOPE(scopes, name, GLOBAL_IMPLICIT); in analyze_name()
533 SET_SCOPE(scopes, name, GLOBAL_IMPLICIT); in analyze_name()
548 analyze_cells(PyObject *scopes, PyObject *free) in analyze_cells() argument
557 while (PyDict_Next(scopes, &pos, &name, &v)) { in analyze_cells()
569 if (PyDict_SetItem(scopes, name, v_cell) < 0) in analyze_cells()
[all …]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/output1/
DTreeRewriteLexer.h14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/combined/
DCombinedLexer.h14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/
DTreeRewriteLexer.h14 #pragma mark Rule return scopes start
15 #pragma mark Rule return scopes end

123456789