Home
last modified time | relevance | path

Searched refs:IteratorType (Results 1 – 15 of 15) sorted by relevance

/external/protobuf/src/google/protobuf/
Dreflection.h67 typedef typename internal::RefTypeTraits<T>::iterator IteratorType; typedef
81 typedef IteratorType iterator;
82 typedef IteratorType const_iterator;
175 typedef typename internal::RefTypeTraits<T>::iterator IteratorType; typedef
203 typedef IteratorType iterator;
204 typedef IteratorType const_iterator;
Dmap_test.cc432 template <typename IteratorType>
435 IteratorType it = m->begin(); in TestOldVersusNewIterator()
438 const IteratorType old = it; in TestOldVersusNewIterator()
446 const IteratorType after_growth = m->find(old->first); in TestOldVersusNewIterator()
447 TestEqualIterators<IteratorType>(old, after_growth, m->end()); in TestOldVersusNewIterator()
461 TestEqualIterators<IteratorType>(old, m->find(old->first), m->end()); in TestOldVersusNewIterator()
462 TestEqualIterators<IteratorType>(old, after_growth, m->end()); in TestOldVersusNewIterator()
/external/eigen/Eigen/src/Core/
DCoreIterators.h36 …:inner_iterator_selector<XprType, typename internal::evaluator_traits<XprType>::Kind> IteratorType; typedef
62 IteratorType m_iter;
/external/eigen/test/
Dsparse_basic.cpp591 typedef typename SparseMatrixType::InnerIterator IteratorType; in sparse_basic() typedef
596 IteratorType static_array[2]; in sparse_basic()
597 static_array[0] = IteratorType(m2,0); in sparse_basic()
598 static_array[1] = IteratorType(m2,m2.outerSize()-1); in sparse_basic()
604 static_array[1] = IteratorType(m2,0); in sparse_basic()
611 std::vector<IteratorType> iters(2); in sparse_basic()
612 iters[0] = IteratorType(m2,0); in sparse_basic()
613 iters[1] = IteratorType(m2,m2.outerSize()-1); in sparse_basic()
/external/v8/src/parsing/
Dpattern-rewriter.cc435 IteratorType::kNormal, kNoSourcePosition)); in VisitArrayLiteral()
521 IteratorType::kNormal, kNoSourcePosition), in VisitArrayLiteral()
592 result, IteratorType::kNormal, nopos), in VisitArrayLiteral()
661 block_, target, IteratorType::kNormal); in VisitArrayLiteral()
Dparser.h471 IteratorType type, int pos);
479 bool finalize, IteratorType type,
664 IteratorType type);
667 IteratorType type, int pos);
674 IteratorType type);
Dparser.cc1842 Variable* result, IteratorType type, in BuildIteratorNextResult()
1852 if (type == IteratorType::kAsync) { in BuildIteratorNextResult()
1889 IteratorType::kNormal, each_keyword_pos); in InitializeForEachStatement()
2044 Statement* body, bool finalize, IteratorType type, int next_result_pos) { in InitializeForOfStatement()
4100 append_body, finalize, IteratorType::kNormal); in RewriteSpreads()
4293 factory()->NewGetIterator(iterable, IteratorType::kNormal, nopos); in RewriteYieldStar()
4376 IteratorType::kNormal); in RewriteYieldStar()
4744 IteratorType type) { in FinalizeIteratorUse()
4861 IteratorType type) { in BuildIteratorCloseForCompletion()
4927 if (type == IteratorType::kAsync) { in BuildIteratorCloseForCompletion()
[all …]
Dpreparser.h1331 IteratorType type, int next_result_pos = kNoSourcePosition) {
Dparser-base.h5796 IteratorType::kAsync, each_keyword_pos); in ParseForAwaitStatement()
5800 loop, each_variable, iterable, body, finalize, IteratorType::kAsync, in ParseForAwaitStatement()
/external/deqp/external/vulkancts/modules/vulkan/
DvktTestPackage.cpp97 template <typename InfoType, typename IteratorType>
99 IteratorType iter, in buildProgram()
/external/libmojo/mojo/public/cpp/bindings/lib/
Darray_serialization.h37 using IteratorType = decltype(
47 decltype(Traits::GetValue(std::declval<IteratorType&>()));
62 IteratorType iter_;
/external/v8/src/runtime/
Druntime-debug.cc144 template <class IteratorType>
146 Isolate* isolate, Handle<IteratorType> object) { in GetIteratorInternalProperties()
148 Handle<IteratorType> iterator = Handle<IteratorType>::cast(object); in GetIteratorInternalProperties()
152 case IteratorType::kKindKeys: in GetIteratorInternalProperties()
155 case IteratorType::kKindValues: in GetIteratorInternalProperties()
158 case IteratorType::kKindEntries: in GetIteratorInternalProperties()
/external/clang/utils/TableGen/
DClangAttrEmitter.cpp603 std::string IteratorType = getLowerName().str() + "_iterator"; in writeAccessors() local
607 OS << " typedef " << Type << "* " << IteratorType << ";\n"; in writeAccessors()
608 OS << " " << IteratorType << " " << BeginFn << " const {" in writeAccessors()
610 OS << " " << IteratorType << " " << EndFn << " const {" in writeAccessors()
614 OS << " llvm::iterator_range<" << IteratorType << "> " << RangeName in writeAccessors()
/external/v8/src/ast/
Dast.h2942 enum class IteratorType { kNormal, kAsync }; enum
2945 IteratorType hint() const { return hint_; } in hint()
2956 if (hint() == IteratorType::kAsync) { in AssignFeedbackSlots()
2981 explicit GetIterator(Expression* iterable, IteratorType hint, int pos) in GetIterator()
2984 IteratorType hint_;
3576 GetIterator* NewGetIterator(Expression* iterable, IteratorType hint, in NewGetIterator()
/external/v8/src/interpreter/
Dbytecode-generator.cc2999 if (expr->hint() == IteratorType::kAsync) { in VisitGetIterator()