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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/utils/lit/
MANIFEST.in 6 prune tests/Output
7 prune tests/*/Output
8 prune tests/*/*/Output
9 prune tests/*/*/*/Output
  /external/markdown/
MANIFEST.in 4 prune markdown/extensions/legacy.py
  /external/llvm/test/Transforms/Inline/
2004-04-20-InlineLinkOnce.ll 1 ; RUN: opt < %s -inline -prune-eh -disable-output
  /external/llvm/test/Transforms/PruneEH/
2008-06-02-Weak.ll 1 ; RUN: opt < %s -prune-eh -S | not grep nounwind
simplenoreturntest.ll 1 ; RUN: opt < %s -prune-eh -S | not grep "ret i32"
  /external/swiftshader/third_party/LLVM/test/Transforms/Inline/
2004-04-20-InlineLinkOnce.ll 1 ; RUN: opt < %s -inline -prune-eh -disable-output
  /external/swiftshader/third_party/LLVM/test/Transforms/PruneEH/
2008-06-02-Weak.ll 1 ; RUN: opt < %s -prune-eh -S | not grep nounwind
2003-09-14-ExternalCall.ll 1 ; RUN: opt < %s -prune-eh -S | grep invoke
simplenoreturntest.ll 1 ; RUN: opt < %s -prune-eh -S | not grep {ret i32}
simpletest.ll 1 ; RUN: opt < %s -prune-eh -S | not grep invoke
2003-11-21-PHIUpdate.ll 1 ; RUN: opt < %s -prune-eh -disable-output
  /external/llvm/lib/Fuzzer/test/
fuzzer-prunecorpus.test 5 RUN: LLVMFuzzer-EmptyTest %t/PruneCorpus -prune_corpus=1 -runs=0 2>&1 | FileCheck %s --check-prefix=PRUNE
9 PRUNE: READ units: 2
10 PRUNE: INITED{{.*}}units: 1
  /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...]
  /external/javassist/src/main/javassist/scopedpool/
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...]
ScopedClassPoolRepository.java 42 * @return the prune.
47 * Sets the prune flag.
49 * @param prune a new value.
51 void setPrune(boolean prune);
  /external/tcpdump/tests/
relts-0x80000000.out 2 48.48.48.48 > 48.48.48.48: igmp dvmrp Prune src 48.48.48.48 grp 48.48.48.48 timer 68y5w3h14m8s
  /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...]
  /external/autotest/client/site_tests/platform_StackProtector/
platform_StackProtector.py 49 cmd = ("find '%s' -wholename %s -prune -o "
50 " -wholename /proc -prune -o "
51 " -wholename /dev -prune -o "
52 " -wholename /sys -prune -o "
53 " -wholename /mnt/stateful_partition -prune -o "
54 " -wholename /usr/local -prune -o "
57 " -wholename '/home/chronos' -prune -o "
59 " -wholename '%s' -prune -o "
61 " -wholename '/usr/lib/gconv/*' -prune -o"
  /external/clang/test/Analysis/diagnostics/
no-prune-paths.c 2 // RUN: %clang_cc1 -analyze -analyzer-checker=core -analyzer-output=text -analyzer-config prune-paths=false -DNPRUNE=1 -verify %s
4 // "prune-paths" is a debug option only; this is just a simple test to see that
  /external/clang/test/Modules/
prune.m 20 // Set the timestamp back more than two days. We should try to prune,
23 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -F %S/Inputs -fmodules-cache-path=%t -fmodules -fmodules-prune-interval=172800 -fmodules-prune-after=345600 %s -verify
29 // This shouldn't prune anything, because the timestamp has been updated, so
32 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -F %S/Inputs -fmodules-cache-path=%t -fmodules -fmodules-prune-interval=172800 -fmodules-prune-after=345600 %s -verify
41 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -F %S/Inputs -fmodules-cache-path=%t -fmodules -fmodules-prune-interval=172800 -fmodules-prune-after=345600 %s -verify
  /external/protobuf/python/
MANIFEST.in 0 prune google/protobuf/internal/import_test_package
  /external/swiftshader/third_party/LLVM/test/Other/
2009-03-31-CallGraph.ll 1 ; RUN: opt < %s -inline -prune-eh -disable-output
  /system/core/logd/
LogWhiteBlackList.h 29 class Prune {
40 Prune(uid_t uid, pid_t pid);
56 typedef std::list<Prune> PruneCollection;
  /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...]

Completed in 1660 milliseconds

1 2 3 4 5 6 7 8 91011>>