HomeSort by relevance Sort by last modified time
    Searched defs:ElementType (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /external/jacoco/jacoco-maven-plugin/src/org/jacoco/maven/
RuleConfiguration.java 19 import org.jacoco.core.analysis.ICoverageNode.ElementType;
41 * TODO: use ElementType directly once Maven 3 is required.
44 rule.setElement(ElementType.valueOf(element));
  /external/llvm/tools/llvm-pdbdump/
VariableDumper.cpp 133 std::unique_ptr<PDBSymbol> ElementType = ArrayType->getElementType();
134 while (auto NestedArray = dyn_cast<PDBSymbolTypeArray>(ElementType.get())) {
138 ElementType = NestedArray->getElementType();
141 ElementType->dump(*this);
FunctionDumper.cpp 196 auto ElementType = Symbol.getSession().getSymbolById(ElementTypeId);
197 if (!ElementType)
200 ElementType->dump(*this);
  /external/opencv3/modules/flann/include/opencv2/flann/
nn_index.h 48 typedef typename Distance::ElementType ElementType;
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;
composite_index.h 74 typedef typename Distance::ElementType ElementType;
84 CompositeIndex(const Matrix<ElementType>& inputData, const IndexParams& params = CompositeIndexParams(),
175 void findNeighbors(ResultSet<DistanceType>& result, const ElementType* vec, const SearchParams& searchParams)
linear_index.h 53 typedef typename Distance::ElementType ElementType;
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_;
flann_base.hpp 73 NNIndex<Distance>* load_saved_index(const Matrix<typename Distance::ElementType>& dataset, const cv::String& filename, Distance distance)
75 typedef typename Distance::ElementType ElementType;
82 if (header.data_type != Datatype<ElementType>::type()) {
103 typedef typename Distance::ElementType ElementType;
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* vec, const SearchParams& searchParams
    [all...]
lsh_index.h 81 typedef typename Distance::ElementType ElementType;
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> >::const_iterator table_end = tables_.end()
    [all...]
autotuned_index.h 49 NNIndex<Distance>* create_index_by_type(const Matrix<typename Distance::ElementType>& dataset, const IndexParams& params, const Distance& distance);
73 typedef typename Distance::ElementType ElementType;
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_;
dist.h 108 typedef T ElementType;
141 typedef T ElementType;
206 typedef T ElementType;
263 typedef T ElementType;
327 typedef T ElementType;
384 typedef unsigned char ElementType;
421 typedef T ElementType;
480 typedef T ElementType;
539 typedef T ElementType;
594 typedef T ElementType;
    [all...]
hierarchical_clustering_index.h 83 typedef typename Distance::ElementType ElementType;
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;
kdtree_index.h 73 typedef typename Distance::ElementType ElementType;
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 val = vec[node->divfeat]
    [all...]
kdtree_single_index.h 73 typedef typename Distance::ElementType ElementType;
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 val = dataset_[ind[i]][dim]
    [all...]
  /libcore/ojluni/src/main/java/java/lang/annotation/
ElementType.java 39 public enum ElementType {
  /art/runtime/mirror/
array.h 109 typedef T ElementType;
  /external/dbus/bus/
config-parser-common.h 53 } ElementType;
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/
ICoverageNode.java 23 public enum ElementType {
74 public abstract ElementType getElementType();
  /external/opencv3/modules/flann/include/opencv2/
flann.hpp 111 typedef typename Distance::ElementType ElementType;
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_query((ElementType*)&query[0], 1, query.size())
    [all...]
  /dalvik/dx/src/com/android/dx/command/annotool/
Main.java 19 import java.lang.annotation.ElementType;
51 EnumSet<ElementType> eTypes = EnumSet.noneOf(ElementType.class);
78 eTypes.add(ElementType.valueOf(p.toUpperCase(Locale.ROOT)));
111 eTypes.add(ElementType.TYPE);
114 EnumSet<ElementType> set = eTypes.clone();
116 set.remove(ElementType.TYPE);
117 set.remove(ElementType.PACKAGE);
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
ElementType.java 23 public class ElementType {
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) {
157 public ElementType parent() {return theParent;}
175 public boolean canContain(ElementType other) {
274 public void setParent(ElementType parent) { theParent = parent; }
  /external/llvm/lib/Transforms/Scalar/
NaryReassociate.cpp 437 Type *ElementType = GEP->getType()->getElementType();
438 uint64_t ElementSize = DL->getTypeAllocSize(ElementType);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wsdxmldom.h 43 ElementType,
  /external/opencv3/modules/flann/src/
miniflann.cpp 313 typedef typename Distance::ElementType ElementType;
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;
467 int type = DataType<ElementType>::type;
472 ::cvflann::Matrix<ElementType> _query((ElementType*)query.data, query.rows, query.cols)
    [all...]
  /external/vixl/src/vixl/
invalset.h 48 // - 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* element, KeyType key)
    [all...]
  /frameworks/compile/slang/
slang_rs_export_type.cpp 216 const clang::Type *ElementType = GetConstantArrayElementType(CAT);
217 if (ElementType->isArrayType()) {
221 } else if (ElementType->isExtVectorType()) {
223 static_cast<const clang::ExtVectorType*>(ElementType);
240 if (TypeExportableHelper(ElementType, SPS, Context, VD,
394 const clang::Type *ElementType = GetExtVectorElementType(EVT);
396 if ((ElementType->getTypeClass() != clang::Type::Builtin) ||
397 (TypeExportableHelper(ElementType, SPS, Context, VD,
635 const clang::Type *ElementType = GetExtVectorElementType(EVT);
646 return ValidateTypeHelper(Context, C, ElementType, ND, Loc, SPS, true
    [all...]

Completed in 382 milliseconds

1 2 3 4