Searched defs:pair (Results 1 - 25 of 185) sorted by relevance

12345678

/external/valgrind/none/tests/
H A Dallexec_prepare_prereq11 pair() function
31 pair x86 amd64
32 pair ppc32 ppc64
33 pair s390x_unexisting_in_32bits s390x
34 pair arm arm64
35 pair mips32 mips64
/external/clang/test/CodeGen/
H A Dtbaa-thread-sanitizer.cpp7 struct pair { struct
9 pair(const iterator &a) : first(a) {} function in struct:pair
13 (void)pair(iterator());
H A Datomic-arm64.c60 void test3(pointer_pair_t pair) { argument
61 __c11_atomic_store(&a_pointer_pair, pair, memory_order_seq_cst);
/external/clang/test/CodeGenCXX/
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/libbrillo/brillo/strings/
H A Dstring_utils_unittest.cc75 std::pair<std::string, std::string> pair; local
77 pair = string_utils::SplitAtFirst(" 123 : 4 : 56 : 789 ", ":", true);
78 EXPECT_EQ("123", pair.first);
79 EXPECT_EQ("4 : 56 : 789", pair.second);
81 pair = string_utils::SplitAtFirst(" 123 : 4 : 56 : 789 ", ":", false);
82 EXPECT_EQ(" 123 ", pair.first);
83 EXPECT_EQ(" 4 : 56 : 789 ", pair.second);
85 pair = string_utils::SplitAtFirst("", "=");
86 EXPECT_EQ("", pair
[all...]
H A Dstring_utils.cc64 std::pair<std::string, std::string> SplitAtFirst(const std::string& str,
67 std::pair<std::string, std::string> pair; local
68 SplitAtFirst(str, delimiter, &pair.first, &pair.second, trim_whitespaces);
69 return pair;
/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/
H A Dis_standard_layout.pass.cpp48 struct pair struct
58 test_is_standard_layout<pair<int, double> > ();
/external/lzma/CPP/7zip/UI/Common/
H A DUpdateProduce.cpp19 const CUpdatePair &pair = updatePairs[i]; local
22 up2.DirIndex = pair.DirIndex;
23 up2.ArcIndex = pair.ArcIndex;
27 switch (actionSet.StateActions[(unsigned)pair.State])
30 if (pair.ArcIndex >= 0 && callback)
31 callback->ShowDeleteFile(pair.ArcIndex);
35 if (pair.State == NPairState::kOnlyOnDisk)
37 if (pair.State == NPairState::kOnlyInArchive)
39 if (pair.HostIndex >= 0)
46 if (updatePairs[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/icu/icu4c/source/tools/toolutil/
H A Dcollationinfo.cpp131 int32_t pair = ranges.elementAti(i); local
132 int32_t limit = (pair >> 16) & 0xffff;
133 int16_t offset = (int16_t)pair;
/external/skia/src/core/
H A DSkPtrRecorder.cpp30 Pair pair; local
31 pair.fPtr = ptr;
33 int index = SkTSearch<Pair, Less>(fList.begin(), count, pair, sizeof(pair));
46 Pair pair; local
47 pair.fPtr = ptr;
49 int index = SkTSearch<Pair, Less>(fList.begin(), count, pair, sizeof(pair));
53 pair.fIndex = count + 1;
54 *fList.insert(index) = pair;
[all...]
/external/strace/
H A Dipc_msg.c91 kernel_ulong_t *const pair)
93 if (current_wordsize == sizeof(*pair)) {
94 if (umoven_or_printaddr(tcp, addr, 2 * sizeof(*pair), pair))
101 pair[0] = tmp[0];
102 pair[1] = tmp[1];
122 kernel_ulong_t pair[2]; local
124 if (fetch_msgrcv_args(tcp, tcp->u_arg[3], pair))
127 tprint_msgrcv(tcp, pair[0],
128 tcp->u_arg[1], pair[
90 fetch_msgrcv_args(struct tcb *const tcp, const kernel_ulong_t addr, kernel_ulong_t *const pair) argument
[all...]
/external/syslinux/gpxe/src/hci/mucurses/
H A Dcolour.c31 * Initialise colour pair
33 * @v pair colour pair number
37 int init_pair ( short pair, short fcol, short bcol ) { argument
40 if ( ( pair < 1 ) || ( pair >= COLOUR_PAIRS ) )
43 cpair = &cpairs[pair];
50 * Get colours of colour pair
52 * @v pair colour pair numbe
56 pair_content( short pair, short *fcol, short *bcol ) argument
[all...]
H A Dwinattrs.c58 * Get attributes and colour pair information
62 * @v *pair address in which to store colour pair
66 int wattr_get ( WINDOW *win, attr_t *attrs, short *pair, argument
69 *pair = PAIR_NUMBER ( win->attrs );
102 * Set attributes and colour pair information in a window
106 * @v cpair colour pair to set
117 * Set colour pair for a window
120 * @v colour_pair_number colour pair integer
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
H A DDataDrivenFormatTest.java64 public void formatTest(TestDataPair pair) { argument
65 TestData td = pair.td;
66 DataMap settings = pair.dm;
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DDataDrivenFormatTest.java63 public void formatTest(TestDataPair pair) { argument
64 TestData td = pair.td;
65 DataMap settings = pair.dm;
/external/llvm/unittests/ADT/
H A DPointerIntPairTest.cpp90 PointerIntPair<Fixnum31, 1, bool, FixnumPointerTraits> pair; local
91 EXPECT_EQ((uintptr_t)0, pair.getPointer().Value);
92 EXPECT_FALSE(pair.getInt());
94 pair.setPointerAndInt({ 0x7FFFFFFF }, true );
95 EXPECT_EQ((uintptr_t)0x7FFFFFFF, pair.getPointer().Value);
96 EXPECT_TRUE(pair.getInt());
99 PointerLikeTypeTraits<decltype(pair)>::NumLowBitsAvailable);
/external/lzma/CPP/Common/
H A DTextConfig.cpp62 CTextConfigPair pair; local
65 if (!ConvertUTF8ToUnicode(temp, pair.ID))
103 if (!ConvertUTF8ToUnicode(message, pair.String))
105 pairs.Add(pair);
/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/SemaCXX/
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
H A Dtypo-correction-cxx11.cpp41 struct pair { struct in namespace:NewTypoExprFromResolvingTypoAmbiguity
49 pair find(int x);
/external/clang/test/SemaTemplate/
H A Ddeduction-crash.cpp71 struct pair struct
73 template<class _Tuple, int = enable_if<__tuple_convertible<_Tuple, pair>::value>::type>
74 pair(_Tuple&& );
84 int operator<<( basic_ostream<char> , pair ) ;
/external/google-tv-pairing-protocol/java/src/com/google/polo/ssl/
H A DSslUtil.java63 * Generates a new RSA key pair.
91 * @param pair the {@link KeyPair} to be used
98 public static X509Certificate generateX509V1Certificate(KeyPair pair, argument
118 certGen.setPublicKey(pair.getPublic());
121 X509Certificate cert = certGen.generate(pair.getPrivate());
128 * @param pair the {@link KeyPair} to be used
137 public static X509Certificate generateX509V3Certificate(KeyPair pair, argument
149 certGen.setPublicKey(pair.getPublic());
177 pair.getPublic(), dnName, serialNumber);
182 createSubjectKeyIdentifier(pair
248 generateX509V3Certificate(KeyPair pair, String name) argument
269 generateX509V3Certificate(KeyPair pair, String name, BigInteger serialNumber) argument
[all...]

Completed in 1273 milliseconds

12345678