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

123

/external/chromium_org/ui/base/models/
H A Dtree_node_iterator.h25 // This contructor accepts an optional filter function |prune| which could be
26 // used to prune complete branches of the tree. The filter function will be
29 TreeNodeIterator(NodeType* node, bool (*prune)(NodeType*)) argument
30 : prune_(prune) {
38 if (!prune || !prune(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/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/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/openfst/src/script/
H A Dprune.cc19 #include <fst/script/prune.h>
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DMemoryCacheTest.cpp170 memoryCache()->prune();
175 // Verified that when ordering a prune in a runLoop task, the prune
218 memoryCache()->prune(); // Dead resources are pruned immediately
274 // Call prune. There is nothing to prune, but this will initialize
275 // the prune timestamp, allowing future prunes to be deferred.
276 memoryCache()->prune();
283 // remaining in cache since the prune is deferred.
293 // eviction of resource2 because we are over the prune deferra
[all...]
H A DMemoryCache.h129 void prune(Resource* justReleasedResource = 0);
172 void pruneDeadResources(); // Automatically decide how much to prune.
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DImageDecodingStore.cpp135 prune();
199 prune();
264 prune();
279 prune();
306 void ImageDecodingStore::prune() function in class:WebCore::ImageDecodingStore
308 TRACE_EVENT0("webkit", "ImageDecodingStore::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/chromium/chrome/browser/sessions/
H A Dtab_restore_service.h206 // Adds |entry| to the list of entries and takes ownership. If |prune| is true
210 void AddEntry(Entry* entry, bool prune, bool to_front);
/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>
/external/eigen/unsupported/Eigen/src/SparseExtra/
H A DDynamicSparseMatrix.h189 void prune(Scalar reference, RealScalar epsilon = NumTraits<RealScalar>::dummy_precision())
192 m_data[j].prune(reference,epsilon);

Completed in 1488 milliseconds

123