Searched refs:prune (Results 1 - 25 of 67) sorted by relevance

123

/external/chromium_org/ui/base/models/
H A Dtree_node_iterator.h28 // This contructor accepts an optional filter function |prune| which could be
29 // used to prune complete branches of the tree. The filter function will be
32 TreeNodeIterator(NodeType* node, const PruneCallback& prune) argument
33 : prune_(prune) {
41 if (prune.is_null() || !prune.Run(node->GetChild(index)))
/external/javassist/src/main/javassist/scopedpool/
H A DScopedClassPoolRepository.java42 * @return the prune.
47 * Sets the prune flag.
49 * @param prune a new value.
51 void setPrune(boolean prune); argument
H A DScopedClassPoolRepositoryImpl.java38 /** 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) { argument
88 this.prune
[all...]
H A DScopedClassPool.java144 clazz.prune();
227 c.prune();
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Ddo-file-rename56 $File::Find::prune = 1;
61 $File::Find::prune = 1;
H A Dfind-extra-includes44 $File::Find::prune = 1;
H A Dreport-include-statistics45 $File::Find::prune = 1;
H A Ddo-webcore-rename85 $File::Find::prune = 1;
/external/llvm/utils/
H A Dllvmdo179 \( $paths_to_ignore \) -prune \
/external/elfutils/0.153/libdw/
H A Ddwarf_getscopes.c68 /* 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)
H A Dlibdw_visit_scopes.c120 child.prune = false;
129 if (!child.prune)
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DImageDecodingStore.cpp97 prune();
152 prune();
166 prune();
187 void ImageDecodingStore::prune() function in class:blink::ImageDecodingStore
189 TRACE_EVENT0(TRACE_DISABLED_BY_DEFAULT("blink.image_decoding"), "ImageDecodingStore::prune");
H A DImageDecodingStore.h168 void prune();
/external/openfst/src/bin/
H A Dfstprune.cc23 #include <fst/script/prune.h>
/external/srec/srec/crec/
H A Dcomp_stats.c59 init_cs_clock(&c.prune);
88 print_cs_clock(&cs->prune, cs->total_time, fp, " Prune", "HMM States");
/external/libpng/contrib/tools/
H A Dchkfmt66 -prune \) -o \( -type f \
/external/openfst/src/script/
H A Dprune.cc19 #include <fst/script/prune.h>
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DMemoryCacheTest.cpp165 memoryCache()->prune();
170 // Verified that when ordering a prune in a runLoop task, the prune
213 memoryCache()->prune(); // Dead resources are pruned immediately
270 // Call prune. There is nothing to prune, but this will initialize
271 // the prune timestamp, allowing future prunes to be deferred.
272 memoryCache()->prune();
279 // remaining in cache since the prune is deferred.
289 // eviction of resource2 because we are over the prune deferra
[all...]
H A DImageResourceTest.cpp183 // The prune comes when the ImageResource still has clients. The image should not be deleted.
184 cachedImage->prune();
189 // The ImageResource no longer has clients. The image should be deleted by prune.
191 cachedImage->prune();
/external/chromium_org/chrome/browser/sessions/
H A Dtab_restore_service_helper.h99 // Adds |entry| to the list of entries and takes ownership. If |prune| is true
103 void AddEntry(Entry* entry, bool prune, bool to_front);
/external/srec/srec/include/
H A Dcomp_stats.h85 CS_CLOCK prune; member in struct:COMP_STATS_t
/external/chromium_org/v8/test/mjsunit/
H A Dregexp-capture-3.js185 var s = "Don't prune based on a repetition of length 0";
186 assertEquals(null, s.match(/å{1,1}prune/));
187 assertEquals("prune", (s.match(/å{0,0}prune/)[0]));
/external/javassist/src/main/javassist/bytecode/
H A DFieldInfo.java87 void prune(ConstPool cp) { method in class:FieldInfo
/external/openfst/src/include/fst/
H A Dfstlib.h78 #include <fst/prune.h>
/external/openfst/src/include/fst/script/
H A Dprune.h26 #include <fst/prune.h>

Completed in 1196 milliseconds

123