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

1 2 3 4

  /build/tools/
findleaves.py 26 def perform_find(mindepth, prune, dirlist, filename):
28 pruneleaves = set(map(lambda x: os.path.split(x)[1], prune))
32 # prune
41 if dirs[i] in prune:
61 --prune=<dirname>
71 prune = []
80 elif arg.startswith("--prune="):
81 p = arg[len("--prune="):]
84 prune.append(p)
92 results = list(set(perform_find(mindepth, prune, dirlist, filename))
    [all...]
  /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...]
ScopedClassPool.java 144 clazz.prune();
227 c.prune();
  /external/llvm/utils/
llvmdo 179 \( $paths_to_ignore \) -prune \
  /external/webkit/Tools/Scripts/
do-file-rename 57 $File::Find::prune = 1;
62 $File::Find::prune = 1;
find-extra-includes 44 $File::Find::prune = 1;
report-include-statistics 45 $File::Find::prune = 1;
  /external/elfutils/libdw/
dwarf_getscopes.c 68 /* Preorder visitor: prune the traversal if this DIE does not contain PC. */
75 die->prune = true;
94 die->prune = true;
96 if (!die->prune
144 if (die->prune)
libdw_visit_scopes.c 120 child.prune = false;
129 if (!child.prune)
  /external/webkit/Source/WebCore/history/
PageCache.h 75 void prune();
  /build/
envsetup.sh 796 find -E . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.(c|h|cpp|S|java|xml|sh|mk)' -print0 | xargs -0 grep --color -n "$@"
803 find . -name .repo -prune -o -name .git -prune -o -type f -iregex '.*\.\(c\|h\|cpp\|S\|java\|xml\|sh\|mk\)' -print0 | xargs -0 grep --color -n "$@"
810 find . -name .repo -prune -o -name .git -prune -o -type f -name "*\.java" -print0 | xargs -0 grep --color -n "$@"
815 find . -name .repo -prune -o -name .git -prune -o -type f \( -name '*.c' -o -name '*.cc' -o -name '*.cpp' -o -name '*.h' \) -print0 | xargs -0 grep --color -n "$@"
820 for dir in `find . -name .repo -prune -o -name .git -prune -o -name res -type d`; do find $dir -type f -name '*\.xml' -print0 | xargs -0 grep --color -n "$@" (…)
    [all...]
  /external/openfst/src/bin/
fstprune.cc 23 #include <fst/script/prune.h>
59 s::Prune(fst, opts);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/thin_heap_/
split_join_fn_imps.hpp 62 node_pointer p_out = base_type::prune(pred);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/thin_heap_/
split_join_fn_imps.hpp 62 node_pointer p_out = base_type::prune(pred);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/thin_heap_/
split_join_fn_imps.hpp 62 node_pointer p_out = base_type::prune(pred);
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/thin_heap_/
split_join_fn_imps.hpp 62 node_pointer p_out = base_type::prune(pred);
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/thin_heap_/
split_join_fn_imps.hpp 62 node_pointer p_out = base_type::prune(pred);
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/thin_heap_/
split_join_fn_imps.hpp 62 node_pointer p_out = base_type::prune(pred);
  /build/core/
cleanspec.mk 67 $(shell build/tools/findleaves.py --prune=out --prune=.repo --prune=.git . CleanSpec.mk)
  /external/srec/srec/crec/
comp_stats.c 59 init_cs_clock(&c.prune);
88 print_cs_clock(&cs->prune, cs->total_time, fp, " Prune", "HMM States");
  /external/openfst/src/script/
prune.cc 19 #include <fst/script/prune.h>
26 void Prune(MutableFstClass *fst, const PruneOptions &opts) {
29 Apply<Operation<PruneArgs1> >("Prune", fst->ArcType(), &args);
33 void Prune(const FstClass &ifst, MutableFstClass *fst,
37 Apply<Operation<PruneArgs2> >("Prune", fst->ArcType(), &args);
41 void Prune(const FstClass &ifst,
47 Apply<Operation<PruneArgs3> >("Prune", ifst.ArcType(), &args);
51 void Prune(MutableFstClass *fst, const WeightClass& weight_threshold,
55 Apply<Operation<PruneArgs4> >("Prune", fst->ArcType(), &args);
59 REGISTER_FST_OPERATION(Prune, StdArc, PruneArgs1)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/left_child_next_sibling_heap_/
erase_fn_imps.hpp 111 prune(Pred pred) function in class:PB_DS_CLASS_C_DEC
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/pairing_heap_/
split_join_fn_imps.hpp 62 node_pointer p_out = base_type::prune(pred);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/left_child_next_sibling_heap_/
erase_fn_imps.hpp 111 prune(Pred pred) function in class:PB_DS_CLASS_C_DEC

Completed in 596 milliseconds

1 2 3 4