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

  /external/deqp-deps/SPIRV-Tools/source/opt/
iterator.h 117 template <typename IteratorType>
120 IteratorRange(const IteratorType& b, const IteratorType& e)
122 IteratorRange(IteratorType&& b, IteratorType&& e)
125 IteratorType begin() const { return begin_; }
126 IteratorType end() const { return end_; }
132 IteratorType begin_;
133 IteratorType end_;
138 template <typename IteratorType>
    [all...]
  /external/swiftshader/third_party/SPIRV-Tools/source/opt/
iterator.h 117 template <typename IteratorType>
120 IteratorRange(const IteratorType& b, const IteratorType& e)
122 IteratorRange(IteratorType&& b, IteratorType&& e)
125 IteratorType begin() const { return begin_; }
126 IteratorType end() const { return end_; }
132 IteratorType begin_;
133 IteratorType end_;
138 template <typename IteratorType>
    [all...]
  /external/tensorflow/tensorflow/core/example/
feature_util.h 251 template <typename IteratorType>
252 void AppendFeatureValues(IteratorType first, IteratorType last,
255 typename std::iterator_traits<IteratorType>::value_type>::Type;
269 using IteratorType = typename ContainerType::const_iterator;
270 AppendFeatureValues<IteratorType>(container.begin(), container.end(),
276 template <typename IteratorType, typename ProtoType>
277 void AppendFeatureValues(IteratorType first, IteratorType last,
286 using IteratorType = typename ContainerType::const_iterator
    [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...]
  /external/v8/src/interpreter/
bytecode-generator.h 161 void BuildGetIterator(Expression* iterable, IteratorType hint);
168 IteratorType hint);
173 IteratorType hint);
bytecode-generator.cc 856 IteratorType type = IteratorType::kNormal)
861 inline IteratorType type() const { return type_; }
866 IteratorType type_;
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/
shape_tree.h 71 template <typename ContainerType, typename IteratorType, typename ValueType>
339 template <typename ContainerType, typename IteratorType, typename ValueType>
343 ShapeTreeIterator(ContainerType* nodes, IteratorType node,
390 IteratorType node_;
  /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/libchrome/mojo/public/cpp/bindings/lib/
array_serialization.h 36 using IteratorType = decltype(
46 decltype(Traits::GetValue(std::declval<IteratorType&>()));
61 IteratorType iter_;
  /external/v8/src/parsing/
parser.h 353 // [if (IteratorType == kAsync)]
362 IteratorType type, int pos);
370 bool finalize, IteratorType type,
547 IteratorType type);
550 IteratorType type, int pos);
553 IteratorType type);
557 IteratorType type);
    [all...]
pattern-rewriter.cc 447 factory()->NewVariableProxy(temp), current_value_, IteratorType::kNormal,
536 IteratorType::kNormal, kNoSourcePosition),
616 result, IteratorType::kNormal, nopos),
696 target, IteratorType::kNormal);
parser.cc     [all...]
preparser.h     [all...]
parser-base.h     [all...]
  /external/v8/src/runtime/
runtime-debug.cc 134 template <class IteratorType>
136 Isolate* isolate, Handle<IteratorType> object) {
138 Handle<IteratorType> iterator = Handle<IteratorType>::cast(object);
  /external/v8/src/builtins/
builtins-collections-gen.cc 627 template <typename IteratorType>
644 template <typename IteratorType, typename TableType>
646 TNode<IteratorType> const iterator);
725 template <typename IteratorType>
731 Node* const iterator = AllocateInNewSpace(IteratorType::kSize);
733 StoreObjectFieldRoot(iterator, IteratorType::kPropertiesOrHashOffset,
735 StoreObjectFieldRoot(iterator, IteratorType::kElementsOffset,
737 StoreObjectFieldNoWriteBarrier(iterator, IteratorType::kTableOffset, table);
738 StoreObjectFieldNoWriteBarrier(iterator, IteratorType::kIndexOffset,
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/
vktTestPackage.cpp 114 template <typename InfoType, typename IteratorType>
116 IteratorType iter,
  /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...]
prettyprinter.cc 461 is_async_iterator_error_ = node->hint() == IteratorType::kAsync;
    [all...]

Completed in 1142 milliseconds