HomeSort by relevance Sort by last modified time
    Searched refs:IteratorType (Results 1 - 18 of 18) sorted by null

  /frameworks/compile/mclinker/include/mcld/ADT/
BinTree.h 87 template <class DataType, class Traits, class IteratorType>
88 class PolicyIteratorBase : public IteratorType {
95 typedef PolicyIteratorBase<value_type, Traits, IteratorType> Self;
101 typedef PolicyIteratorBase<value_type, nonconst_traits, IteratorType>
103 typedef PolicyIteratorBase<value_type, const_traits, IteratorType>
111 PolicyIteratorBase() : IteratorType() {}
113 PolicyIteratorBase(const iterator& X) : IteratorType(X.m_pNode) {}
115 explicit PolicyIteratorBase(NodeBase* X) : IteratorType(X) {}
121 return static_cast<node_type*>(IteratorType::m_pNode)->data;
125 return *static_cast<node_type*>(IteratorType::m_pNode)->data
    [all...]
  /frameworks/compile/mclinker/include/mcld/
InputTree.h 25 template <typename Traits, typename IteratorType>
26 class PolicyIterator<mcld::Input, Traits, IteratorType>
27 : public PolicyIteratorBase<Input, Traits, IteratorType> {
29 typedef PolicyIterator<Input, Traits, IteratorType> Self;
30 typedef PolicyIteratorBase<Input, Traits, IteratorType> Base;
31 typedef PolicyIterator<Input, typename Traits::nonconst_traits, IteratorType>
33 typedef PolicyIterator<Input, typename Traits::const_traits, IteratorType>
48 IteratorType::advance();
51 IteratorType::advance();
57 IteratorType::advance()
    [all...]
  /external/eigen/Eigen/src/Core/
CoreIterators.h 36 typedef internal::inner_iterator_selector<XprType, typename internal::evaluator_traits<XprType>::Kind> IteratorType;
62 IteratorType m_iter;
  /external/protobuf/src/google/protobuf/
reflection.h 67 typedef typename internal::RefTypeTraits<T>::iterator IteratorType;
81 typedef IteratorType iterator;
82 typedef IteratorType const_iterator;
175 typedef typename internal::RefTypeTraits<T>::iterator IteratorType;
203 typedef IteratorType iterator;
204 typedef IteratorType const_iterator;
map_test.cc 432 template <typename IteratorType>
435 IteratorType it = m->begin();
438 const IteratorType old = it;
446 const IteratorType after_growth = m->find(old->first);
447 TestEqualIterators<IteratorType>(old, after_growth, m->end());
461 TestEqualIterators<IteratorType>(old, m->find(old->first), m->end());
462 TestEqualIterators<IteratorType>(old, after_growth, m->end());
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
reflection.h 67 typedef typename internal::RefTypeTraits<T>::iterator IteratorType;
81 typedef IteratorType iterator;
82 typedef IteratorType const_iterator;
175 typedef typename internal::RefTypeTraits<T>::iterator IteratorType;
203 typedef IteratorType iterator;
204 typedef IteratorType const_iterator;
  /external/eigen/test/
sparse_basic.cpp 591 typedef typename SparseMatrixType::InnerIterator IteratorType;
596 IteratorType static_array[2];
597 static_array[0] = IteratorType(m2,0);
598 static_array[1] = IteratorType(m2,m2.outerSize()-1);
604 static_array[1] = IteratorType(m2,0);
611 std::vector<IteratorType> iters(2);
612 iters[0] = IteratorType(m2,0);
613 iters[1] = IteratorType(m2,m2.outerSize()-1);
  /external/libmojo/mojo/public/cpp/bindings/lib/
array_serialization.h 37 using IteratorType = decltype(
47 decltype(Traits::GetValue(std::declval<IteratorType&>()));
62 IteratorType iter_;
  /external/deqp/external/vulkancts/modules/vulkan/
vktTestPackage.cpp 97 template <typename InfoType, typename IteratorType>
99 IteratorType iter,
  /external/v8/src/parsing/
pattern-rewriter.cc 435 IteratorType::kNormal, kNoSourcePosition));
521 IteratorType::kNormal, kNoSourcePosition),
592 result, IteratorType::kNormal, nopos),
661 block_, target, IteratorType::kNormal);
parser.h 463 // [if (IteratorType == kAsync)]
471 IteratorType type, int pos);
479 bool finalize, IteratorType type,
664 IteratorType type);
667 IteratorType type, int pos);
674 IteratorType type);
    [all...]
parser.cc     [all...]
preparser.h     [all...]
parser-base.h     [all...]
  /external/v8/src/runtime/
runtime-debug.cc 144 template <class IteratorType>
146 Isolate* isolate, Handle<IteratorType> object) {
148 Handle<IteratorType> iterator = Handle<IteratorType>::cast(object);
152 case IteratorType::kKindKeys:
155 case IteratorType::kKindValues:
158 case IteratorType::kKindEntries:
    [all...]
  /external/clang/utils/TableGen/
ClangAttrEmitter.cpp 603 std::string IteratorType = getLowerName().str() + "_iterator";
607 OS << " typedef " << Type << "* " << IteratorType << ";\n";
608 OS << " " << IteratorType << " " << BeginFn << " const {"
610 OS << " " << IteratorType << " " << EndFn << " const {"
614 OS << " llvm::iterator_range<" << IteratorType << "> " << RangeName
    [all...]
  /external/v8/src/ast/
ast.h     [all...]
  /external/v8/src/interpreter/
bytecode-generator.cc     [all...]

Completed in 1021 milliseconds