/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/chromium-trace/catapult/common/py_vulcanize/py_vulcanize/ |
D | strip_js_comments.py | 67 nesting = 1 72 nesting += 1 74 nesting -= 1 75 if nesting == 0:
|
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/ |
D | handler-utils.js | 56 var nesting = 0; 58 if (/\s|,/.test(string[n]) && nesting == 0) { 61 nesting++; 63 nesting--; 64 if (nesting == 0) 66 if (nesting <= 0)
|
/external/llvm-project/mlir/lib/Pass/ |
D | Pass.cpp | 83 OpPassManagerImpl(Identifier identifier, OpPassManager::Nesting nesting) in OpPassManagerImpl() 84 : name(identifier.str()), identifier(identifier), nesting(nesting) {} in OpPassManagerImpl() 85 OpPassManagerImpl(StringRef name, OpPassManager::Nesting nesting) in OpPassManagerImpl() 86 : name(name), nesting(nesting) {} in OpPassManagerImpl() 126 OpPassManager::Nesting nesting; member 139 OpPassManager nested(nestedName, nesting); in nest() 146 OpPassManager nested(nestedName, nesting); in nest() 157 if (nesting == OpPassManager::Nesting::Implicit) in addPass() 235 OpPassManager::OpPassManager(Identifier name, Nesting nesting) in OpPassManager() argument 236 : impl(new OpPassManagerImpl(name, nesting)) {} in OpPassManager() [all …]
|
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/ |
D | readability-function-cognitive-complexity.rst | 56 While by itself the nesting level not change the function's Cognitive Complexity 58 The following structures increase the nesting level (by `1`): 120 if(var) // +1, nesting level +1 130 if(var1) { // +1, nesting level +1 131 if(var2) // +2 (1 + current nesting level of 1), nesting level +1
|
D | readability-function-size.rst | 36 Flag compound statements which create next nesting level after 38 for macro-heavy code. The default is `-1` (ignore the nesting level).
|
/external/perfetto/test/stress_test/ |
D | stress_producer.cc | 63 uint32_t nesting, 155 FillPayload(*timings, seq, g_cfg->nesting(), test_event->set_payload()); in WorkerMain() 165 uint32_t nesting, in FillPayload() argument 179 payload->set_remaining_nesting_depth(nesting); in FillPayload() 185 if (nesting > 0) in FillPayload() 186 FillPayload(timings, seq, nesting - 1, payload->add_nested()); in FillPayload()
|
/external/llvm-project/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/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/grpc-grpc/tools/profiling/microbenchmarks/ |
D | bm_json.py | 144 nesting = 0 147 nesting += 1 150 nesting -= 1 153 if nesting == 0:
|
/external/rust/crates/grpcio-sys/grpc/tools/profiling/microbenchmarks/ |
D | bm_json.py | 144 nesting = 0 147 nesting += 1 150 nesting -= 1 153 if nesting == 0:
|
/external/python/cpython3/Tools/scripts/ |
D | abitype.py | 66 nesting = 1 67 while nesting: 69 if tokens[end][1] == '(': nesting+=1 70 if tokens[end][1] == ')': nesting-=1
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/ |
D | TestJacksonTypes.java | 136 private String _createNested(int nesting, String open, String middle, String close) in _createNested() argument 138 StringBuilder sb = new StringBuilder(2 * nesting); in _createNested() 139 for (int i = 0; i < nesting; ++i) { in _createNested() 143 for (int i = 0; i < nesting; ++i) { in _createNested()
|
/external/perfetto/test/stress_test/configs/ |
D | xxl_packets.cfg | 6 nesting: 2 8 # Each writer will write packets of 16 MB ((1 + nesting=1) x payload 8MB)
|
D | simple.cfg | 4 nesting: 8
|
D | heavy.cfg | 3 nesting: 10
|
/external/llvm-project/flang/runtime/ |
D | format-implementation.h | 40 int nesting{0}; in GetMaxParenthesisNesting() 69 ++nesting; in GetMaxParenthesisNesting() 70 maxNesting = std::max(nesting, maxNesting); in GetMaxParenthesisNesting() 73 nesting = std::max(nesting - 1, 0); in GetMaxParenthesisNesting() 82 } else if (nesting) { in GetMaxParenthesisNesting()
|
/external/llvm-project/mlir/include/mlir/Pass/ |
D | PassManager.h | 51 OpPassManager(Identifier name, Nesting nesting); 52 OpPassManager(StringRef name, Nesting nesting); 123 void setNesting(Nesting nesting); 163 PassManager(MLIRContext *ctx, Nesting nesting = Nesting::Explicit,
|
/external/mksh/src/ |
D | syn.c | 70 static struct nesting_state nesting; /* \n changed to ; */ variable 862 if (nesting.start_token) { in syntaxerr() 863 c = nesting.start_token; in syntaxerr() 864 source->errline = nesting.start_line; in syntaxerr() 902 *save = nesting; in nesting_push() 903 nesting.start_token = tok; in nesting_push() 904 nesting.start_line = source->line; in nesting_push() 910 nesting = *saved; in nesting_pop() 932 nesting.start_token = 0; in compile() 933 nesting.start_line = 0; in compile()
|
D | tree.c | 1000 static int nesting; in dumptree() local 1002 for (i = 0; i < nesting; ++i) in dumptree() 1004 ++nesting; in dumptree() 1020 for (j = 0; j < nesting; ++j) in dumptree() 1033 for (j = 0; j < nesting; ++j) in dumptree() 1073 for (j = 0; j < nesting; ++j) in dumptree() 1088 for (j = 0; j < nesting; ++j) in dumptree() 1103 for (j = 0; j < nesting; ++j) in dumptree() 1174 --nesting; in dumptree()
|
/external/angle/src/tests/compiler_tests/ |
D | ExpressionLimit_test.cpp | 176 static std::string GenerateShaderWithNestingInsideSwitch(int nesting) in GenerateShaderWithNestingInsideSwitch() argument 190 for (int i = 0; i < nesting; ++i) in GenerateShaderWithNestingInsideSwitch() 201 static std::string GenerateShaderWithNestingInsideGlobalInitializer(int nesting) in GenerateShaderWithNestingInsideGlobalInitializer() argument 208 for (int i = 0; i < nesting; ++i) in GenerateShaderWithNestingInsideGlobalInitializer()
|
/external/llvm-project/flang/lib/Parser/ |
D | preprocessor.cpp | 339 for (int nesting{0}; k < tokens; ++k) { in MacroReplacement() local 344 ++nesting; in MacroReplacement() 346 if (nesting == 0) { in MacroReplacement() 349 --nesting; in MacroReplacement() 350 } else if (ch == ',' && nesting == 0) { in MacroReplacement() 664 int nesting{0}; in SkipDisabledConditionalCode() local 674 ++nesting; in SkipDisabledConditionalCode() 676 if (nesting-- == 0) { in SkipDisabledConditionalCode() 679 } else if (isElseActive == IsElseActive::Yes && nesting == 0) { in SkipDisabledConditionalCode()
|
/external/deqp-deps/glslang/Test/ |
D | hlsl.mip.operator.frag | 11 // Test nesting involving .mips operators:
|
/external/angle/third_party/vulkan-deps/glslang/src/Test/ |
D | hlsl.mip.operator.frag | 11 // Test nesting involving .mips operators:
|
/external/angle/third_party/vulkan-deps/glslang/src/Test/baseResults/ |
D | cppDeepNest.frag.out | 2 ERROR: 0:66: '#if/#ifdef/#ifndef' : maximum nesting depth exceeded
|