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

1 2 3 4 5 6 7 8 91011>>

  /ndk/tests/build/issue41387-uniform-initialized-rvalue/jni/
issue41387-uniform-initialized-rvalue.cpp 1 struct pair { struct
7 (pair { 0, 0 }).method();
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
PairTest.java 10 import android.util.Pair;
17 Pair<String, Integer> pair = new Pair<String, Integer>("a", 1); local
18 assertThat(pair.first, equalTo("a"));
19 assertThat(pair.second, equalTo(1));
24 Pair<String, String> p = Pair.create("Foo", "Bar");
31 assertThat(Pair.create("1", 2), equalTo(Pair.create("1", 2)))
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/std/
std_pair.i 9 template <class T, class U > struct pair {
16 %fragment(SWIG_Traits_frag(std::pair<T,U >), "header",
21 template <> struct traits<std::pair<T,U > > {
24 return "std::pair<" #T "," #U " >";
31 %typemap_traits_ptr(SWIG_TYPECHECK_PAIR, std::pair<T,U >);
33 %typemap_traits(SWIG_TYPECHECK_PAIR, std::pair<T,U >);
36 pair();
37 pair(T first, U second);
38 pair(const pair& p)
    [all...]
  /external/skia/src/core/
SkPtrRecorder.cpp 12 Pair* p = fList.begin();
13 Pair* stop = fList.end();
21 bool SkPtrSet::Less(const Pair& a, const Pair& b) {
31 Pair pair; local
32 pair.fPtr = ptr;
34 int index = SkTSearch<Pair, Less>(fList.begin(), count, pair, sizeof(pair));
47 Pair pair; local
    [all...]
  /external/llvm/test/Transforms/ArgumentPromotion/
tail.ll 6 %pair = type { i32, i32 }
8 declare i8* @foo(%pair*)
10 define internal void @bar(%pair* byval %Data) {
12 ; CHECK: %Data = alloca %pair
14 ; CHECK: call i8* @foo(%pair* %Data)
15 tail call i8* @foo(%pair* %Data)
19 define void @zed(%pair* byval %Data) {
20 call void @bar(%pair* byval %Data)
  /external/llvm/unittests/ADT/
PointerIntPairTest.cpp 22 PointerIntPair<PointerIntPairTest *, 2> Pair(this, 1U);
23 EXPECT_EQ(this, Pair.getPointer());
24 EXPECT_EQ(1U, Pair.getInt());
26 Pair.setInt(2);
27 EXPECT_EQ(this, Pair.getPointer());
28 EXPECT_EQ(2U, Pair.getInt());
30 Pair.setPointer(nullptr);
31 EXPECT_EQ(nullptr, Pair.getPointer());
32 EXPECT_EQ(2U, Pair.getInt());
34 Pair.setPointerAndInt(this, 3U)
62 PointerIntPair<Fixnum31, 1, bool, FixnumPointerTraits> pair; local
    [all...]
  /art/test/528-long-hint/
info.txt 2 allocating a wrong register pair.
  /external/llvm/test/YAMLParser/
spec-10-02.data 9 single: pair ,
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPair.java 7 import android.util.Pair;
12 * Shadow of {@code Pair}
15 @Implements(Pair.class)
17 @RealObject private Pair realPair;
24 public static <F, S> Pair<F, S> create(F f, S s) {
25 return new Pair<F, S>(f, s);
36 if (!(o instanceof Pair)) return false;
37 final Pair other = (Pair) o;
41 private static void setFields(Pair p, Object first, Object second)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/
gtype.state 213 (!pair "va_gc"
220 (!pair "ivarref_entry"
225 (!pair "decl"
237 (!pair "base"
242 (!pair "code"
255 (!pair "side_effects_flag"
260 (!pair "constant_flag"
265 (!pair "addressable_flag"
270 (!pair "volatile_flag"
275 (!pair "readonly_flag
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Pair.java 10 * A pair of objects: first and second.
15 public class Pair<F, S> {
19 protected Pair(F first, S second) {
25 * Creates a pair object
28 * @return The pair object.
30 public static <F, S> Pair<F, S> of(F first, S second) {
32 throw new IllegalArgumentException("Pair.of requires non null values.");
34 return new Pair<F, S>(first, second);
42 if (!(other instanceof Pair)) {
45 Pair<?, ?> rhs = (Pair<?, ?>) other
    [all...]
  /external/valgrind/none/tests/
allexec_prepare_prereq 11 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
36 pair tilegx_unexisting_32bits tilegx
  /external/lzma/CPP/7zip/UI/Common/
UpdateProduce.cpp 19 const CUpdatePair &pair = updatePairs[i]; local
23 up2.DirIndex = pair.DirIndex;
24 up2.ArcIndex = pair.ArcIndex;
27 switch(actionSet.StateActions[pair.State])
31 if (pair.State != NPairState::kOnlyOnDisk)
32 IgnoreArchiveItem(m_ArchiveItems[pair.ArcIndex]);
36 callback->ShowDeleteFile(pair.ArcIndex);
40 if (pair.State == NPairState::kOnlyOnDisk)
46 if (pair.State == NPairState::kOnlyInArchive ||
47 pair.State == NPairState::kNotMasked)
    [all...]
  /external/llvm/test/CodeGen/X86/
2009-04-scale.ll 5 %struct.array = type { %struct.impl, [256 x %struct.pair], [256 x %struct.pair], [256 x %struct.pair], [256 x %struct.pair], [256 x %struct.pair], [256 x %struct.pair] }
7 %struct.pair = type { i64, i64 }
14 %3 = getelementptr %struct.array, %struct.array* null, i32 0, i32 3 ; <[256 x %struct.pair]*> [#uses=1]
15 %4 = getelementptr [256 x %struct.pair], [256 x %struct.pair]* %3, i32 0, i32 %2 ; <%struct.pair*> [#uses=1
    [all...]
  /frameworks/base/core/java/android/util/
Pair.java 26 public class Pair<F, S> {
31 * Constructor for a Pair.
33 * @param first the first object in the Pair
34 * @param second the second object in the pair
36 public Pair(F first, S second) {
45 * @param o the {@link Pair} to which this one is to be checked for equality
46 * @return true if the underlying objects of the Pair are both considered
51 if (!(o instanceof Pair)) {
54 Pair<?, ?> p = (Pair<?, ?>) o
    [all...]
  /frameworks/support/v4/java/android/support/v4/util/
Pair.java 24 public class Pair<F, S> {
29 * Constructor for a Pair.
31 * @param first the first object in the Pair
32 * @param second the second object in the pair
34 public Pair(F first, S second) {
43 * @param o the {@link Pair} to which this one is to be checked for equality
44 * @return true if the underlying objects of the Pair are both considered
49 if (!(o instanceof Pair)) {
52 Pair<?, ?> p = (Pair<?, ?>) o
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
AsymmetricCipherKeyPairGenerator.java 4 * interface that a public/private key pair generator should conform to.
9 * intialise the key pair generator.
11 * @param param the parameters the key pair is to be initialised with.
  /external/clang/test/CodeGen/
tbaa-thread-sanitizer.cpp 7 struct pair { struct
9 pair(const iterator &a) : first(a) {} function in struct:pair
13 (void)pair(iterator());
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
filterbank_tables.c 26 16189, -31932, /* Q30 lo/hi pair */
27 17243, 15562, /* Q30 lo/hi pair */
28 -17186, -26748, /* Q35 lo/hi pair */
29 -27476, 26296 /* Q35 lo/hi pair */
37 -1306, -32719, /* Q30 lo/hi pair */
38 11486, 16337, /* Q30 lo/hi pair */
39 26078, 8918, /* Q35 lo/hi pair */
40 3956, -8935 /* Q35 lo/hi pair */
48 -2953, -32546, /* Q30 lo/hi pair */
49 32233, 16166, /* Q30 lo/hi pair */
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/lua/
std_pair.i 4 * std::pair typemaps for LUA
11 A really cut down version of the pair class.
17 %template(IntPair) pair<int, int>;
27 template <class T, class U > struct pair {
31 pair();
32 pair(T first, U second);
33 pair(const pair& p);
40 pair<T,U> make_pair(const T&,const U&);
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_pair.h 51 struct pair { struct
58 pair() {} function in struct:pair
60 pair() : first(_T1()), second(_T2()) {} function in struct:pair
62 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {} function in struct:pair
66 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {} function in struct:pair
68 pair(const pair<_T1,_T2>& __o) : first(__o.first), second(__o.second) {} function in struct:pair
72 pair(__move_source<pair<_T1, _T2> > src) : first(_STLP_PRIV _AsMoveSource(src.get().first)) function in struct:pair
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_pair.h 51 struct pair { struct
58 pair() {} function in struct:pair
60 pair() : first(_T1()), second(_T2()) {} function in struct:pair
62 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {} function in struct:pair
66 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {} function in struct:pair
68 pair(const pair<_T1,_T2>& __o) : first(__o.first), second(__o.second) {} function in struct:pair
72 pair(__move_source<pair<_T1, _T2> > src) : first(_STLP_PRIV _AsMoveSource(src.get().first)) function in struct:pair
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_pair.h 51 struct pair { struct
58 pair() {} function in struct:pair
60 pair() : first(_T1()), second(_T2()) {} function in struct:pair
62 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {} function in struct:pair
66 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {} function in struct:pair
68 pair(const pair<_T1,_T2>& __o) : first(__o.first), second(__o.second) {} function in struct:pair
72 pair(__move_source<pair<_T1, _T2> > src) : first(_STLP_PRIV _AsMoveSource(src.get().first)) function in struct:pair
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_pair.h 51 struct pair { struct
58 pair() {} function in struct:pair
60 pair() : first(_T1()), second(_T2()) {} function in struct:pair
62 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {} function in struct:pair
66 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {} function in struct:pair
68 pair(const pair<_T1,_T2>& __o) : first(__o.first), second(__o.second) {} function in struct:pair
72 pair(__move_source<pair<_T1, _T2> > src) : first(_STLP_PRIV _AsMoveSource(src.get().first)) function in struct:pair
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_pair.h 51 struct pair { struct
58 pair() {} function in struct:pair
60 pair() : first(_T1()), second(_T2()) {} function in struct:pair
62 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {} function in struct:pair
66 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {} function in struct:pair
68 pair(const pair<_T1,_T2>& __o) : first(__o.first), second(__o.second) {} function in struct:pair
72 pair(__move_source<pair<_T1, _T2> > src) : first(_STLP_PRIV _AsMoveSource(src.get().first)) function in struct:pair
    [all...]

Completed in 869 milliseconds

1 2 3 4 5 6 7 8 91011>>