HomeSort by relevance Sort by last modified time
    Searched refs:prune (Results 1 - 25 of 141) sorted by null

1 2 3 4 5 6

  /build/kati/testcase/tools/
findleaves.py 26 def perform_find(mindepth, prune, dirlist, filenames):
28 pruneleaves = set(map(lambda x: os.path.split(x)[1], prune))
32 # prune
41 if dirs[i] in prune:
62 --prune=<dirname>
76 prune = []
86 elif arg.startswith("--prune="):
87 p = arg[len("--prune="):]
90 prune.append(p)
108 results = list(set(perform_find(mindepth, prune, dirlist, filenames))
    [all...]
  /build/make/tools/
findleaves.py 26 def perform_find(mindepth, prune, dirlist, filenames):
28 pruneleaves = set(map(lambda x: os.path.split(x)[1], prune))
33 # prune
42 if dirs[i] in prune:
75 --prune=<dirname>
89 prune = []
99 elif arg.startswith("--prune="):
100 p = arg[len("--prune="):]
103 prune.append(p)
121 results = list(set(perform_find(mindepth, prune, dirlist, filenames))
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/lib/
gas-dg.exp 62 proc gas-dg-prune { system text } {
  /external/javassist/src/main/javassist/scopedpool/
ScopedClassPoolRepository.java 42 * @return the prune.
47 * Sets the prune flag.
49 * @param prune a new value.
51 void setPrune(boolean prune);
ScopedClassPoolRepositoryImpl.java 38 /** Whether to prune */
39 private boolean prune = true; field in class:ScopedClassPoolRepositoryImpl
41 /** Whether to prune when added to the classpool's cache */
74 * Returns the value of the prune attribute.
76 * @return the prune.
79 return prune;
83 * Set the prune attribute.
85 * @param prune a new value.
87 public void setPrune(boolean prune) {
88 this.prune = prune
    [all...]
  /external/llvm/include/llvm/Support/
CachePruning.h 23 /// to prune.
26 /// Prepare to prune \p Path.
31 /// prune. A value of 0 forces the scan to occurs.
57 bool prune();
  /prebuilts/go/darwin-x86/src/internal/pprof/profile/
prune.go 14 // Prune removes all nodes beneath a node matching dropRx, and not
17 func (p *Profile) Prune(dropRx, keepRx *regexp.Regexp) {
18 prune := make(map[uint64]bool)
39 // Found matching entry to prune.
44 // Matched the top entry: prune the whole location.
45 prune[loc.ID] = true
52 // Prune locs from each Sample
54 // Scan from the root to the leaves to find the prune location.
55 // Do not prune frames before the first user frame, to avoid
60 if !prune[id] && !pruneBeneath[id]
    [all...]
  /prebuilts/go/linux-x86/src/internal/pprof/profile/
prune.go 14 // Prune removes all nodes beneath a node matching dropRx, and not
17 func (p *Profile) Prune(dropRx, keepRx *regexp.Regexp) {
18 prune := make(map[uint64]bool)
39 // Found matching entry to prune.
44 // Matched the top entry: prune the whole location.
45 prune[loc.ID] = true
52 // Prune locs from each Sample
54 // Scan from the root to the leaves to find the prune location.
55 // Do not prune frames before the first user frame, to avoid
60 if !prune[id] && !pruneBeneath[id]
    [all...]
  /development/tools/idegen/
index-gen.sh 46 find $root_dir -name '*.mk' \( ! -path "$root_dir/build*" -prune \) \
  /external/llvm/utils/
llvmdo 179 \( $paths_to_ignore \) -prune \
  /external/swiftshader/third_party/LLVM/utils/
llvmdo 179 \( $paths_to_ignore \) -prune \
  /build/make/
envsetup.sh     [all...]
  /external/toolchain-utils/binary_search_tool/test/
binary_search_tool_tester.py 73 prune=True,
141 prune=True,
149 '--test_script', './is_good.py', '--prune', '--file_args']
161 prune=True,
169 prune=True,
181 prune=True,
262 prune=True,
274 prune=True,
287 prune=False,
301 prune=True
    [all...]
  /external/elfutils/libdw/
dwarf_getscopes.c 47 /* Preorder visitor: prune the traversal if this DIE does not contain PC. */
54 die->prune = true;
73 die->prune = true;
75 if (!die->prune
123 if (die->prune)
dwarf_getfuncs.c 74 chain->prune = true;
  /prebuilts/go/darwin-x86/test/
reflectmethod1.go 7 // The linker can prune methods that are not directly called or
reflectmethod4.go 7 // The linker can prune methods that are not directly called or
reflectmethod2.go 7 // The linker can prune methods that are not directly called or
reflectmethod3.go 7 // The linker can prune methods that are not directly called or
  /prebuilts/go/linux-x86/test/
reflectmethod1.go 7 // The linker can prune methods that are not directly called or
reflectmethod4.go 7 // The linker can prune methods that are not directly called or
reflectmethod2.go 7 // The linker can prune methods that are not directly called or
reflectmethod3.go 7 // The linker can prune methods that are not directly called or
  /build/kati/
pathutil.go 299 apply(evalWriter, string, dirent) (test bool, prune bool)
343 test, prune := op.op.apply(w, path, ent)
344 return !test, prune
350 var prune bool
354 prune = true
357 return test, prune
360 return true, prune
368 test, prune := op.op1.apply(w, path, ent)
370 return test, prune
406 _, prune := fc.apply(w, path, ent
    [all...]
  /build/kati/testcase/
find_command.mk 92 @echo prune
93 $(call run_find, find testdir -name dir2 -prune -o -name file1)
113 $(call run_find, build/tools/findleaves.py --prune=dir1 testdir file3)
114 $(call run_find, build/tools/findleaves.py --prune=dir1 --prune=dir2 testdir file3)
119 $(call run_find, build/tools/findleaves.py --prune=dir1 --dir=testdir file1)
120 $(call run_find, build/tools/findleaves.py --prune=dir1 --dir=testdir file3 link3)

Completed in 611 milliseconds

1 2 3 4 5 6