HomeSort by relevance Sort by last modified time
    Searched full:vector (Results 1 - 25 of 8795) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/JavaScriptGlue/ForwardingHeaders/wtf/
Vector.h 1 #include <JavaScriptCore/Vector.h>
  /external/webkit/Source/WebKit/mac/ForwardingHeaders/wtf/
Vector.h 1 #import <JavaScriptCore/Vector.h>
  /external/webkit/Tools/DumpRenderTree/ForwardingHeaders/wtf/
Vector.h 1 #include <JavaScriptCore/Vector.h>
  /external/clang/lib/Headers/
altivec.h 39 static vector signed char __ATTRS_o_ai
40 vec_perm(vector signed char a, vector signed char b, vector unsigned char c);
42 static vector unsigned char __ATTRS_o_ai
43 vec_perm(vector unsigned char a,
44 vector unsigned char b,
45 vector unsigned char c);
47 static vector bool char __ATTRS_o_ai
48 vec_perm(vector bool char a, vector bool char b, vector unsigned char c)
    [all...]
  /prebuilts/sdk/renderscript/clang-include/
altivec.h 39 static vector signed char __ATTRS_o_ai
40 vec_perm(vector signed char a, vector signed char b, vector unsigned char c);
42 static vector unsigned char __ATTRS_o_ai
43 vec_perm(vector unsigned char a,
44 vector unsigned char b,
45 vector unsigned char c);
47 static vector bool char __ATTRS_o_ai
48 vec_perm(vector bool char a, vector bool char b, vector unsigned char c)
    [all...]
  /external/clang/test/Modules/Inputs/submodules/
vector.h 1 template<typename T> class vector { }; class
module.map 2 module vector { header "vector.h" }
  /build/tools/atree/
options.h 5 #include <vector>
9 extern vector<string> g_listFiles;
10 extern vector<string> g_inputBases;
  /external/webkit/Source/WebCore/ForwardingHeaders/wtf/
Vector.h 3 #include <JavaScriptCore/Vector.h>
  /cts/apps/CtsVerifier/include/colorchecker/
colorcheckertest.h 20 #include <vector>
42 const std::vector<std::vector<Vec2f> >* getCheckerCenterAdd() const {
43 std::vector<std::vector<Vec2f> >* returnPositions =
44 new std::vector<std::vector<Vec2f> >(
45 4, std::vector<Vec2f>(6, Vec2f(0.f, 0.f)));
55 const std::vector<std::vector<float> >* getCheckerRadiusAdd() const
    [all...]
  /frameworks/native/libs/utils/tests/
Vector_test.cpp 19 #include <utils/Vector.h>
40 Vector<int> vector; local
41 Vector<int> other;
42 vector.setCapacity(8);
44 vector.add(1);
45 vector.add(2);
46 vector.add(3);
48 EXPECT_EQ(vector.size(), 3);
50 // copy the vector
    [all...]
  /external/clang/test/Sema/
altivec-init.c 10 b = (v4)(5, 6, 7, 8, 9); // expected-warning {{excess elements in vector initializer}}
13 vector int vi;
14 vi = (vector int)(1);
15 vi = (vector int)(1, 2); // expected-error {{number of elements must be either one or match the size of the vector}}
16 vi = (vector int)(1, 2, 3, 4);
17 vi = (vector int)(1, 2, 3, 4, 5); // expected-warning {{excess elements in vector initializer}}
18 vi = (vector int){1};
19 vi = (vector int){1, 2}
    [all...]
  /external/clang/test/Parser/
altivec.c 25 vector char v_c;
26 vector signed char v_sc;
27 vector unsigned char v_uc;
28 vector short v_s;
29 vector signed short v_ss;
30 vector unsigned short v_us;
31 vector short int v_si;
32 vector signed short int v_ssi;
33 vector unsigned short int v_usi;
34 vector int v_i
    [all...]
cxx-altivec.cpp 25 vector char v_c;
26 vector signed char v_sc;
27 vector unsigned char v_uc;
28 vector short v_s;
29 vector signed short v_ss;
30 vector unsigned short v_us;
31 vector short int v_si;
32 vector signed short int v_ssi;
33 vector unsigned short int v_usi;
34 vector int v_i
    [all...]
  /external/v8/test/cctest/
test-strtod.cc 15 static Vector<const char> StringToVector(const char* str) {
16 return Vector<const char>(str, StrLength(str));
26 Vector<const char> vector; local
28 vector = StringToVector("0");
29 CHECK_EQ(0.0, Strtod(vector, 1));
30 CHECK_EQ(0.0, Strtod(vector, 2));
31 CHECK_EQ(0.0, Strtod(vector, -2));
32 CHECK_EQ(0.0, Strtod(vector, -999));
33 CHECK_EQ(0.0, Strtod(vector, +999))
    [all...]
  /external/javassist/sample/vector/
Sample.java 1 package sample.vector;
3 public class Sample extends java.util.Vector {
  /external/jmonkeyengine/engine/src/core-data/Common/ShaderLib/
Math.glsllib 1 /// Multiplies the vector by the quaternion, then returns the resultant vector.
  /external/stlport/test/compiler/
movable.cpp 2 #include <vector>
17 vector<S> v;
  /external/chromium/chrome/browser/sync/util/
data_encryption.h 10 #include <vector>
15 using std::vector;
17 vector<uint8> EncryptData(const string& data);
18 bool DecryptData(const vector<uint8>& in_data, string* out_data);
  /external/clang/test/CodeGenCXX/
noinline-template.cpp 6 // CHECK: define linkonce_odr void @_ZN6VectorIiE13growStorageByEv(%struct.Vector* %this) nounwind noinline
8 template <class Ty> struct Vector {
11 template <class T> __attribute__((noinline)) void Vector<T>::growStorageBy() {
14 Vector<int> strs;
  /external/clang/test/SemaCXX/
for-range-unused.cpp 6 struct Vector {
19 Vector<int> vector; local
20 vector.doIt();
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
ASN1EncodableVector.java 3 import java.util.Vector;
11 Vector v = new Vector();
  /external/clang/test/Modules/Inputs/
module_private_left.h 16 __module_private__ class vector;
19 __module_private__ class vector { class
22 vector<float> vec_float;
redecl-merge-bottom.h 22 template<typename T> class Vector;
24 template<typename T> class Vector;
26 template<typename T> class Vector;
  /external/clang/test/SemaTemplate/
qualified-names-diag.cpp 4 template<typename T> class vector { }; // expected-note{{candidate}} class in namespace:std
13 std::vector<INT> v1;
14 vector<Real> v2;

Completed in 1555 milliseconds

1 2 3 4 5 6 7 8 91011>>