Home
last modified time | relevance | path

Searched refs:vector_type (Results 1 – 7 of 7) sorted by relevance

/external/clang/include/clang/AST/
DUsuallyTinyPtrVector.h32 typedef std::vector<T*> vector_type; typedef
56 vector_type *Vec = reinterpret_cast<vector_type *>(Storage & ~0x01); in begin()
70 vector_type *Vec = reinterpret_cast<vector_type *>(Storage & ~0x01); in end()
79 vector_type *Vec = reinterpret_cast<vector_type *>(Storage & ~0x01); in size()
91 vector_type *Vec; in push_back()
95 Vec = new vector_type; in push_back()
99 Vec = reinterpret_cast<vector_type *>(Storage & ~0x01); in push_back()
108 delete reinterpret_cast<vector_type *>(Storage & ~0x01); in Destroy()
/external/llvm/include/llvm/ADT/
DSetVector.h43 typedef Vector vector_type; typedef
44 typedef typename vector_type::const_iterator iterator;
45 typedef typename vector_type::const_iterator const_iterator;
46 typedef typename vector_type::size_type size_type;
119 typename vector_type::iterator I = in remove()
158 vector_type vector_; ///< The vector.
/external/astl/include/
Dvector62 typedef vector<_T> vector_type;
71 typedef __wrapper_iterator<pointer,vector_type> iterator;
72 typedef __wrapper_iterator<const_pointer,vector_type> const_iterator;
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp2264 if (VectorType* vector_type = in ParseFunctionBody() local
2267 if (vector_type->getElementType() != Type::getInt1Ty(Context)) in ParseFunctionBody()
/external/llvm/bindings/ocaml/llvm/
Dllvm.mli403 (** [vector_type ty n] returns the array type containing [n] elements of the
405 val vector_type : lltype -> int -> lltype val
634 [vector_type (type_of elts.(0)) (Array.length elts)] and containing the
Dllvm.ml209 external vector_type : lltype -> int -> lltype = "llvm_vector_type"
/external/llvm/test/Bindings/Ocaml/
Dvmcore.ml166 insist ((vector_type i16_type 8) = (type_of c));