HomeSort by relevance Sort by last modified time
    Searched full:vector (Results 1551 - 1575 of 20677) sorted by null

<<61626364656667686970>>

  /external/clang/test/Index/
complete-exprs.cpp 11 class vector { class
13 vector(const T &, unsigned n);
15 vector(InputIterator first, InputIterator last);
18 template<typename T> void vector<T>::push_back(const T&) { }
26 vector<int>(foo(), foo());
59 // CHECK-CC1: ClassTemplate:{TypedText vector}{LeftAngle <}{Placeholder typename T}{RightAngle >} (50)
60 // CHECK-CC1: CXXConstructor:{TypedText vector}{LeftAngle <}{Placeholder typename T}{RightAngle >}{LeftParen (}{Placeholder const T &}{Comma , }{Placeholder unsigned int n}{RightParen )} (50)
61 // CHECK-CC1: FunctionTemplate:{ResultType void}{TypedText vector}{LeftAngle <}{Placeholder typename T}{RightAngle >}{LeftParen (}{Placeholder InputIterator first}{Comma , }{Placeholder InputIterator last}{RightParen )} (50)
67 // CHECK-CC2: ClassTemplate:{TypedText vector}{LeftAngle <}{Placeholder typename T}{RightAngle >} (50)
73 // CHECK-CC3: ClassTemplate:{TypedText vector}{LeftAngle <}{Placeholder typename T}{RightAngle >} (50
    [all...]
  /external/clang/test/Sema/
implicit-decl.c 9 int32_t *vector[16]; local
12 if (_CFCalendarDecomposeAbsoluteTimeV(compDesc, vector, compCount)) { // expected-note {{previous implicit declaration is here}} \
21 Boolean _CFCalendarDecomposeAbsoluteTimeV(const char *componentDesc, int32_t **vector, int32_t count) { // expected-error{{conflicting types for '_CFCalendarDecomposeAbsoluteTimeV'}}
vector-init.c 8 float4 foo2 = (float4){ 1.0, 2.0, 3.0, 4.0 , 5.0 }; // expected-warning{{excess elements in vector initializer}}
43 short4 arr2[2] = { test3_helper(), test3_helper() }; // expected-error 2 {{initializing 'short4' (vector of 4 'short' values) with an expression of incompatible type 'short8' (vector of 8 'short' values)}}
  /external/compiler-rt/test/asan/TestCases/
mmap_limit_mb.cc 17 #include <vector>
25 std::vector<char *> v;
28 for (std::vector<char *>::const_iterator it = v.begin(); it != v.end(); ++it)
  /external/deqp/framework/delibs/decpp/
deThreadSafeRingBuffer.cpp 28 #include <vector>
30 using std::vector;
92 vector<deUint16> m_lastPayload;
93 vector<deUint32> m_payloadSum;
134 vector<Producer*> producers;
135 vector<Consumer*> consumers;
144 for (vector<Consumer*>::iterator i = consumers.begin(); i != consumers.end(); i++)
148 for (vector<Producer*>::iterator i = producers.begin(); i != producers.end(); i++)
152 for (vector<Producer*>::iterator i = producers.begin(); i != producers.end(); i++)
160 for (vector<Consumer*>::iterator i = consumers.begin(); i != consumers.end(); i++
    [all...]
  /external/deqp/modules/glshared/
glsStateChangePerfTestCases.hpp 89 std::vector<deUint32> m_indexBuffers;
90 std::vector<deUint32> m_coordBuffers;
91 std::vector<deUint32> m_textures;
92 std::vector<glu::ShaderProgram*> m_programs;
93 std::vector<deUint32> m_framebuffers;
94 std::vector<deUint32> m_renderbuffers;
95 std::vector<deUint32> m_samplers;
96 std::vector<deUint32> m_vertexArrays;
102 std::vector<deUint16> m_indices;
104 std::vector<deUint64> m_interleavedResults
    [all...]
  /external/eigen/doc/snippets/
HouseholderSequence_HouseholderSequence.cpp 6 cout << "The first Householder vector is: v_0 = " << v0.transpose() << endl;
8 cout << "The second Householder vector is: v_1 = " << v1.transpose() << endl;
10 cout << "The third Householder vector is: v_2 = " << v2.transpose() << endl;
  /external/google-tv-pairing-protocol/cpp/src/polo/encoding/
hexadecimalencoder.h 19 #include <vector>
31 const std::vector<uint8_t>& secret) const;
34 virtual std::vector<uint8_t> DecodeToBytes(
  /external/libcxx/test/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.cons/
container.fail.cpp 19 #include <vector>
23 std::back_insert_iterator<std::vector<int> > i = std::vector<int>();
  /external/libcxx/test/iterators/stream.iterators/iterator.range/
begin_const.pass.cpp 14 #include <vector>
20 const std::vector<int> v(ia, ia + sizeof(ia)/sizeof(ia[0]));
21 std::vector<int>::const_iterator i = begin(v);
begin_non_const.pass.cpp 14 #include <vector>
20 std::vector<int> v(ia, ia + sizeof(ia)/sizeof(ia[0]));
21 std::vector<int>::iterator i = begin(v);
end_const.pass.cpp 14 #include <vector>
20 const std::vector<int> v(ia, ia + sizeof(ia)/sizeof(ia[0]));
21 std::vector<int>::const_iterator i = end(v);
end_non_const.pass.cpp 14 #include <vector>
20 std::vector<int> v(ia, ia + sizeof(ia)/sizeof(ia[0]));
21 std::vector<int>::iterator i = end(v);
  /external/libsepol/include/sepol/policydb/
flask_types.h 29 * An access vector (AV) is a collection of related permissions
30 * for a pair of SIDs. The bits within an access vector
32 * the object. The access vector interpretations are specified
  /external/llvm/lib/Target/X86/
README-UNIMPLEMENTED.txt 10 1) vector shifts
11 2) vector comparisons
12 3) vector fp<->int conversions: PR2683, PR2684, PR2685, PR2686, PR2688
  /external/mesa3d/src/mesa/main/
APIspec.dtd 8 <!ELEMENT proto (return, (param|vector)*)>
11 <!ELEMENT vector (param*)>
36 <!ATTLIST vector name NMTOKEN #REQUIRED
  /external/oprofile/gui/
oprof_start_util.h 17 #include <vector>
35 int do_exec_command(std::string const & cmd, std::vector<std::string> const & args = std::vector<std::string>());
  /external/oprofile/pp/
common_option.cpp 34 vector<string> image_path;
40 vector<string> verbose_strings;
80 vector<string> pre_parse_spec(vector<string> const & non_options)
82 vector<string> result;
97 options::spec const parse_spec(vector<string> non_options)
107 vector<string>::const_iterator it = non_options.begin();
108 vector<string>::const_iterator end = non_options.end();
169 vector<string> non_options;
236 merge_option handle_merge_option(vector<string> const & mergespec
    [all...]
  /external/regex-re2/re2/
prefilter_tree.h 38 // The Compile returns a vector of string in atom_vec.
44 void Compile(vector<string>* atom_vec);
51 void RegexpsGivenStrings(const vector<int>& matched_atoms,
52 vector<int>* regexps) const;
78 vector<int> regexps;
85 void AssignUniqueIds(vector<string>* atom_vec);
88 void PropagateMatch(const vector<int>& atom_ids,
107 vector<Entry> entries_;
114 vector<int> unfiltered_;
116 // vector of Prefilter for all regexps
    [all...]
  /external/sfntly/cpp/src/sfntly/port/
memory_output_stream.h 21 #include <vector>
28 // OutputStream backed by STL vector
46 std::vector<byte_t> store_;
  /external/stlport/test/eh/
bug.cpp 2 #include <vector>
20 std::vector<int> v;
26 std::cout << "vector fill: " << t.elapsed() << std::endl;
  /external/stlport/test/unit/
count_test.cpp 2 #include <vector>
46 vector <int> numbers(100);
59 vector <int> numbers(100);
fill_test.cpp 1 #include <vector>
32 vector <int> v(10);
48 vector <int> v(10);
  /external/valgrind/main/memcheck/tests/
writev1.stderr.exp 2 Syscall param writev(vector[...]) points to unaddressable byte(s)
8 Syscall param writev(vector) points to unaddressable byte(s)
14 Syscall param readv(vector) points to unaddressable byte(s)
  /frameworks/av/drm/mediadrm/plugins/clearkey/
ClearKeyTypes.h 23 #include <utils/Vector.h>
33 typedef android::KeyedVector<android::Vector<uint8_t>,
34 android::Vector<uint8_t> > KeyMap;

Completed in 761 milliseconds

<<61626364656667686970>>