Home
last modified time | relevance | path

Searched refs:recurse (Results 1 - 25 of 78) sorted by relevance

1234

/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DURLHandler.java166 public void guide(URLVisitor v, boolean recurse, boolean strip) { in guide() argument
168 process(v, recurse, strip, "/", file.listFiles()); in guide()
174 private void process(URLVisitor v, boolean recurse, boolean strip, String path, File[] files) { in process() argument
180 if (recurse) { in process()
181 process(v, recurse, strip, path + f.getName()+ '/', f.listFiles()); in process()
226 public void guide(URLVisitor v, boolean recurse, boolean strip) { in guide() argument
239 if (ix > 0 && !recurse) { in guide()
256 public void guide(URLVisitor visitor, boolean recurse) in guide() argument
258 guide(visitor, recurse, true); in guide()
261 public abstract void guide(URLVisitor visitor, boolean recurse, boolea argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DURLHandler.java170 public void guide(URLVisitor v, boolean recurse, boolean strip) { in guide() argument
172 process(v, recurse, strip, "/", file.listFiles()); in guide()
178 private void process(URLVisitor v, boolean recurse, boolean strip, String path, File[] files) { in process() argument
184 if (recurse) { in process()
185 process(v, recurse, strip, path + f.getName()+ '/', f.listFiles()); in process()
230 public void guide(URLVisitor v, boolean recurse, boolean strip) { in guide() argument
243 if (ix > 0 && !recurse) { in guide()
260 public void guide(URLVisitor visitor, boolean recurse) in guide() argument
262 guide(visitor, recurse, true); in guide()
265 public abstract void guide(URLVisitor visitor, boolean recurse, boolea argument
[all...]
/third_party/node/test/parallel/
H A Dtest-fs-readdir-stack-overflow.js8 function recurse() { function
10 recurse();
14 () => recurse(),
H A Dtest-async-hooks-recursive-stack-runInAsyncScope.js8 function recurse(n) { function
14 recurse(n - 1);
20 recurse(1000);
/third_party/rust/crates/syn/examples/heapsize/heapsize_derive/src/
H A Dlib.rs64 let recurse = fields.named.iter().map(|f| { in heap_size_sum()
71 0 #(+ #recurse)* in heap_size_sum()
78 let recurse = fields.unnamed.iter().enumerate().map(|(i, f)| { in heap_size_sum()
85 0 #(+ #recurse)* in heap_size_sum()
/third_party/vk-gl-cts/framework/delibs/decpp/
H A DdeMemPool.hpp48 deUintptr getNumAllocatedBytes (bool recurse) const { return deMemPool_getNumAllocatedBytes(m_pool, recurse ? DE_TRUE : DE_FALSE); } in getNumAllocatedBytes()
49 deUintptr getCapacity (bool recurse) const { return deMemPool_getCapacity(m_pool, recurse ? DE_TRUE : DE_FALSE); } in getCapacity()
/third_party/skia/bench/
H A DAAClipBench.cpp116 void recurse(SkCanvas* canvas, in recurse() function in NestedAAClipBench
139 this->recurse(canvas, depth+1, childOffset); in recurse()
142 this->recurse(canvas, depth+1, childOffset); in recurse()
146 this->recurse(canvas, depth+1, childOffset); in recurse()
150 this->recurse(canvas, depth+1, childOffset); in recurse()
160 this->recurse(canvas, 0, offset);
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/regex/
H A DRegexFormatter.java60 recurse(0, 0); in format()
65 private int recurse(int pos, int level) { in recurse() method in RegexFormatter
93 pos = recurse(pos, level + 1); in recurse()
/third_party/skia/third_party/externals/harfbuzz/
H A Dgit.mk58 # - gitignore-recurse: makes all gitignore files in the subdirs.
381 all: $(srcdir)/.gitignore gitignore-recurse-maybe
382 gitignore: $(srcdir)/.gitignore gitignore-recurse
384 gitignore-recurse-maybe:
391 gitignore-recurse:
400 .PHONY: gitignore-clean gitignore gitignore-recurse gitignore-recurse-maybe
/third_party/python/Lib/test/test_json/
H A Dtest_recursion.py49 recurse = False variable in TestRecursion.test_defaultrecursion.RecursiveJSONEncoder
52 if self.recurse:
60 enc.recurse = True
/third_party/python/PC/layout/support/
H A Dfilesets.py72 recurse = pattern[:3] in {"**/", "**\\"}
73 if recurse:
78 if recurse:
/third_party/selinux/libselinux/utils/
H A Dselabel_get_digests_all_partial_matches.c33 bool status, recurse = false; in main() local
57 recurse = true; in main()
164 if (!recurse) in main()
/third_party/python/Tools/scripts/
H A Dcleanfuture.py47 recurse = 0 variable
59 global verbose, recurse, dryrun
69 recurse += 1
85 if ((recurse and os.path.isdir(fullname) and
H A Dreindent.py8 -r (--recurse) Recurse. Search for all .py files in subdirectories too.
52 recurse = False variable
71 global verbose, recurse, dryrun, makebackup, spec_newline
74 ["dryrun", "recurse", "nobackup", "verbose", "newline=", "help"])
81 elif o in ('-r', '--recurse'):
82 recurse = True
111 if ((recurse and os.path.isdir(fullname) and
/third_party/vk-gl-cts/framework/delibs/depool/
H A DdeMemPool.h69 int deMemPool_getNumAllocatedBytes (const deMemPool* pool, deBool recurse);
70 int deMemPool_getCapacity (const deMemPool* pool, deBool recurse);
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/
H A DRangeTreeFactorizer.java167 new MergingVisitor(path).recurse(srcTarget, extraMask); in visit()
180 void recurse(DfaNode node, int mask) { in recurse() method in RangeTreeFactorizer.MergingVisitor
191 recurse(target, edge.getDigitMask()); in visit()
/third_party/skia/src/effects/imagefilters/
H A DSkCropImageFilter.cpp41 VisitChildren recurse) const override;
117 VisitChildren recurse) const { in onGetInputLayerBounds()
128 if (recurse == VisitChildren::kNo) { in onGetInputLayerBounds()
/third_party/toybox/toys/posix/
H A Dfind.c213 int pcount = 0, print = 0, not = 0, active = !!new, test = active, recurse; in do_find() local
217 recurse = DIRTREE_STATLESS|DIRTREE_COMEAGAIN| in do_find()
232 if (TT.xdev && new->st.st_dev != new->parent->st.st_dev) recurse = 0; in do_find()
252 return recurse; in do_find()
257 recurse = 0; in do_find()
354 if (check && S_ISDIR(new->st.st_mode) && !TT.depth) recurse = 0; in do_find()
456 if (i == d && not) recurse = 0; in do_find()
459 if (i == d && !not) recurse = 0; in do_find()
686 return recurse; in do_find()
/third_party/node/tools/inspector_protocol/jinja2/
H A Dasyncsupport.py192 def __init__(self, async_iterator, undefined, after, length, recurse=None,
194 LoopContextBase.__init__(self, undefined, recurse, depth0)
233 async def make_async_loop_context(iterable, undefined, recurse=None, depth0=0):
255 return AsyncLoopContext(async_iterator, undefined, after, length, recurse,
/third_party/icu/tools/unicodetools/com/ibm/rbm/
H A DRBReporterScanner.java110 boolean recurse = dir_elem.getAttribute("recurse_directories").equalsIgnoreCase("true"); in performScan()
130 scanDirectory(directory, frule, prules_v, recurse); in performScan()
137 private void scanDirectory(File directory, FileRule frule, Vector prules, boolean recurse) throws IOException { in scanDirectory() argument
140 if (recurse) { in scanDirectory()
152 scanDirectory(new_directory, frule, prules, recurse); in scanDirectory()
/third_party/python/Lib/test/
H A Dtest_pickle.py345 def recurse(deep): function
350 check_unpickler(recurse(0), 32, 0)
351 check_unpickler(recurse(1), 32, 20)
352 check_unpickler(recurse(20), 32, 20)
353 check_unpickler(recurse(50), 64, 60)
354 check_unpickler(recurse(100), 128, 140)
/third_party/node/deps/icu-small/source/tools/toolutil/
H A Dxmlparser.h64 * @param recurse If true, also recursively appends the contents of all
68 UnicodeString getText(UBool recurse) const;
132 void appendText(UnicodeString &text, UBool recurse) const;
/third_party/icu/icu4c/source/tools/toolutil/
H A Dxmlparser.h64 * @param recurse If true, also recursively appends the contents of all
68 UnicodeString getText(UBool recurse) const;
132 void appendText(UnicodeString &text, UBool recurse) const;
/third_party/skia/third_party/externals/icu/source/tools/toolutil/
H A Dxmlparser.h64 * @param recurse If TRUE, also recursively appends the contents of all
68 UnicodeString getText(UBool recurse) const;
132 void appendText(UnicodeString &text, UBool recurse) const;
/third_party/skia/third_party/externals/angle2/scripts/
H A Dexport_targets.py90 def recurse(key): function
103 recurse(x)
110 recurse(x)

Completed in 12 milliseconds

1234