Searched defs:prune (Results 1 - 25 of 30) sorted by relevance

12

/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...]
/external/scrypt/
H A Dimport_scrypt.sh370 prune
394 prune
440 function prune() { function
/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");
/external/javassist/src/main/javassist/bytecode/
H A DFieldInfo.java87 void prune(ConstPool cp) { method in class:FieldInfo
H A DMethodInfo.java136 void prune(ConstPool cp) { method in class:MethodInfo
H A DClassFile.java209 public void prune() { method in class:ClassFile
237 minfo.prune(cp);
244 finfo.prune(cp);
H A DConstPool.java152 void prune() { method in class:ConstPool
/external/openssl/
H A Dimport_openssl.sh605 prune
629 prune
674 function prune() { function
/external/srec/srec/include/
H A Dcomp_stats.h85 CS_CLOCK prune; member in struct:COMP_STATS_t
/external/eigen/Eigen/src/SparseCore/
H A DCompressedStorage.h187 void prune(const Scalar& reference, const RealScalar& epsilon = NumTraits<RealScalar>::dummy_precision()) function in class:Eigen::internal::CompressedStorage
H A DSparseVector.h191 void prune(const Scalar& reference, const RealScalar& epsilon = NumTraits<RealScalar>::dummy_precision()) function in class:Eigen::SparseVector
193 m_data.prune(reference,epsilon);
H A DSparseMatrix.h490 void prune(const Scalar& reference, const RealScalar& epsilon = NumTraits<RealScalar>::dummy_precision()) function in class:Eigen::SparseMatrix
492 prune(default_prunning_func(reference,epsilon));
500 * \sa prune(Scalar,RealScalar)
503 void prune(const KeepFunc& keep = KeepFunc()) function in class:Eigen::SparseMatrix
/external/eigen/unsupported/Eigen/src/Skyline/
H A DSkylineStorage.h197 void prune(Scalar reference, RealScalar epsilon = dummy_precision<RealScalar>()) { function in class:Eigen::SkylineStorage
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DMemoryCache.cpp51 static const float cTargetPrunePercentage = .95f; // Percentage of capacity toward which we prune, to avoid immediately pruning again.
247 // Check to see if the remaining resources are too new to prune.
255 current->m_resource->prune();
309 current->m_resource->prune();
358 prune();
656 void MemoryCache::prune(Resource* justReleasedResource) function in class:blink::MemoryCache
658 TRACE_EVENT0("renderer", "MemoryCache::prune()");
667 // been more than m_maxPruneDeferralDelay since the last prune,
668 // then we prune immediately.
671 // since the last prune
[all...]
H A DResource.cpp542 memoryCache()->prune();
544 memoryCache()->prune(this);
609 memoryCache()->prune();
646 void Resource::prune() function in class:blink::Resource
809 memoryCache()->prune(this);
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dtree.rb290 # skips adding children to prune the node
426 # skips adding children to prune the node
436 def prune method in class:ANTLR3.BaseTree
/external/javassist/src/main/javassist/
H A DCtClass.java234 * @see CtClass#prune()
1195 * Javassist can automatically prune a <code>CtClass</code> object
1211 * @see #prune()
1246 public void prune() {} method in class:CtClass
1337 * method does not prune or freeze the class after writing the class
1348 * method does not prune or freeze the class after writing the class
H A DCtClassType.java1389 * @see javassist.CtClass#prune()
1392 public void prune() { method in class:CtClassType
1397 getClassFile2().prune();
1421 cf.prune();
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DCompositeEditCommand.cpp397 prune(parent.release(), excludeNode);
436 void CompositeEditCommand::prune(PassRefPtrWillBeRawPtr<Node> node, Node* excludeNode) function in class:blink::CompositeEditCommand
1068 // Deleting a paragraph will leave a placeholder. Remove it (and prune
1096 prune(node, destinationNode);
1400 prune(parentNode);
/external/elfutils/0.153/libdw/
H A DlibdwP.h445 bool prune; /* The PREVISIT function can set this. */ member in struct:Dwarf_Die_Chain
/external/opencv/ml/src/
H A Dmlboost.cpp806 void CvBoost::prune( CvSlice slice ) function in class:CvBoost
832 prune( CV_WHOLE_SEQ );
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.help_3.5.0.v20100524.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...

Completed in 4802 milliseconds

12