Home
last modified time | relevance | path

Searched refs:recursion (Results 1 – 25 of 625) sorted by relevance

12345678910>>...25

/aosp_15_r20/external/pigweed/pw_tokenizer/py/pw_tokenizer/
H A Ddetokenize.py280 recursion: int = DEFAULT_RECURSION,
298 if recursion > 0:
299 recursive_detokenize = self._detokenize_nested_callback(recursion)
312 recursion: int = DEFAULT_RECURSION,
323 return self._detokenize_nested_callback(recursion)(data)
329 recursion: int = DEFAULT_RECURSION,
332 return self.detokenize_text(data, recursion)
338 recursion: int = DEFAULT_RECURSION,
341 output.write(self._detokenize_nested(data, recursion))
348 recursion: int = DEFAULT_RECURSION,
[all …]
/aosp_15_r20/external/pcre/testdata/
H A Dtestoutput15215 Failed: error -52: nested recursion at the same subject position
219 Failed: error -52: nested recursion at the same subject position
223 Failed: error -52: nested recursion at the same subject position
376 # These tests provoke recursion loops, which give a different error message
384 Failed: error -52: nested recursion at the same subject position
394 Failed: error -52: nested recursion at the same subject position
404 Failed: error -52: nested recursion at the same subject position
414 Failed: error -52: nested recursion at the same subject position
424 Failed: error -52: nested recursion at the same subject position
428 Failed: error -52: nested recursion at the same subject position
[all …]
/aosp_15_r20/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl_mutex.cc154 CHECK_EQ(s->recursion, 0); in MutexLock()
158 CHECK_GT(s->recursion, 0); in MutexLock()
163 if (s->recursion == 0) { in MutexLock()
170 s->recursion += rec; in MutexLock()
172 if (common_flags()->detect_deadlocks && (s->recursion - rec) == 0) { in MutexLock()
198 if (kCppMode && (s->recursion == 0 || s->owner_tid != thr->tid)) { in MutexUnlock()
204 rec = all ? s->recursion : 1; in MutexUnlock()
205 s->recursion -= rec; in MutexUnlock()
206 if (s->recursion == 0) { in MutexUnlock()
215 if (common_flags()->detect_deadlocks && s->recursion == 0 && in MutexUnlock()
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/testing/
Dsub_test.go196 === RUN chatty with recursion
197 === RUN chatty with recursion/#00
198 === RUN chatty with recursion/#00/#00
199 --- PASS: chatty with recursion (N.NNs)
200 --- PASS: chatty with recursion/#00 (N.NNs)
201 --- PASS: chatty with recursion/#00/#00 (N.NNs)`,
213 ^V=== RUN chatty with recursion and json
214 ^V=== RUN chatty with recursion and json/#00
215 ^V=== RUN chatty with recursion and json/#00/#00
216 ^V--- PASS: chatty with recursion and json/#00/#00 (N.NNs)
[all …]
/aosp_15_r20/prebuilts/cmake/linux-x86/share/cmake-3.22/Help/variable/
DCMAKE_MAXIMUM_RECURSION_DEPTH.rst6 Maximum recursion depth for CMake scripts. It is intended to be set on the
8 ``CMakeLists.txt`` by projects that require a large recursion depth. Projects
20 used. If the recursion limit is reached, the script terminates immediately with
23 Calling any of the following commands increases the recursion depth:
32 :command:`function` and :command:`macro` themselves don't increase recursion
/aosp_15_r20/external/toolchain-utils/binary_search_tool/full_bisect_test/
H A Dbad-output-3.txt1 pre-order traversal, with recursion:
4 pre-order traversal, without recursion:
7 in-order traversal, with recursion:
10 in-order traversal, without recursion:
H A Dbad-output-2.txt1 pre-order traversal, with recursion:
4 pre-order traversal, without recursion:
7 in-order traversal, with recursion:
10 in-order traversal, without recursion:
H A Dgood-output.txt1 pre-order traversal, with recursion:
4 pre-order traversal, without recursion:
7 in-order traversal, with recursion:
10 in-order traversal, without recursion:
H A Dbad-output-1.txt1 pre-order traversal, with recursion:
4 pre-order traversal, without recursion:
7 in-order traversal, with recursion:
10 in-order traversal, without recursion:
/aosp_15_r20/external/cronet/ipc/
H A Dipc_message_utils.cc117 void WriteValue(const base::Value& value, int recursion, base::Pickle* pickle);
120 int recursion, in WriteDictValue() argument
125 WriteValue(entry.second, recursion + 1, pickle); in WriteDictValue()
130 int recursion, in WriteListValue() argument
134 WriteValue(entry, recursion + 1, pickle); in WriteListValue()
138 void WriteValue(const base::Value& value, int recursion, base::Pickle* pickle) { in WriteValue() argument
140 if (recursion > kMaxRecursionDepth) { in WriteValue()
178 WriteDictValue(value.GetDict(), recursion, pickle); in WriteValue()
183 WriteListValue(value.GetList(), recursion, pickle); in WriteValue()
191 int recursion,
[all …]
/aosp_15_r20/external/starlark-go/starlark/testdata/
H A Dfunction.star50 # recursion detection, simple
57 # recursion detection, advanced
59 # A simplistic recursion check that looks for repeated calls to the
60 # same function value will not detect recursion using the Y
62 # recursion. To truly prohibit recursion, the dynamic check must look
80 # With the -recursion option it would yield [[2, 4, 6], ["aa", "bb", "cc"]].
242 # option:recursion
H A Dmisc.star62 assert.fails(lambda: cyclic < cyclic, "maximum recursion")
63 assert.fails(lambda: cyclic == cyclic, "maximum recursion")
66 assert.fails(lambda: cyclic2 == cyclic, "maximum recursion")
78 assert.fails(lambda: cyclic5 == cyclic5 ,"maximum recursion")
81 assert.fails(lambda: cyclic5 == cyclic6, "maximum recursion")
H A Drecursion.star1 # Tests of Starlark recursion and while statement.
5 # option:recursion
/aosp_15_r20/external/libchrome/ipc/
H A Dipc_message_utils.cc82 int recursion);
84 void WriteValue(base::Pickle* m, const base::Value* value, int recursion) { in WriteValue() argument
86 if (recursion > kMaxRecursionDepth) { in WriteValue()
138 WriteValue(m, &it.value(), recursion + 1); in WriteValue()
146 WriteValue(m, &entry, recursion + 1); in WriteValue()
158 int recursion) { in ReadDictionaryValue() argument
167 !ReadValue(m, iter, &subval, recursion + 1)) in ReadDictionaryValue()
180 int recursion) { in ReadListValue() argument
187 if (!ReadValue(m, iter, &subval, recursion + 1)) in ReadListValue()
198 int recursion) { in ReadValue() argument
[all …]
/aosp_15_r20/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_deadlock_detector2.cc156 m->recursion = 0; in MutexInit()
283 m->recursion++; in MutexAfterLock()
289 CHECK_EQ(m->recursion, 0); in MutexAfterLock()
290 m->recursion = 1; in MutexAfterLock()
314 if (--m->recursion > 0) in MutexBeforeUnlock()
/aosp_15_r20/external/skia/resources/sksl/errors/
H A DIllegalRecursionSimple.rts3 // Simple recursion is not allowed, even with branching:
7 potential recursion (function call cycle) not allowed:
H A DIllegalRecursionMutual.rts3 // Straightforward mutual recursion (not allowed)
9 potential recursion (function call cycle) not allowed:
H A DIllegalRecursionComplex.rts3 // Complex recursion spanning several functions with overloads, etc.
37 potential recursion (function call cycle) not allowed:
/aosp_15_r20/external/deqp-deps/glslang/Test/
Drecurse2.frag3 // cross-unit recursion
5 // two-level recursion
Drecurse1.vert7 // direct recursion
14 // two-level recursion
/aosp_15_r20/external/angle/third_party/glslang/src/Test/
H A Drecurse2.frag3 // cross-unit recursion
5 // two-level recursion
H A Drecurse1.vert7 // direct recursion
14 // two-level recursion
/aosp_15_r20/prebuilts/build-tools/common/bison/m4sugar/
H A Dforeach.m44 # Speeds up GNU M4 1.4.x by avoiding quadratic $@ recursion, but penalizes
42 # recursion by writing a variant of m4_foreach that uses m4_for rather
43 # than $@ recursion to operate on the list. This involves more macro
47 # costs additional time; therefore, in M4 1.6, where $@ recursion uses
62 # ARG, expand PRE[ARG]POST[]. The IGNORED argument makes recursion
67 # that temporary macro. Thus, the recursion is done in m4_for without
/aosp_15_r20/external/angle/tools/flex-bison/third_party/m4sugar/
H A Dforeach.m44 # Speeds up GNU M4 1.4.x by avoiding quadratic $@ recursion, but penalizes
42 # recursion by writing a variant of m4_foreach that uses m4_for rather
43 # than $@ recursion to operate on the list. This involves more macro
47 # costs additional time; therefore, in M4 1.6, where $@ recursion uses
62 # ARG, expand PRE[ARG]POST[]. The IGNORED argument makes recursion
67 # that temporary macro. Thus, the recursion is done in m4_for without
/aosp_15_r20/external/python/cpython2/Misc/NEWS.d/
D2.6rc2.rst26 recursion tests in Tools/scripts/find_recursion_limit.py can raise
28 exactly the recursion limit is exceeded. Consequently, both exception types

12345678910>>...25