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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/tests/overlaytests/
Android.mk 1 # Dummy makefile to halt recursive directory traversal.
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/iterator/detail/
facade_iterator_category.hpp 73 // Convert an iterator_facade's traversal category, Value parameter,
79 // Otherwise, if Traversal == single_pass_traversal_tag, the following
86 template <class Traversal, class ValueParam, class Reference>
91 , is_convertible<Traversal,forward_traversal_tag>
94 is_convertible<Traversal,random_access_traversal_tag>
97 is_convertible<Traversal,bidirectional_traversal_tag>
104 is_convertible<Traversal, single_pass_traversal_tag>
110 , mpl::identity<Traversal>
133 // old-style category) and Traversal (a pure traversal tag)
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/memory/
ObjectVisitor.java 20 * A visitor that controls an object traversal. Implementations
39 * @return {@link Traversal#EXPLORE} to denote that the visited object
40 * should be further explored, or {@link Traversal#SKIP} to avoid
43 Traversal visit(Chain chain);
47 * graph traversal).
52 * Constants that denote how the traversal of a given object (chain)
55 enum Traversal {
ObjectExplorer.java 39 * A depth-first object graph explorer. The traversal starts at a root (an
41 * primitive value, excluding static fields from the traversal. The traversal
44 * also return a value at the end of the traversal.
52 * {@link ObjectVisitor} to both control the traversal and return a value.
57 * @param <T> the type of the value obtained (after the traversal) by the
64 * traversal
74 * {@link ObjectVisitor} to both control the traversal and return a value.
88 * @param <T> the type of the value obtained (after the traversal) by the
95 * @return whatever value is returned by the visitor at the end of the traversal
106 ObjectVisitor.Traversal traversal = visitor.visit(chain); local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTMAxisTraverser.java 48 * By the nature of the stateless traversal, the context node can not be
55 * @param context The context node of this traversal. This is the point
56 * that the traversal starts from.
57 * @return the first node in the traversal.
65 * By the nature of the stateless traversal, the context node can not be
72 * @param context The context node of this traversal. This is the point
73 * of origin for the traversal -- its "root node" or starting point.
76 * @return the first node in the traversal.
86 * @param context The context node of this traversal. This is the point
87 * of origin for the traversal -- its "root node" or starting point
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/iterator/
iterator_categories.hpp 27 // Traversal Categories
70 // Convert a "strictly old-style" iterator category to a traversal
108 template <class Traversal>
111 is_convertible<Traversal,random_access_traversal_tag>
114 is_convertible<Traversal,bidirectional_traversal_tag>
117 is_convertible<Traversal,forward_traversal_tag>
120 is_convertible<Traversal,single_pass_traversal_tag>
123 is_convertible<Traversal,incrementable_traversal_tag>
146 // Convert an iterator category into a traversal tag
150 : mpl::eval_if< // if already convertible to a traversal tag, we're done
    [all...]
  /external/eigen/test/
vectorization_logic.cpp 32 bool test_assign(const Dst&, const Src&, int traversal, int unrolling)
35 bool res = internal::assign_traits<Dst,Src>::Traversal==traversal
39 std::cerr << " Expected Traversal == " << demangle_traversal(traversal)
40 << " got " << demangle_traversal(internal::assign_traits<Dst,Src>::Traversal) << "\n";
48 bool test_assign(int traversal, int unrolling)
51 bool res = internal::assign_traits<Dst,Src>::Traversal==traversal
55 std::cerr << " Expected Traversal == " << demangle_traversal(traversal
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/policy/
suggest_policy.h 24 class Traversal;
32 virtual const Traversal *getTraversal() const = 0;
traversal.h 26 class Traversal {
55 Traversal() {}
56 virtual ~Traversal() {}
59 DISALLOW_COPY_AND_ASSIGN(Traversal);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDefaultBaseTraversers.java 184 throw new DTMException(XMLMessages.createXMLMessage(XMLErrorResources.ER_UNKNOWN_AXIS_TYPE, new Object[]{Integer.toString(axis)})); //"Unknown axis traversal type: "+axis);
198 * Implements traversal of the Ancestor access, in reverse document order.
242 * Implements traversal of the Ancestor access, in reverse document order.
248 * By the nature of the stateless traversal, the context node can not be
252 * @param context The context node of this traversal.
254 * @return the first node in the traversal.
262 * By the nature of the stateless traversal, the context node can not be
268 * @param context The context node of this traversal.
271 * @return the first node in the traversal.
281 * Implements traversal of the Attribute acces
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/ls/
LSSerializerFilter.java 15 import org.w3c.dom.traversal.NodeFilter;
21 * based on the <code>NodeFilter</code> interface defined in [<a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Traversal-Range-20001113'>DOM Level 2 Traversal and Range</a>]
57 * <br> Unlike [<a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Traversal-Range-20001113'>DOM Level 2 Traversal and Range</a>]
60 * <br> The constants used here are defined in [<a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Traversal-Range-20001113'>DOM Level 2 Traversal and Range</a>]
  /external/eigen/Eigen/src/Core/
Assign_MKL.h 70 Traversal = MayLinearize ? LinearVectorizedTraversal
76 template<typename Derived1, typename Derived2, typename UnaryOp, int Traversal, int Unrolling,
77 int VmlTraversal = vml_assign_traits<Derived1, Derived2, UnaryOp>::Traversal >
79 : assign_impl<Derived1, Eigen::CwiseUnaryOp<UnaryOp, Derived2>,Traversal,Unrolling,BuiltIn>
83 template<typename Derived1, typename Derived2, typename UnaryOp, int Traversal, int Unrolling>
84 struct vml_assign_impl<Derived1, Derived2, UnaryOp, Traversal, Unrolling, InnerVectorizedTraversal>
91 // assign_impl<Derived1,Eigen::CwiseUnaryOp<UnaryOp, Derived2>,Traversal,Unrolling,BuiltIn>::run(dst,src);
103 template<typename Derived1, typename Derived2, typename UnaryOp, int Traversal, int Unrolling>
104 struct vml_assign_impl<Derived1, Derived2, UnaryOp, Traversal, Unrolling, LinearVectorizedTraversal>
109 // assign_impl<Derived1,Eigen::CwiseUnaryOp<UnaryOp, Derived2>,Traversal,Unrolling,BuiltIn>::run(dst,src)
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/
suggest.h 40 class Traversal;
46 : TRAVERSAL(suggestPolicy ? suggestPolicy->getTraversal() : nullptr),
78 const Traversal *const TRAVERSAL;
suggest.cpp 27 #include "suggest/core/policy/traversal.h"
54 const float maxSpatialDistance = TRAVERSAL->getMaxSpatialDistance();
57 pointerIds, maxSpatialDistance, TRAVERSAL->getMaxPointerCount());
92 traverseSession->resetCache(TRAVERSAL->getMaxCacheSize(traverseSession->getInputSize(),
94 TRAVERSAL->getTerminalCacheSize());
109 DicNodeVector childDicNodes(TRAVERSAL->getDefaultExpandDicNodeSize());
113 const bool shouldDepthLevelCache = TRAVERSAL->shouldDepthLevelCache(traverseSession);
130 TRAVERSAL->canDoLookAheadCorrection(traverseSession, &dicNode);
137 TRAVERSAL->shouldNodeLevelCache(traverseSession, &dicNode);
161 const bool allowsErrorCorrections = TRAVERSAL->allowsErrorCorrections(&dicNode)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/wsgiref/
__init__.py 22 * router -- a simple middleware component that handles URL traversal
  /prebuilts/gdb/darwin-x86/lib/python2.7/xml/dom/
NodeFilter.py 2 # DOM2-Traversal-Range. It contains only constants.
  /prebuilts/gdb/linux-x86/lib/python2.7/wsgiref/
__init__.py 22 * router -- a simple middleware component that handles URL traversal
  /prebuilts/gdb/linux-x86/lib/python2.7/xml/dom/
NodeFilter.py 2 # DOM2-Traversal-Range. It contains only constants.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/
__init__.py 22 * router -- a simple middleware component that handles URL traversal
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
NodeFilter.py 2 # DOM2-Traversal-Range. It contains only constants.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/
__init__.py 22 * router -- a simple middleware component that handles URL traversal
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
NodeFilter.py 2 # DOM2-Traversal-Range. It contains only constants.
  /libcore/luni/src/main/java/org/w3c/dom/traversal/
NodeFilter.java 13 package org.w3c.dom.traversal;
21 * node. If the filter says to accept the node, the traversal logic returns
22 * it; otherwise, traversal looks for the next node and pretends that the
32 * <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Traversal-Range-20001113'>Document Object Model (DOM) Level 2 Traversal and Range Specification</a>.
76 * or traversal. Since attributes are never children of other nodes,
97 * position of the traversal. Since entities are not part of the
127 * position of the traversal. Since notations are not part of the
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/typing/
typing_suggest_policy.h 29 class Traversal;
38 AK_FORCE_INLINE const Traversal *getTraversal() const {
  /libcore/luni/src/main/java/org/w3c/dom/
DOMImplementationSource.java 33 * the string <code>"XML 3.0 Traversal +Events 2.0"</code> will
35 * 3.0 version, a module that support of the "Traversal" module for
51 * version number. This is something like: "XML 3.0 Traversal +Events

Completed in 514 milliseconds

1 2 3 4 5 6 7 8 91011>>