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

1 2 3

  /external/tensorflow/tensorflow/contrib/boosted_trees/lib/trees/
decision_tree.h 29 // Traverse given an instance, a sub-root and its set of features
32 static int Traverse(const DecisionTreeConfig& config, int32 sub_root_id,
decision_tree_test.cc 97 EXPECT_EQ(-1, DecisionTree::Traverse(tree_config, 0, example));
104 EXPECT_EQ(0, DecisionTree::Traverse(tree_config, 0, example));
111 EXPECT_EQ(-1, DecisionTree::Traverse(tree_config, 10, example));
128 EXPECT_EQ(2, DecisionTree::Traverse(tree_config, 0, *example_it));
131 EXPECT_EQ(1, DecisionTree::Traverse(tree_config, 0, *++example_it));
152 EXPECT_EQ(2, DecisionTree::Traverse(tree_config, 0, *example_it));
155 EXPECT_EQ(1, DecisionTree::Traverse(tree_config, 0, *++example_it));
173 EXPECT_EQ(2, DecisionTree::Traverse(tree_config, 0, *example_it));
176 EXPECT_EQ(1, DecisionTree::Traverse(tree_config, 0, *++example_it));
198 EXPECT_EQ(2, DecisionTree::Traverse(tree_config, 0, *example_it))
    [all...]
  /external/pdfium/xfa/fxfa/parser/
cxfa_traverse.cpp 26 constexpr wchar_t kName[] = L"traverse";
35 XFA_Element::Traverse,
  /external/tensorflow/tensorflow/contrib/boosted_trees/lib/learner/common/partitioners/
example_partitioner.cc 41 example_partition = boosted_trees::trees::DecisionTree::Traverse(
73 uint32 partition = boosted_trees::trees::DecisionTree::Traverse(
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/ianlancetaylor/demangle/
ast.go 19 // Traverse each element of an AST. If the function returns
21 Traverse(func(AST) bool)
116 func (n *Name) Traverse(fn func(AST) bool) {
161 func (t *Typed) Traverse(fn func(AST) bool) {
163 t.Name.Traverse(fn)
164 t.Type.Traverse(fn)
219 func (q *Qualified) Traverse(fn func(AST) bool) {
221 q.Scope.Traverse(fn)
222 q.Name.Traverse(fn)
305 func (t *Template) Traverse(fn func(AST) bool)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/ianlancetaylor/demangle/
ast.go 19 // Traverse each element of an AST. If the function returns
21 Traverse(func(AST) bool)
116 func (n *Name) Traverse(fn func(AST) bool) {
161 func (t *Typed) Traverse(fn func(AST) bool) {
163 t.Name.Traverse(fn)
164 t.Type.Traverse(fn)
219 func (q *Qualified) Traverse(fn func(AST) bool) {
221 q.Scope.Traverse(fn)
222 q.Name.Traverse(fn)
305 func (t *Template) Traverse(fn func(AST) bool)
    [all...]
  /external/v8/tools/clang/plugins/
FindBadConstructsAction.cpp 24 visitor_.Traverse(context);
FindBadConstructsConsumer.h 49 void Traverse(clang::ASTContext& context);
  /external/tensorflow/tensorflow/contrib/boosted_trees/lib/models/
multiple_additive_trees.cc 48 const int leaf_idx = trees::DecisionTree::Traverse(tree, 0, example);
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/perftest/
rapidjsontest.cpp 195 size_t Traverse(const T& value) {
201 count += Traverse(itr->value);
207 count += Traverse(*itr);
219 size_t count = Traverse(doc_);
  /external/clang/include/clang/AST/
RecursiveASTVisitor.h 79 /// 1. traverse the AST (i.e. go to each node);
101 /// These three method groups are tiered (Traverse* > WalkUpFrom* >
102 /// Visit*). A method (e.g. Traverse*) may call methods from the same
103 /// tier (e.g. other Traverse*) or one tier lower (e.g. WalkUpFrom*).
118 /// template pattern) and override any of the Traverse*, WalkUpFrom*,
122 /// users may override Traverse* and WalkUpFrom* to implement custom
165 /// \brief Return whether this visitor should traverse post-order.
169 /// dispatching to Traverse*() based on the argument's dynamic type.
188 /// Traverse*Type() based on the argument's getTypeClass() property.
195 /// Traverse*TypeLoc() based on the argument type's getTypeClass() property
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
RecursiveASTVisitor.h 90 /// 1. traverse the AST (i.e. go to each node);
112 /// These three method groups are tiered (Traverse* > WalkUpFrom* >
113 /// Visit*). A method (e.g. Traverse*) may call methods from the same
114 /// tier (e.g. other Traverse*) or one tier lower (e.g. WalkUpFrom*).
129 /// template pattern) and override any of the Traverse*, WalkUpFrom*,
133 /// users may override Traverse* and WalkUpFrom* to implement custom
176 /// \brief Return whether this visitor should traverse post-order.
180 /// dispatching to Traverse*() based on the argument's dynamic type.
199 /// Traverse*Type() based on the argument's getTypeClass() property.
206 /// Traverse*TypeLoc() based on the argument type's getTypeClass() property
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/AST/
RecursiveASTVisitor.h 90 /// 1. traverse the AST (i.e. go to each node);
112 /// These three method groups are tiered (Traverse* > WalkUpFrom* >
113 /// Visit*). A method (e.g. Traverse*) may call methods from the same
114 /// tier (e.g. other Traverse*) or one tier lower (e.g. WalkUpFrom*).
129 /// template pattern) and override any of the Traverse*, WalkUpFrom*,
133 /// users may override Traverse* and WalkUpFrom* to implement custom
176 /// \brief Return whether this visitor should traverse post-order.
180 /// dispatching to Traverse*() based on the argument's dynamic type.
199 /// Traverse*Type() based on the argument's getTypeClass() property.
206 /// Traverse*TypeLoc() based on the argument type's getTypeClass() property
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/AST/
RecursiveASTVisitor.h 90 /// 1. traverse the AST (i.e. go to each node);
112 /// These three method groups are tiered (Traverse* > WalkUpFrom* >
113 /// Visit*). A method (e.g. Traverse*) may call methods from the same
114 /// tier (e.g. other Traverse*) or one tier lower (e.g. WalkUpFrom*).
129 /// template pattern) and override any of the Traverse*, WalkUpFrom*,
133 /// users may override Traverse* and WalkUpFrom* to implement custom
176 /// \brief Return whether this visitor should traverse post-order.
180 /// dispatching to Traverse*() based on the argument's dynamic type.
199 /// Traverse*Type() based on the argument's getTypeClass() property.
206 /// Traverse*TypeLoc() based on the argument type's getTypeClass() property
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/AST/
RecursiveASTVisitor.h 90 /// 1. traverse the AST (i.e. go to each node);
112 /// These three method groups are tiered (Traverse* > WalkUpFrom* >
113 /// Visit*). A method (e.g. Traverse*) may call methods from the same
114 /// tier (e.g. other Traverse*) or one tier lower (e.g. WalkUpFrom*).
129 /// template pattern) and override any of the Traverse*, WalkUpFrom*,
133 /// users may override Traverse* and WalkUpFrom* to implement custom
176 /// \brief Return whether this visitor should traverse post-order.
180 /// dispatching to Traverse*() based on the argument's dynamic type.
199 /// Traverse*Type() based on the argument's getTypeClass() property.
206 /// Traverse*TypeLoc() based on the argument type's getTypeClass() property
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/AST/
RecursiveASTVisitor.h 90 /// 1. traverse the AST (i.e. go to each node);
112 /// These three method groups are tiered (Traverse* > WalkUpFrom* >
113 /// Visit*). A method (e.g. Traverse*) may call methods from the same
114 /// tier (e.g. other Traverse*) or one tier lower (e.g. WalkUpFrom*).
129 /// template pattern) and override any of the Traverse*, WalkUpFrom*,
133 /// users may override Traverse* and WalkUpFrom* to implement custom
176 /// \brief Return whether this visitor should traverse post-order.
180 /// dispatching to Traverse*() based on the argument's dynamic type.
199 /// Traverse*Type() based on the argument's getTypeClass() property.
206 /// Traverse*TypeLoc() based on the argument type's getTypeClass() property
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/AST/
RecursiveASTVisitor.h 90 /// 1. traverse the AST (i.e. go to each node);
112 /// These three method groups are tiered (Traverse* > WalkUpFrom* >
113 /// Visit*). A method (e.g. Traverse*) may call methods from the same
114 /// tier (e.g. other Traverse*) or one tier lower (e.g. WalkUpFrom*).
129 /// template pattern) and override any of the Traverse*, WalkUpFrom*,
133 /// users may override Traverse* and WalkUpFrom* to implement custom
176 /// \brief Return whether this visitor should traverse post-order.
180 /// dispatching to Traverse*() based on the argument's dynamic type.
199 /// Traverse*Type() based on the argument's getTypeClass() property.
206 /// Traverse*TypeLoc() based on the argument type's getTypeClass() property
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/AST/
RecursiveASTVisitor.h 90 /// 1. traverse the AST (i.e. go to each node);
112 /// These three method groups are tiered (Traverse* > WalkUpFrom* >
113 /// Visit*). A method (e.g. Traverse*) may call methods from the same
114 /// tier (e.g. other Traverse*) or one tier lower (e.g. WalkUpFrom*).
129 /// template pattern) and override any of the Traverse*, WalkUpFrom*,
133 /// users may override Traverse* and WalkUpFrom* to implement custom
176 /// \brief Return whether this visitor should traverse post-order.
180 /// dispatching to Traverse*() based on the argument's dynamic type.
199 /// Traverse*Type() based on the argument's getTypeClass() property.
206 /// Traverse*TypeLoc() based on the argument type's getTypeClass() property
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
RecursiveASTVisitor.h 90 /// 1. traverse the AST (i.e. go to each node);
112 /// These three method groups are tiered (Traverse* > WalkUpFrom* >
113 /// Visit*). A method (e.g. Traverse*) may call methods from the same
114 /// tier (e.g. other Traverse*) or one tier lower (e.g. WalkUpFrom*).
129 /// template pattern) and override any of the Traverse*, WalkUpFrom*,
133 /// users may override Traverse* and WalkUpFrom* to implement custom
176 /// \brief Return whether this visitor should traverse post-order.
180 /// dispatching to Traverse*() based on the argument's dynamic type.
199 /// Traverse*Type() based on the argument's getTypeClass() property.
206 /// Traverse*TypeLoc() based on the argument type's getTypeClass() property
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/AST/
RecursiveASTVisitor.h 90 /// 1. traverse the AST (i.e. go to each node);
112 /// These three method groups are tiered (Traverse* > WalkUpFrom* >
113 /// Visit*). A method (e.g. Traverse*) may call methods from the same
114 /// tier (e.g. other Traverse*) or one tier lower (e.g. WalkUpFrom*).
129 /// template pattern) and override any of the Traverse*, WalkUpFrom*,
133 /// users may override Traverse* and WalkUpFrom* to implement custom
176 /// \brief Return whether this visitor should traverse post-order.
180 /// dispatching to Traverse*() based on the argument's dynamic type.
199 /// Traverse*Type() based on the argument's getTypeClass() property.
206 /// Traverse*TypeLoc() based on the argument type's getTypeClass() property
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/AST/
RecursiveASTVisitor.h 90 /// 1. traverse the AST (i.e. go to each node);
112 /// These three method groups are tiered (Traverse* > WalkUpFrom* >
113 /// Visit*). A method (e.g. Traverse*) may call methods from the same
114 /// tier (e.g. other Traverse*) or one tier lower (e.g. WalkUpFrom*).
129 /// template pattern) and override any of the Traverse*, WalkUpFrom*,
133 /// users may override Traverse* and WalkUpFrom* to implement custom
176 /// \brief Return whether this visitor should traverse post-order.
180 /// dispatching to Traverse*() based on the argument's dynamic type.
199 /// Traverse*Type() based on the argument's getTypeClass() property.
206 /// Traverse*TypeLoc() based on the argument type's getTypeClass() property
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/AST/
RecursiveASTVisitor.h 90 /// 1. traverse the AST (i.e. go to each node);
112 /// These three method groups are tiered (Traverse* > WalkUpFrom* >
113 /// Visit*). A method (e.g. Traverse*) may call methods from the same
114 /// tier (e.g. other Traverse*) or one tier lower (e.g. WalkUpFrom*).
129 /// template pattern) and override any of the Traverse*, WalkUpFrom*,
133 /// users may override Traverse* and WalkUpFrom* to implement custom
176 /// \brief Return whether this visitor should traverse post-order.
180 /// dispatching to Traverse*() based on the argument's dynamic type.
199 /// Traverse*Type() based on the argument's getTypeClass() property.
206 /// Traverse*TypeLoc() based on the argument type's getTypeClass() property
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/AST/
RecursiveASTVisitor.h 90 /// 1. traverse the AST (i.e. go to each node);
112 /// These three method groups are tiered (Traverse* > WalkUpFrom* >
113 /// Visit*). A method (e.g. Traverse*) may call methods from the same
114 /// tier (e.g. other Traverse*) or one tier lower (e.g. WalkUpFrom*).
129 /// template pattern) and override any of the Traverse*, WalkUpFrom*,
133 /// users may override Traverse* and WalkUpFrom* to implement custom
176 /// \brief Return whether this visitor should traverse post-order.
180 /// dispatching to Traverse*() based on the argument's dynamic type.
199 /// Traverse*Type() based on the argument's getTypeClass() property.
206 /// Traverse*TypeLoc() based on the argument type's getTypeClass() property
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/AST/
RecursiveASTVisitor.h 90 /// 1. traverse the AST (i.e. go to each node);
112 /// These three method groups are tiered (Traverse* > WalkUpFrom* >
113 /// Visit*). A method (e.g. Traverse*) may call methods from the same
114 /// tier (e.g. other Traverse*) or one tier lower (e.g. WalkUpFrom*).
129 /// template pattern) and override any of the Traverse*, WalkUpFrom*,
133 /// users may override Traverse* and WalkUpFrom* to implement custom
176 /// \brief Return whether this visitor should traverse post-order.
180 /// dispatching to Traverse*() based on the argument's dynamic type.
199 /// Traverse*Type() based on the argument's getTypeClass() property.
206 /// Traverse*TypeLoc() based on the argument type's getTypeClass() property
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/AST/
RecursiveASTVisitor.h 90 /// 1. traverse the AST (i.e. go to each node);
112 /// These three method groups are tiered (Traverse* > WalkUpFrom* >
113 /// Visit*). A method (e.g. Traverse*) may call methods from the same
114 /// tier (e.g. other Traverse*) or one tier lower (e.g. WalkUpFrom*).
129 /// template pattern) and override any of the Traverse*, WalkUpFrom*,
133 /// users may override Traverse* and WalkUpFrom* to implement custom
176 /// \brief Return whether this visitor should traverse post-order.
180 /// dispatching to Traverse*() based on the argument's dynamic type.
199 /// Traverse*Type() based on the argument's getTypeClass() property.
206 /// Traverse*TypeLoc() based on the argument type's getTypeClass() property
    [all...]

Completed in 1917 milliseconds

1 2 3