/external/apache-xml/src/main/java/org/apache/xpath/compiler/ |
D | Lexer.java | 135 int nesting = 0; in tokenize() local 149 isStartOfPat = mapPatternElemPos(nesting, isStartOfPat, isAttrName); in tokenize() 183 isStartOfPat = mapPatternElemPos(nesting, isStartOfPat, isAttrName); in tokenize() 219 isStartOfPat = mapPatternElemPos(nesting, isStartOfPat, isAttrName); in tokenize() 269 isStartOfPat = mapPatternElemPos(nesting, isStartOfPat, isAttrName); in tokenize() 285 isStartOfPat = mapPatternElemPos(nesting, isStartOfPat, isAttrName); in tokenize() 289 isStartOfPat = mapPatternElemPos(nesting, isStartOfPat, isAttrName); in tokenize() 293 if (0 == nesting) in tokenize() 308 nesting--; in tokenize() 312 nesting++; in tokenize() [all …]
|
/external/v8/tools/ |
D | jsmin.py | 61 self.nesting = 0 78 self.nesting += 1 82 self.nesting -= 1 85 if self.nesting == 0: 159 if self.nesting == 0: 269 if self.nesting == 0:
|
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/ |
D | loop-strength-reduce8.ll | 27 …%struct.nesting = type { %struct.nesting*, %struct.nesting*, i32, %struct.rtx_def*, { { i32, %stru… 32 …tmt_status = type { %struct.nesting*, %struct.nesting*, %struct.nesting*, %struct.nesting*, %struc…
|
/external/llvm/test/CodeGen/X86/ |
D | loop-strength-reduce8.ll | 30 …%struct.nesting = type { %struct.nesting*, %struct.nesting*, i32, %struct.rtx_def*, { { i32, %stru… 35 …tmt_status = type { %struct.nesting*, %struct.nesting*, %struct.nesting*, %struct.nesting*, %struc…
|
/external/mksh/src/ |
D | syn.c | 69 static struct nesting_state nesting; /* \n changed to ; */ variable 864 if (nesting.start_token) { in syntaxerr() 865 c = nesting.start_token; in syntaxerr() 866 source->errline = nesting.start_line; in syntaxerr() 904 *save = nesting; in nesting_push() 905 nesting.start_token = tok; in nesting_push() 906 nesting.start_line = source->line; in nesting_push() 912 nesting = *saved; in nesting_pop() 934 nesting.start_token = 0; in compile() 935 nesting.start_line = 0; in compile()
|
D | tree.c | 999 static int nesting; in dumptree() local 1001 for (i = 0; i < nesting; ++i) in dumptree() 1003 ++nesting; in dumptree() 1019 for (j = 0; j < nesting; ++j) in dumptree() 1032 for (j = 0; j < nesting; ++j) in dumptree() 1072 for (j = 0; j < nesting; ++j) in dumptree() 1087 for (j = 0; j < nesting; ++j) in dumptree() 1102 for (j = 0; j < nesting; ++j) in dumptree() 1173 --nesting; in dumptree()
|
/external/mesa3d/src/gallium/drivers/nouveau/nvc0/ |
D | nvc0_query_hw.h | 32 int nesting; /* only used for occlusion queries */ member
|
/external/swiftshader/third_party/LLVM/test/Transforms/LoopSimplify/ |
D | 2003-04-25-AssertFail.ll | 2 ; Basically, it was incorrectly calculating the loop nesting information.
|
/external/mesa3d/src/gallium/drivers/nouveau/nv50/ |
D | nv50_query_hw.h | 32 int nesting; /* only used for occlusion queries */ member
|
D | nv50_query_hw.c | 160 hq->nesting = nv50->screen->num_occlusion_queries_active++; in nv50_hw_begin_query() 161 if (hq->nesting) { in nv50_hw_begin_query()
|
D | nv50_query.c | 101 if (unlikely(hq->nesting)) in nv50_render_condition()
|
/external/llvm/test/Transforms/LoopSimplify/ |
D | 2003-04-25-AssertFail.ll | 2 ; Basically, it was incorrectly calculating the loop nesting information.
|
/external/ltp/runtest/ |
D | quickhit | 296 # 3. Receive ELOOP error when nesting of symbolic links exceed maximum 317 # 3. Receive ELOOP error when nesting of symbolic links exceed maximum 323 # 3. Receive ELOOP error when nesting of symbolic links exceed maximum 333 # 3. Receive ELOOP error when nesting of symbolic links exceed maximum 339 # 3. Receive ELOOP error when nesting of symbolic links exceed maximum 353 # 5. Receive ELOOP error when nesting of symbolic links exceed maximum
|
/external/swiftshader/third_party/LLVM/test/Other/ |
D | 2003-02-19-LoopInfoNestingBug.ll | 1 ; LoopInfo is incorrectly calculating loop nesting! In this case it doesn't
|
/external/llvm/test/Other/ |
D | 2003-02-19-LoopInfoNestingBug.ll | 1 ; LoopInfo is incorrectly calculating loop nesting! In this case it doesn't
|
/external/libchrome/base/message_loop/ |
D | message_pump_mac.mm | 428 // (relative to the current level) ran since the last time nesting-deferred 430 // nesting-deferred work in case any work was deferred because nested work 451 // nesting-deferred work may have accumulated. Schedule it for processing 465 // processing sources. If the last iteration of the loop at this nesting 466 // level did not sleep or exit, nesting-deferred work may have accumulated 467 // if a nested loop ran. Schedule nesting-deferred work for processing if 500 // to determine whether to schedule nesting-deferred work. It expects 501 // the nesting level to be set to the depth of the loop that is going
|
/external/ply/ply/ply/ |
D | cpp.py | 346 nesting = 1 366 nesting += 1 368 nesting -= 1 369 if nesting == 0: 375 elif t.value == ',' and nesting == 1:
|
/external/doclava/res/assets/templates/ |
D | yaml_navtree.cs | 6 with nesting children on recursion.
|
/external/autotest/contrib/ |
D | coverage.py | 310 self.nesting = 0 440 if self.nesting == 0: #pragma: no cover 444 self.nesting += 1 447 self.nesting -= 1 448 if self.nesting == 0: #pragma: no cover
|
/external/python/cpython2/Lib/test/ |
D | test_repr.py | 16 def nestedTuple(nesting): argument 18 for i in range(nesting):
|
/external/googletest/googlemock/include/gmock/ |
D | gmock-generated-nice-strict.h.pump | 65 // In particular, nesting NiceMock, NaggyMock, and StrictMock is NOT 132 // user errors of nesting nice and strict mocks. They do NOT catch
|
/external/v8/testing/gmock/include/gmock/ |
D | gmock-generated-nice-strict.h.pump | 65 // In particular, nesting NiceMock, NaggyMock, and StrictMock is NOT 132 // user errors of nesting nice and strict mocks. They do NOT catch
|
/external/google-breakpad/src/testing/include/gmock/ |
D | gmock-generated-nice-strict.h.pump | 56 // particular, nesting NiceMock and StrictMock is NOT supported. 144 // user errors of nesting nice and strict mocks. They do NOT catch
|
/external/protobuf/js/ |
D | data.proto | 47 // new data, does not require nesting
|
/external/mesa3d/src/mesa/program/ |
D | prog_optimize.c | 711 GLuint i, rem = 0, nesting = 0; in _mesa_remove_extra_moves() local 736 nesting++; in _mesa_remove_extra_moves() 741 nesting--; in _mesa_remove_extra_moves() 747 nesting == 0) in _mesa_remove_extra_moves()
|