Searched refs:nesting (Results 1 - 25 of 33) sorted by relevance

12

/external/chromium_org/v8/tools/
H A Djsmin.py61 self.nesting = 0
78 self.nesting += 1
82 self.nesting -= 1
85 if self.nesting == 0:
153 if self.nesting == 0:
254 if self.nesting == 0:
/external/v8/tools/
H A Djsmin.py61 self.nesting = 0
78 self.nesting += 1
82 self.nesting -= 1
85 if self.nesting == 0:
153 if self.nesting == 0:
254 if self.nesting == 0:
/external/v8/src/
H A Dzone-inl.h43 ASSERT(ZoneScope::nesting() > 0);
137 int ZoneScope::nesting() { function in class:v8::internal::ZoneScope
H A Druntime-profiler.cc272 int nesting = shared_code->allow_osr_at_loop_nesting_level(); local
273 if (nesting == 0) AttemptOnStackReplacement(function);
274 int new_nesting = Min(nesting + 1, Code::kMaxLoopNestingMarker);
H A Dzone.h207 // nesting and cleans up generated ASTs in the Zone when exiting the
223 inline static int nesting();
/external/qemu/distrib/sdl-1.2.15/src/timer/os2/
H A DSDL_systimer.c102 ULONG priority = 0, nesting; /* Shut down the warnings */ local
137 if (DosEnterMustComplete(&nesting))
157 rc = DosExitMustComplete(&nesting); /* Ignore errors */
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DLexer.java135 int nesting = 0;
149 isStartOfPat = mapPatternElemPos(nesting, isStartOfPat, isAttrName);
183 isStartOfPat = mapPatternElemPos(nesting, isStartOfPat, isAttrName);
219 isStartOfPat = mapPatternElemPos(nesting, isStartOfPat, isAttrName);
269 isStartOfPat = mapPatternElemPos(nesting, isStartOfPat, isAttrName);
285 isStartOfPat = mapPatternElemPos(nesting, isStartOfPat, isAttrName);
289 isStartOfPat = mapPatternElemPos(nesting, isStartOfPat, isAttrName);
293 if (0 == nesting)
308 nesting--;
312 nesting
396 mapPatternElemPos(int nesting, boolean isStart, boolean isAttrName) argument
[all...]
/external/doclava/res/assets/templates/
H A Dyaml_navtree.cs6 with nesting children on recursion.
/external/mksh/src/
H A Dsyn.c29 int start_token; /* token than began nesting (eg, FOR) */
30 int start_line; /* line nesting began on */
70 static struct nesting_state nesting; /* \n changed to ; */ variable in typeref:struct:nesting_state
845 if (nesting.start_token) {
846 c = nesting.start_token;
847 source->errline = nesting.start_line;
885 *save = nesting;
886 nesting.start_token = tok;
887 nesting.start_line = source->line;
893 nesting
[all...]
H A Dtree.c948 static int nesting; local
950 for (i = 0; i < nesting; ++i)
952 ++nesting;
968 for (j = 0; j < nesting; ++j)
981 for (j = 0; j < nesting; ++j)
1021 for (j = 0; j < nesting; ++j)
1036 for (j = 0; j < nesting; ++j)
1051 for (j = 0; j < nesting; ++j)
1122 --nesting;
/external/chromium_org/v8/src/
H A Druntime-profiler.cc296 int nesting = shared_code->allow_osr_at_loop_nesting_level(); local
297 if (nesting < Code::kMaxLoopNestingMarker) {
298 int new_nesting = nesting + 1;
/external/chromium-trace/trace-viewer/build/
H A Dparse_deps.py136 nesting = 1
141 nesting += 1
143 nesting -= 1
144 if nesting == 0:
/external/libffi/
H A DAndroid.mk35 # This include just keeps the nesting a bit saner.
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
H A Dnvc0_query.c46 int nesting; /* only used for occlusion queries */ member in struct:nvc0_query
207 q->nesting = nvc0->screen->num_occlusion_queries_active++;
208 if (q->nesting) {
456 if (unlikely(q->nesting))
/external/mesa3d/src/gallium/drivers/nvc0/
H A Dnvc0_query.c46 int nesting; /* only used for occlusion queries */ member in struct:nvc0_query
207 q->nesting = nvc0->screen->num_occlusion_queries_active++;
208 if (q->nesting) {
456 if (unlikely(q->nesting))
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DDateMath.cpp498 int nesting = 0; local
503 nesting++;
504 else if (ch == ')' && nesting > 0)
505 nesting--;
506 else if (nesting == 0)
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dprog_optimize.c741 GLuint i, rem = 0, nesting = 0; local
766 nesting++;
771 nesting--;
777 nesting == 0)
/external/libvpx/libvpx/examples/
H A Dgen_example_doxy.php15 /* This script converts markdown to doxygen htmlonly syntax, nesting the
/external/mesa3d/src/mesa/program/
H A Dprog_optimize.c741 GLuint i, rem = 0, nesting = 0; local
766 nesting++;
771 nesting--;
777 nesting == 0)
/external/e2fsprogs/lib/ext2fs/
H A Dtdb.c1256 otherwise we can end up with deadlock (plus lack of lock nesting
1326 int nesting; member in struct:tdb_transaction
1594 tdb->transaction->nesting++;
1595 TDB_LOG((tdb, TDB_DEBUG_TRACE, "tdb_transaction_start: nesting %d\n",
1596 tdb->transaction->nesting));
1697 if (tdb->transaction->nesting != 0) {
1699 tdb->transaction->nesting--;
1999 if (tdb->transaction->nesting != 0) {
2000 tdb->transaction->nesting--;
/external/emma/core/java12/com/vladium/emma/report/html/
H A DReportGenerator.java1344 final int nesting = NESTING [base.getMetadata ().getTypeID ()] [item.getMetadata ().getTypeID ()];
1345 if (nesting == 1)
1347 else if (nesting == -1)
/external/chromium_org/third_party/JSON/JSON-2.59/blib/lib/
H A DJSON.pm1404 Sets the maximum nesting level (default C<512>) accepted while encoding
1405 or decoding. If a higher nesting level is detected in JSON text or a Perl
1417 Note that nesting is implemented by recursion in C. The default value has
/external/chromium_org/third_party/JSON/JSON-2.59/lib/
H A DJSON.pm1404 Sets the maximum nesting level (default C<512>) accepted while encoding
1405 or decoding. If a higher nesting level is detected in JSON text or a Perl
1417 Note that nesting is implemented by recursion in C. The default value has
/external/chromium_org/third_party/JSON/out/lib/perl5/
H A DJSON.pm1404 Sets the maximum nesting level (default C<512>) accepted while encoding
1405 or decoding. If a higher nesting level is detected in JSON text or a Perl
1417 Note that nesting is implemented by recursion in C. The default value has
/external/chromium_org/third_party/JSON/JSON-2.59/blib/lib/JSON/
H A DbackportPP.pm362 encode_error("json text or perl structure exceeds maximum nesting level (max_depth set too low?)")
386 encode_error("json text or perl structure exceeds maximum nesting level (max_depth set too low?)")
896 decode_error('json text or perl structure exceeds maximum nesting level (max_depth set too low?)')
947 decode_error('json text or perl structure exceeds maximum nesting level (max_depth set too low?)')
1429 use constant INCR_M_JSON => 3; # outside anything, count nesting
1540 Carp::croak('json text or perl structure exceeds maximum nesting level (max_depth set too low?)');
2215 Sets the maximum nesting level (default C<512>) accepted while encoding
2216 or decoding. If a higher nesting level is detected in JSON text or a Perl

Completed in 740 milliseconds

12