Searched defs:ElementType (Results 1 - 25 of 57) sorted by relevance

123

/external/llvm/tools/llvm-pdbdump/
H A DVariableDumper.cpp133 std::unique_ptr<PDBSymbol> ElementType = ArrayType->getElementType(); local
134 while (auto NestedArray = dyn_cast<PDBSymbolTypeArray>(ElementType.get())) {
138 ElementType = NestedArray->getElementType();
141 ElementType->dump(*this);
H A DFunctionDumper.cpp196 auto ElementType = Symbol.getSession().getSymbolById(ElementTypeId); local
197 if (!ElementType)
200 ElementType->dump(*this);
/external/opencv3/modules/flann/include/opencv2/flann/
H A Dnn_index.h48 typedef typename Distance::ElementType ElementType; typedef in class:cvflann::NNIndex
68 virtual void knnSearch(const Matrix<ElementType>& queries, Matrix<int>& indices, Matrix<DistanceType>& dists, int knn, const SearchParams& params)
102 virtual int radiusSearch(const Matrix<ElementType>& query, Matrix<int>& indices, Matrix<DistanceType>& dists, float radius, const SearchParams& params)
172 virtual void findNeighbors(ResultSet<DistanceType>& result, const ElementType* vec, const SearchParams& searchParams) = 0;
H A Dlinear_index.h53 typedef typename Distance::ElementType ElementType; typedef in class:cvflann::LinearIndex
57 LinearIndex(const Matrix<ElementType>& inputData, const IndexParams& params = LinearIndexParams(),
106 void findNeighbors(ResultSet<DistanceType>& resultSet, const ElementType* vec, const SearchParams& /*searchParams*/)
108 ElementType* data = dataset_.data;
122 const Matrix<ElementType> dataset_;
H A Dcomposite_index.h74 typedef typename Distance::ElementType ElementType; typedef in class:cvflann::CompositeIndex
84 CompositeIndex(const Matrix<ElementType>& inputData, const IndexParams& params = CompositeIndexParams(),
175 void findNeighbors(ResultSet<DistanceType>& result, const ElementType* vec, const SearchParams& searchParams)
H A Dflann_base.hpp73 NNIndex<Distance>* load_saved_index(const Matrix<typename Distance::ElementType>& dataset, const cv::String& filename, Distance distance)
75 typedef typename Distance::ElementType ElementType; typedef
82 if (header.data_type != Datatype<ElementType>::type()) {
103 typedef typename Distance::ElementType ElementType; typedef in class:cvflann::Index
106 Index(const Matrix<ElementType>& features, const IndexParams& params, Distance distance = Distance() )
214 void knnSearch(const Matrix<ElementType>& queries, Matrix<int>& indices, Matrix<DistanceType>& dists, int knn, const SearchParams& params)
228 int radiusSearch(const Matrix<ElementType>& query, Matrix<int>& indices, Matrix<DistanceType>& dists, float radius, const SearchParams& params)
236 void findNeighbors(ResultSet<DistanceType>& result, const ElementType* ve
[all...]
H A Dlsh_index.h81 typedef typename Distance::ElementType ElementType; typedef in class:cvflann::LshIndex
89 LshIndex(const Matrix<ElementType>& input_data, const IndexParams& params = LshIndexParams(),
114 lsh::LshTable<ElementType>& table = tables_[i];
115 table = lsh::LshTable<ElementType>(feature_size_, key_size_);
190 virtual void knnSearch(const Matrix<ElementType>& queries, Matrix<int>& indices, Matrix<DistanceType>& dists, int knn, const SearchParams& params)
220 void findNeighbors(ResultSet<DistanceType>& result, const ElementType* vec, const SearchParams& /*searchParams*/)
263 void getNeighbors(const ElementType* vec, bool /*do_radius*/, float radius, bool do_k, unsigned int k_nn,
270 typename std::vector<lsh::LshTable<ElementType> >::const_iterator table = tables_.begin();
271 typename std::vector<lsh::LshTable<ElementType> >
[all...]
H A Dautotuned_index.h49 NNIndex<Distance>* create_index_by_type(const Matrix<typename Distance::ElementType>& dataset, const IndexParams& params, const Distance& distance);
73 typedef typename Distance::ElementType ElementType; typedef in class:cvflann::AutotunedIndex
76 AutotunedIndex(const Matrix<ElementType>& inputData, const IndexParams& params = AutotunedIndexParams(), Distance d = Distance()) :
151 virtual void findNeighbors(ResultSet<DistanceType>& result, const ElementType* vec, const SearchParams& searchParams)
500 Matrix<ElementType> testDataset = random_sample(dataset_, samples);
562 Matrix<ElementType> sampledDataset_;
563 Matrix<ElementType> testDataset_;
571 const Matrix<ElementType> dataset_;
H A Ddist.h108 typedef T ElementType; typedef in struct:cvflann::L2_Simple
141 typedef T ElementType; typedef in struct:cvflann::L2
206 typedef T ElementType; typedef in struct:cvflann::L1
263 typedef T ElementType; typedef in struct:cvflann::MinkowskiDistance
327 typedef T ElementType; typedef in struct:cvflann::MaxDistance
384 typedef unsigned char ElementType; typedef in struct:cvflann::HammingLUT
421 typedef T ElementType; typedef in struct:cvflann::Hamming
480 typedef T ElementType; typedef in struct:cvflann::Hamming2
539 typedef T ElementType; typedef in struct:cvflann::HistIntersectionDistance
594 typedef T ElementType; typedef in struct:cvflann::HellingerDistance
643 typedef T ElementType; typedef in struct:cvflann::ChiSquareDistance
697 typedef T ElementType; typedef in struct:cvflann::KL_Divergence
837 typedef typename Distance::ElementType ElementType; typedef
897 typedef typename Distance::ElementType ElementType; typedef
[all...]
H A Dhierarchical_clustering_index.h83 typedef typename Distance::ElementType ElementType; typedef in class:cvflann::HierarchicalClusteringIndex
357 HierarchicalClusteringIndex(const Matrix<ElementType>& inputData, const IndexParams& index_params = HierarchicalClusteringIndexParams(),
547 void findNeighbors(ResultSet<DistanceType>& result, const ElementType* vec, const SearchParams& searchParams)
656 ElementType* point = dataset[dsindices[i]];
746 void findNN(NodePtr node, ResultSet<DistanceType>& result, const ElementType* vec, int& checks, int maxChecks,
789 const Matrix<ElementType> dataset;
H A Dkdtree_index.h73 typedef typename Distance::ElementType ElementType; typedef in class:cvflann::KDTreeIndex
84 KDTreeIndex(const Matrix<ElementType>& inputData, const IndexParams& params = KDTreeIndexParams(),
199 void findNeighbors(ResultSet<DistanceType>& result, const ElementType* vec, const SearchParams& searchParams)
316 ElementType* v = dataset_[ind[j]];
327 ElementType* v = dataset_[ind[j]];
419 void getExactNeighbors(ResultSet<DistanceType>& result, const ElementType* vec, float epsError)
437 void getNeighbors(ResultSet<DistanceType>& result, const ElementType* vec, int maxCheck, float epsError)
467 void searchLevel(ResultSet<DistanceType>& result_set, const ElementType* vec, NodePtr node, DistanceType mindist, int& checkCount, int maxCheck,
493 ElementType va
[all...]
H A Dkdtree_single_index.h73 typedef typename Distance::ElementType ElementType; typedef in class:cvflann::KDTreeSingleIndex
84 KDTreeSingleIndex(const Matrix<ElementType>& inputData, const IndexParams& params = KDTreeSingleIndexParams(),
123 data_ = cvflann::Matrix<ElementType>(new ElementType[size_*dim_], size_, dim_);
212 void knnSearch(const Matrix<ElementType>& queries, Matrix<int>& indices, Matrix<DistanceType>& dists, int knn, const SearchParams& params)
241 void findNeighbors(ResultSet<DistanceType>& result, const ElementType* vec, const SearchParams& searchParams)
389 void computeMinMax(int* ind, int count, int dim, ElementType& min_elem, ElementType& max_elem)
394 ElementType va
[all...]
/external/dbus/bus/
H A Dconfig-parser-common.h53 } ElementType; typedef in typeref:enum:__anon3571
55 ElementType bus_config_parser_element_name_to_type (const char *element_name);
56 const char* bus_config_parser_element_type_to_name (ElementType type);
/external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
H A DICoverageNode.java23 public enum ElementType { enum in interface:ICoverageNode
74 public abstract ElementType getElementType();
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DElementType.java23 public class ElementType { class
32 private ElementType theParent; // parent of this element type
36 Construct an ElementType:
50 public ElementType(String name, int model, int memberOf, int flags, Schema schema) { method in class:ElementType
157 public ElementType parent() {return theParent;}
175 public boolean canContain(ElementType other) {
274 public void setParent(ElementType parent) { theParent = parent; }
/external/llvm/include/llvm/IR/
H A DDerivedTypes.h341 static ArrayType *get(Type *ElementType, uint64_t NumElements);
368 static VectorType *get(Type *ElementType, unsigned NumElements);
452 static PointerType *get(Type *ElementType, unsigned AddressSpace);
456 static PointerType *getUnqual(Type *ElementType) { argument
457 return PointerType::get(ElementType, 0);
/external/opencv3/modules/flann/include/opencv2/
H A Dflann.hpp111 typedef typename Distance::ElementType ElementType; typedef in class:cv::flann::GenericIndex
216 void knnSearch(const std::vector<ElementType>& query, std::vector<int>& indices,
220 int radiusSearch(const std::vector<ElementType>& query, std::vector<int>& indices,
253 CV_Assert(dataset.type() == CvType<ElementType>::type());
255 ::cvflann::Matrix<ElementType> m_dataset((ElementType*)dataset.ptr<ElementType>(0), dataset.rows, dataset.cols);
271 void GenericIndex<Distance>::knnSearch(const std::vector<ElementType>& query, std::vector<int>& indices, std::vector<DistanceType>& dists, int knn, const ::cvflann::SearchParams& searchParams)
273 ::cvflann::Matrix<ElementType> m_quer
347 typedef typename L2<T>::ElementType ElementType; typedef in class:cv::flann::Index_
521 typedef typename Distance::ElementType ElementType; typedef
[all...]
/external/clang/lib/CodeGen/
H A DCGCXXABI.cpp208 QualType ElementType) {
204 InitializeArrayCookie(CodeGenFunction &CGF, Address NewPtr, llvm::Value *NumElements, const CXXNewExpr *expr, QualType ElementType) argument
/external/llvm/bindings/go/llvm/
H A DDIBuilderBindings.cpp173 LLVMMetadataRef ElementType,
177 unwrap<DIType>(ElementType),
170 LLVMDIBuilderCreateArrayType(LLVMDIBuilderRef Dref, uint64_t SizeInBits, uint64_t AlignInBits, LLVMMetadataRef ElementType, LLVMMetadataRef Subscripts) argument
/external/llvm/lib/Transforms/Scalar/
H A DNaryReassociate.cpp437 Type *ElementType = GEP->getType()->getElementType(); local
438 uint64_t ElementSize = DL->getTypeAllocSize(ElementType);
/external/vixl/src/vixl/
H A Dinvalset.h48 // - The templated class `ElementType` must provide comparison operators so that
69 // 'ElementType' and 'KeyType' are respectively the types of the elements and
74 class ElementType, \
82 ElementType, N_PREALLOCATED_ELEMENTS, \
96 void insert(const ElementType& element);
99 void erase(const ElementType& element);
111 const ElementType min_element();
116 static bool IsValid(const ElementType& element);
117 static KeyType Key(const ElementType& element);
118 static void SetKey(ElementType* elemen
227 typedef typename S::_ElementType ElementType; typedef in class:vixl::InvalSetIterator
[all...]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramState.h294 SVal getLValue(QualType ElementType, SVal Idx, SVal Base) const;
721 inline SVal ProgramState::getLValue(QualType ElementType, SVal Idx, SVal Base) const{ argument
723 return getStateManager().StoreMgr->getLValueElement(ElementType, *N, Base);
/external/opencv3/modules/flann/src/
H A Dminiflann.cpp313 typedef typename Distance::ElementType ElementType; typedef
314 if(DataType<ElementType>::type != data.type())
319 ::cvflann::Matrix<ElementType> dataset((ElementType*)data.data, data.rows, data.cols);
465 typedef typename Distance::ElementType ElementType; typedef
467 int type = DataType<ElementType>::type;
472 ::cvflann::Matrix<ElementType> _query((ElementType*)quer
491 typedef typename Distance::ElementType ElementType; typedef
704 typedef typename Distance::ElementType ElementType; typedef
[all...]
/external/clang/lib/AST/
H A DType.cpp78 QualType ElementType,
80 uint64_t ElementSize = Context.getTypeSizeInChars(ElementType).getQuantity();
150 QualType ElementType,
156 ElementType->isVariablyModifiedType(),
157 (ElementType->containsUnexpandedParameterPack() ||
159 Context(Context), SizeExpr(SizeExpr), ElementType(ElementType),
167 QualType ElementType, Expr *SizeExpr) {
168 ID.AddPointer(ElementType.getAsOpaquePtr());
182 ElementType(vecTyp
77 getNumAddressingBits(ASTContext &Context, QualType ElementType, const llvm::APInt &NumElements) argument
148 DependentSizedExtVectorType(const ASTContext &Context, QualType ElementType, QualType can, Expr *SizeExpr, SourceLocation loc) argument
165 Profile(llvm::FoldingSetNodeID &ID, const ASTContext &Context, QualType ElementType, Expr *SizeExpr) argument
[all...]
/external/llvm/lib/IR/
H A DType.cpp680 ArrayType *ArrayType::get(Type *ElementType, uint64_t NumElements) { argument
681 assert(isValidElementType(ElementType) && "Invalid type for array element!");
683 LLVMContextImpl *pImpl = ElementType->getContext().pImpl;
685 pImpl->ArrayTypes[std::make_pair(ElementType, NumElements)];
688 Entry = new (pImpl->TypeAllocator) ArrayType(ElementType, NumElements);
707 VectorType *VectorType::get(Type *ElementType, unsigned NumElements) { argument
709 assert(isValidElementType(ElementType) && "Element type of a VectorType must "
713 LLVMContextImpl *pImpl = ElementType->getContext().pImpl;
714 VectorType *&Entry = ElementType->getContext().pImpl
715 ->VectorTypes[std::make_pair(ElementType, NumElement
[all...]

Completed in 2179 milliseconds

123