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

1 2 3 4 5 6 7

  /external/annotation-tools/scene-lib/src/annotations/el/
AMethod.java 70 parameters.prune();
71 o.parameters.prune();
98 public boolean prune() { method in class:AMethod
99 return super.prune() & bounds.prune()
100 & returnType.prune()
101 & receiver.prune() & parameters.prune()
102 & throwsException.prune() & body.prune();
    [all...]
ADeclaration.java 31 return v.prune();
46 return v.prune();
92 public boolean prune() { method in class:ADeclaration
93 return super.prune()
94 & (insertAnnotations == null || insertAnnotations.prune())
95 & (insertTypecasts == null || insertTypecasts.prune());
ABlock.java 59 public boolean prune() { method in class:ABlock
60 return super.prune() & locals.prune();
AClass.java 31 return v.prune();
46 return v.prune();
61 return v.prune();
154 public boolean prune() {
155 return super.prune() & bounds.prune()
156 & methods.prune() & fields.prune()
157 & staticInits.prune() & instanceInits.prune()
    [all...]
ATypeElementWithType.java 35 return v.prune();
93 public boolean prune() {
94 boolean result = super.prune();
97 // stop the prune to just insert a cast with no annotations.
AExpression.java 48 return v.prune();
109 public boolean prune() { method in class:AExpression
110 return super.prune() & typecasts.prune() & instanceofs.prune()
111 & news.prune() & refs.prune() & calls.prune() & funs.prune();
ATypeElement.java 31 return v.prune();
93 public boolean prune() {
95 return super.prune() & innerTypes.prune();
AElement.java 33 return v.prune();
50 return v.prune();
136 * <em>annotations</em>, you should {@link #prune} both {@link AElement}s
182 // we should prune everything even if the first subelement is nonempty.
183 public boolean prune() {
185 & (type == null || type.prune());
  /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.27/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/runtime/pprof/internal/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/runtime/pprof/internal/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/oj-libjdwp/make/src/classes/build/tools/jdwpgen/
AbstractNamedNode.java 40 void prune() { method in class:AbstractNamedNode
56 super.prune();
ConstantSetNode.java 38 void prune() { method in class:ConstantSetNode
44 super.prune();
  /external/swiftshader/third_party/LLVM/utils/
llvmdo 179 \( $paths_to_ignore \) -prune \
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/profile/
prune.go 58 // Prune removes all nodes beneath a node matching dropRx, and not
61 func (p *Profile) Prune(dropRx, keepRx *regexp.Regexp) {
62 prune := make(map[uint64]bool)
79 // Found matching entry to prune.
84 // Matched the top entry: prune the whole location.
85 prune[loc.ID] = true
92 // Prune locs from each Sample
94 // Scan from the root to the leaves to find the prune location.
95 // Do not prune frames before the first user frame, to avoid
100 if !prune[id] && !pruneBeneath[id]
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/profile/
prune.go 58 // Prune removes all nodes beneath a node matching dropRx, and not
61 func (p *Profile) Prune(dropRx, keepRx *regexp.Regexp) {
62 prune := make(map[uint64]bool)
79 // Found matching entry to prune.
84 // Matched the top entry: prune the whole location.
85 prune[loc.ID] = true
92 // Prune locs from each Sample
94 // Scan from the root to the leaves to find the prune location.
95 // Do not prune frames before the first user frame, to avoid
100 if !prune[id] && !pruneBeneath[id]
    [all...]
  /build/make/
envsetup.sh     [all...]
  /external/toolchain-utils/binary_search_tool/test/
binary_search_tool_tester.py 74 prune=True,
145 prune=True,
154 '--test_script', './is_good.py', '--prune', '--file_args'
168 prune=True,
177 prune=True,
190 prune=True,
271 prune=True,
283 prune=True,
296 prune=False,
311 prune=True
    [all...]

Completed in 426 milliseconds

1 2 3 4 5 6 7