Searched defs:pair (Results 1 - 25 of 130) sorted by path

123456

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/bison/src/
H A Dmuscle-tab.c31 /* A key-value pair, along with storage that can be reclaimed when
32 this pair is no longer needed. */
207 char *pair; local
214 pair = obstack_finish (&muscle_obstack);
215 muscle_grow (muscle, pair, ",\n");
216 obstack_free (&muscle_obstack, pair);
/external/ceres-solver/internal/ceres/
H A Dincomplete_lq_factorization.cc102 bool operator()(const pair<int, double>& lhs, argument
103 const pair<int, double>& rhs) const {
117 vector<pair<int, double> >* scratch,
136 pair<int, double>& entry = (*scratch)[scratch_count];
153 const pair<int, double>& entry = (*scratch)[i];
195 vector<pair<int, double> > scratch(num_cols);
/external/clang/lib/CodeGen/
H A DCGObjC.cpp927 ComplexPairTy pair = EmitLoadOfComplex(LV, SourceLocation()); local
928 EmitStoreOfComplex(pair,
2378 // an extra retain/release pair by zeroing out the source of this
2595 // the retain/release pair.
2770 std::pair<LValue,llvm::Value*>
2798 return std::pair<LValue,llvm::Value*>(lvalue, value);
2801 std::pair<LValue,llvm::Value*>
2808 return std::pair<LValue,llvm::Value*>(lvalue, value);
/external/clang/test/Analysis/Inputs/
H A Dsystem-header-simulator-cxx.h12 struct pair { struct in namespace:std
16 pair() : first(), second() {} function in struct:std::pair
17 pair(const T1 &a, const T2 &b) : first(a), second(b) {} function in struct:std::pair
20 pair(const pair<U1, U2> &other) : first(other.first), second(other.second) {} argument
/external/clang/test/Analysis/
H A Dnew.cpp239 DerefClass *pair = new DerefClass(); local
240 pair->x = 0;
241 testDestCall(pair);
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
H A Dp3-0x.cpp19 struct pair { struct in namespace:std
20 pair(const A&, const B&);
52 Map(std::initializer_list<std::pair<std::string,int>>) {}
/external/clang/test/CXX/drs/
H A Ddr15xx.cpp55 template < class _T1, class _T2 > struct pair { _T2 second; }; struct in namespace:std
78 void f2(std::pair<const char*, const char*>, int = 0); // Would makes selection of #3 ambiguous
79 void f2(std::pair<const char*, const char*>); // #3
96 void f2(std::pair<const char*, const char*>); // #3 TODO: expected- note {{candidate function}}
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dfixed-expansion.cpp3 template<typename T, typename U> struct pair { }; struct
19 typename V = pair<T, U>,
30 X0<int, int, pair<int, int>, pair<int, int>*>>::value,
45 typename V = pair<T, U>,
56 X0<char, int, pair<char, int>, pair<char, int>*>>::value,
H A Dmetafunctions.cpp17 template<typename T, typename U> struct pair { }; struct
271 int check0[is_same<replace_with_int<pair<tuple<float, double, short>,
272 pair<char, unsigned char>>>::type,
273 pair<tuple<int, int, int>, pair<int, int>>>::value? 1 : -1];
H A Dmulti-level-substitution.cpp5 template<typename T, typename U> struct pair { }; struct
38 struct Inner<tuple<pair<Types, YTypes>...> > {
43 int check0[X<short, int, long>::Inner<tuple<pair<short, unsigned short>,
44 pair<int, unsigned int>,
45 pair<long, unsigned long>>
48 int check1[X<short, int>::Inner<tuple<pair<short, unsigned short>,
49 pair<int, unsigned int>,
50 pair<long, unsigned long>>
61 struct Inner<tuple<pair<Types, YTypes>...>,
67 int check2[X1<short, int, long>::Inner<tuple<pair<shor
[all...]
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
H A Dp1-0x.cpp22 template<typename T, typename U> struct pair { }; struct
23 template<typename T, typename U> pair<T, U> make_pair(T, U);
58 typename get_nth_type<0, Args1...>::type first_arg_pair(pair<Args1, Args2>...); // expected-note{{candidate template ignored: could not match 'pair<type-parameter-0-0, type-parameter-0-1>' against 'int'}}
61 typename get_nth_type<1, Args1...>::type second_arg_pair(pair<Args1, Args2>...);
/external/clang/test/CodeGen/
H A Datomic-arm64.c60 void test3(pointer_pair_t pair) { argument
61 __c11_atomic_store(&a_pointer_pair, pair, memory_order_seq_cst);
H A Dtbaa-thread-sanitizer.cpp7 struct pair { struct
9 pair(const iterator &a) : first(a) {} function in struct:pair
13 (void)pair(iterator());
/external/clang/test/CodeGenCXX/
H A Dconstructor-init.cpp230 struct pair : X { // Make the copy constructor non-trivial, so we actually generate it. struct in namespace:PR10720
232 pair(const pair&) = default;
235 void foo(const pair &x, const pair2 &x2) {
236 pair y(x);
H A Dcxx0x-initializer-stdinitializerlist.cpp274 struct pair { struct in namespace:PR12178
280 map(std::initializer_list<pair>);
487 template <class T1, class T2> struct pair { struct in namespace:B19773010
490 constexpr pair() : first(), second() {} function in struct:B19773010::pair
491 constexpr pair(T1 a, T2 b) : first(a), second(b) {} function in struct:B19773010::pair
496 testcase(std::initializer_list<pair<const char *, E>>);
501 // CHECK: store %"struct.B19773010::pair"* getelementptr inbounds ([1 x %"struct.B19773010::pair"], [1 x %"struct.B19773010::pair"]* bitcast ([1 x { i8*, i32 }]* @.ref.tmp{{.*}} to [1 x %"struct.B19773010::pair"]*), i6
510 PR22940_helper(const pair<void*, int>&) argument
[all...]
H A Dpointers-to-data-members.cpp136 struct pair { struct in namespace:PR7139
141 typedef int pair::*ptr_to_member_type;
H A Dpr18635.cpp10 template <typename F, typename S> struct pair { struct in class:unique_ptr
14 pair<T *, int> data;
H A Dpr20719.cpp24 struct pair { struct
25 pair(int, int);
32 pair x(K_void([] {}), K_int([] {}));
/external/clang/test/Index/
H A Drecursive-cxx-member-calls.cpp4 template < class _T1, class _T2 > struct pair { _T2 second; }; struct in namespace:std
69 typedef std::pair < IdentifierInfo, const char *>actualtype;
73 typedef std::pair < IdentifierInfo, const char *>actualtype;
202 // CHECK-tokens: Keyword: "template" [4:3 - 4:11] ClassTemplate=pair:4:44 (Definition)
203 // CHECK-tokens: Punctuation: "<" [4:12 - 4:13] ClassTemplate=pair:4:44 (Definition)
206 // CHECK-tokens: Punctuation: "," [4:23 - 4:24] ClassTemplate=pair:4:44 (Definition)
209 // CHECK-tokens: Punctuation: ">" [4:35 - 4:36] ClassTemplate=pair:4:44 (Definition)
210 // CHECK-tokens: Keyword: "struct" [4:37 - 4:43] ClassTemplate=pair:4:44 (Definition)
211 // CHECK-tokens: Identifier: "pair" [4:44 - 4:48] ClassTemplate=pair
[all...]
/external/clang/test/PCH/
H A Dcrash-12631281.cpp15 template <class _T1, class _T2> struct pair { struct
19 pair(_U1&& , _U2&& ); // expected-note {{candidate}}
23 pair<_ForwardIterator, _ForwardIterator> __equal_range(_ForwardIterator) {
24 return pair<_ForwardIterator, _ForwardIterator>(0, 0); // expected-error {{no matching constructor}}
28 pair<_ForwardIterator, _ForwardIterator> equal_range( _ForwardIterator a) {
33 pair<int, int> range() {
/external/clang/test/Parser/
H A Dcxx0x-for-range.cpp4 struct pair {}; struct
8 typedef pair<T,U> *iterator;
14 pair<T,U> &tie(T &, U &);
20 for (pair<char*,int> x : m) {
/external/clang/test/SemaCXX/
H A DMicrosoftCompatibility.cpp93 struct pair { struct in namespace:PR11826
94 pair(int v) { } function in struct:PR11826::pair
95 void operator=(pair&& rhs) { }
98 pair p0(3);
99 pair p = p0;
104 struct pair { struct in namespace:PR11826_for_symmetry
105 pair(int v) { } function in struct:PR11826_for_symmetry::pair
106 pair(pair&& rhs) { } function in struct:PR11826_for_symmetry::pair
109 pair p
[all...]
H A Dcxx0x-defaulted-functions.cpp65 template<typename T> struct pair { struct in namespace:DefaultedFnExceptionSpec
66 pair(const pair&) noexcept(noexcept(T(declval<T>())));
71 struct Y { pair<X> p; };
75 pair<T> p;
H A Dimplicit-member-functions.cpp88 template<typename T, typename U> struct pair { struct in namespace:Recursion
89 pair();
93 pair(const pair<V,W> &);
107 pair<Point<K>, Vector<K>> x;
111 // pair's templated constructor, which triggers instantiation of the

Completed in 739 milliseconds

123456