HomeSort by relevance Sort by last modified time
    Searched refs:Vector (Results 26 - 50 of 2060) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/Index/
file-refs.c 14 } Vector;
16 int vector_get_x(Vector v) {
47 // CHECK-NEXT: TypeRef=Vector:14:3
48 // CHECK-NEXT: TypedefDecl=Vector:14:3 (Definition) =[14:3 - 14:9]
49 // CHECK-NEXT: TypeRef=Vector:14:3 =[16:18 - 16:24]
  /external/google-breakpad/src/testing/gtest/test/
gtest-typed-test2_test.cc 32 #include <vector>
42 INSTANTIATE_TYPED_TEST_CASE_P(Vector, ContainerTest,
43 testing::Types<std::vector<int> >);
  /external/googletest/googletest/test/
gtest-typed-test2_test.cc 32 #include <vector>
42 INSTANTIATE_TYPED_TEST_CASE_P(Vector, ContainerTest,
43 testing::Types<std::vector<int> >);
  /external/v8/testing/gtest/test/
gtest-typed-test2_test.cc 32 #include <vector>
42 INSTANTIATE_TYPED_TEST_CASE_P(Vector, ContainerTest,
43 testing::Types<std::vector<int> >);
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest-typed-test2_test.cc 32 #include <vector>
42 INSTANTIATE_TYPED_TEST_CASE_P(Vector, ContainerTest,
43 testing::Types<std::vector<int> >);
  /frameworks/av/media/libmedia/include/media/
DrmSessionClientInterface.h 21 #include <utils/Vector.h>
26 virtual bool reclaimSession(const Vector<uint8_t>& sessionId) = 0;
  /libcore/ojluni/src/main/java/sun/security/x509/
AttributeNameEnumeration.java 28 import java.util.Vector;
39 public class AttributeNameEnumeration extends Vector<String> {
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/test/
gtest-typed-test2_test.cc 32 #include <vector>
42 INSTANTIATE_TYPED_TEST_CASE_P(Vector, ContainerTest,
43 testing::Types<std::vector<int> >);
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
WhitespaceInfoPaths.java 23 import java.util.Vector;
36 private Vector m_elements;
46 public void setElements(Vector elems)
59 Vector getElements()
  /frameworks/base/tools/split-select/
SplitSelector.h 22 #include <utils/Vector.h>
32 explicit SplitSelector(const android::Vector<SplitDescription>& splits);
34 android::Vector<SplitDescription> getBestSplits(const SplitDescription& target) const;
39 android::Vector<android::SortedVector<SplitDescription> > mGroups;
  /frameworks/native/libs/ui/include/ui/
FrameStats.h 22 #include <utils/Vector.h>
40 Vector<nsecs_t> desiredPresentTimesNano;
45 Vector<nsecs_t> actualPresentTimesNano;
53 Vector<nsecs_t> frameReadyTimesNano;
  /external/clang/test/CodeGenCXX/
sanitize-dtor-nontrivial-virtual-base.cpp 5 class Vector {
8 ~Vector() {
35 Vector<int> v;
46 // Derived: int, Vector, Base, VirtualBase
71 // poison int, ignore vector, poison int
  /external/eigen/bench/btl/generic_bench/init/
init_vector.hh 23 // The Vector class must satisfy the following part of STL vector concept :
27 template<double init_function(int), class Vector>
28 void init_vector(Vector & X, int size){
33 X[i]=typename Vector::value_type(init_function(i));
  /system/chre/apps/wifi_offload/include/chre/apps/wifi_offload/
scan_result_message.h 27 * Container for vector of scan results that provides serialization methods
38 void SetScanResults(const Vector<ScanResult> &results);
39 void GetScanResults(Vector<ScanResult> *results);
47 Vector<ScanResult> scan_results_;
  /external/deqp/framework/common/
tcuVector.hpp 23 * \brief Generic vector template.
40 explicit VecAccess (Vector<T, VecSize>& v, int x, int y);
41 explicit VecAccess (Vector<T, VecSize>& v, int x, int y, int z);
42 explicit VecAccess (Vector<T, VecSize>& v, int x, int y, int z, int w);
44 VecAccess& operator= (const Vector<T, Size>& v);
46 operator Vector<T, Size> (void) const;
49 Vector<T, VecSize>& m_vector;
54 VecAccess<T, VecSize, Size>::VecAccess (Vector<T, VecSize>& v, int x, int y)
63 VecAccess<T, VecSize, Size>::VecAccess (Vector<T, VecSize>& v, int x, int y, int z)
73 VecAccess<T, VecSize, Size>::VecAccess (Vector<T, VecSize>& v, int x, int y, int z, int w
    [all...]
  /external/v8/src/parsing/
duplicate-finder.h 19 bool AddOneByteSymbol(Vector<const uint8_t> key);
20 bool AddTwoByteSymbol(Vector<const uint16_t> key);
23 bool AddSymbol(Vector<const uint8_t> key, bool is_one_byte);
28 uint8_t* BackupKey(Vector<const uint8_t> key, bool is_one_byte);
36 static uint32_t Hash(Vector<const uint8_t> key, bool is_one_byte);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
NoSuchElementExceptionTest.java 21 import java.util.Vector;
34 Vector v = new Vector();
52 Vector v = new Vector();
  /external/llvm/include/llvm/ADT/
UniqueVector.h 16 #include <vector>
22 /// unique entry that is added. T is the type of entries in the vector. This
27 typedef typename std::vector<T> VectorType;
35 // Vector - ID ordered vector of entries. Entries can be indexed by ID - 1.
37 VectorType Vector;
40 /// insert - Append entry to the vector if it doesn't already exist. Returns
50 Val = static_cast<unsigned>(Vector.size()) + 1;
52 // Insert in vector.
53 Vector.push_back(Entry)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
UniqueVector.h 16 #include <vector>
22 /// unique entry that is added. T is the type of entries in the vector. This
27 typedef typename std::vector<T> VectorType;
35 // Vector - ID ordered vector of entries. Entries can be indexed by ID - 1.
37 VectorType Vector;
40 /// insert - Append entry to the vector if it doesn't already exist. Returns
50 Val = static_cast<unsigned>(Vector.size()) + 1;
52 // Insert in vector.
53 Vector.push_back(Entry)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ADT/
UniqueVector.h 16 #include <vector>
22 /// unique entry that is added. T is the type of entries in the vector. This
27 using VectorType = typename std::vector<T>;
35 // Vector - ID ordered vector of entries. Entries can be indexed by ID - 1.
36 VectorType Vector;
39 /// insert - Append entry to the vector if it doesn't already exist. Returns
49 Val = static_cast<unsigned>(Vector.size()) + 1;
51 // Insert in vector.
52 Vector.push_back(Entry)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ADT/
UniqueVector.h 16 #include <vector>
22 /// unique entry that is added. T is the type of entries in the vector. This
27 using VectorType = typename std::vector<T>;
35 // Vector - ID ordered vector of entries. Entries can be indexed by ID - 1.
36 VectorType Vector;
39 /// insert - Append entry to the vector if it doesn't already exist. Returns
49 Val = static_cast<unsigned>(Vector.size()) + 1;
51 // Insert in vector.
52 Vector.push_back(Entry)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/ADT/
UniqueVector.h 16 #include <vector>
22 /// unique entry that is added. T is the type of entries in the vector. This
27 using VectorType = typename std::vector<T>;
35 // Vector - ID ordered vector of entries. Entries can be indexed by ID - 1.
36 VectorType Vector;
39 /// insert - Append entry to the vector if it doesn't already exist. Returns
49 Val = static_cast<unsigned>(Vector.size()) + 1;
51 // Insert in vector.
52 Vector.push_back(Entry)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/ADT/
UniqueVector.h 16 #include <vector>
22 /// unique entry that is added. T is the type of entries in the vector. This
27 using VectorType = typename std::vector<T>;
35 // Vector - ID ordered vector of entries. Entries can be indexed by ID - 1.
36 VectorType Vector;
39 /// insert - Append entry to the vector if it doesn't already exist. Returns
49 Val = static_cast<unsigned>(Vector.size()) + 1;
51 // Insert in vector.
52 Vector.push_back(Entry)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/ADT/
UniqueVector.h 16 #include <vector>
22 /// unique entry that is added. T is the type of entries in the vector. This
27 using VectorType = typename std::vector<T>;
35 // Vector - ID ordered vector of entries. Entries can be indexed by ID - 1.
36 VectorType Vector;
39 /// insert - Append entry to the vector if it doesn't already exist. Returns
49 Val = static_cast<unsigned>(Vector.size()) + 1;
51 // Insert in vector.
52 Vector.push_back(Entry)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/ADT/
UniqueVector.h 16 #include <vector>
22 /// unique entry that is added. T is the type of entries in the vector. This
27 using VectorType = typename std::vector<T>;
35 // Vector - ID ordered vector of entries. Entries can be indexed by ID - 1.
36 VectorType Vector;
39 /// insert - Append entry to the vector if it doesn't already exist. Returns
49 Val = static_cast<unsigned>(Vector.size()) + 1;
51 // Insert in vector.
52 Vector.push_back(Entry)
    [all...]

Completed in 1389 milliseconds

12 3 4 5 6 7 8 91011>>