/external/chromium_org/third_party/cython/src/Cython/Includes/libcpp/ |
pair.pxd | 1 from utility cimport pair namespace
|
utility.pxd | 2 cdef cppclass pair[T, U]: 5 pair() nogil except + 6 pair(pair&) nogil except + 7 pair(T&, U&) nogil except + 8 bint operator==(pair&, pair&) nogil 9 bint operator!=(pair&, pair&) nogil 10 bint operator<(pair&, pair&) nogi [all...] |
/ndk/tests/build/issue41387-uniform-initialized-rvalue/jni/ |
issue41387-uniform-initialized-rvalue.cpp | 1 struct pair { struct 7 (pair { 0, 0 }).method();
|
/external/chromium_org/cloud_print/virtual_driver/ |
gcp_driver.gpd | 10 *MasterUnits: PAIR(1200, 1200) 33 *MemoryConfigKB: PAIR(16384, 16384) 37 *MemoryConfigKB: PAIR(65536, 65536) 60 *PrintableArea: PAIR(19842, 28062) 61 *PrintableOrigin: PAIR(0, 0) 62 *CursorOrigin: PAIR(0, 0) 65 *PrintableArea: PAIR(28062, 19842) 66 *PrintableOrigin: PAIR(0, 0) 67 *CursorOrigin: PAIR(0, 0) 76 *PrintableArea: PAIR(14031, 19842 [all...] |
/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...] |
/external/llvm/test/Transforms/ArgumentPromotion/ |
tail.ll | 4 %pair = type { i32, i32 } 6 declare i8* @foo(%pair*) 8 define internal void @bar(%pair* byval %Data) { 10 ; CHECK: %Data = alloca %pair 12 ; CHECK: call i8* @foo(%pair* %Data) 13 tail call i8* @foo(%pair* %Data) 17 define void @zed(%pair* byval %Data) { 18 call void @bar(%pair* byval %Data)
|
/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/chromium_org/third_party/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/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/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) 63 PointerIntPair<Fixnum31, 1, bool, FixnumPointerTraits> pair; local [all...] |
/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/chromium_org/base/containers/ |
hash_tables_unittest.cc | 17 Type pair(value1, value2); \ 19 map[pair] = 1; \ 25 typedef std::pair<int16, int16> Int16Int16Pair; 26 typedef std::pair<int16, int32> Int16Int32Pair; 27 typedef std::pair<int16, int64> Int16Int64Pair; 34 typedef std::pair<int32, int16> Int32Int16Pair; 35 typedef std::pair<int32, int32> Int32Int32Pair; 36 typedef std::pair<int32, int64> Int32Int64Pair; 43 typedef std::pair<int64, int16> Int64Int16Pair; 44 typedef std::pair<int64, int32> Int64Int32Pair [all...] |
/external/chromium_org/mojo/public/java/system/src/org/chromium/mojo/system/ |
Pair.java | 9 * A pair of object. 14 public class Pair<F, S> { 22 * @param first the first element of the pair. 23 * @param second the second element of the pair. 25 public Pair(F first, S second) { 42 if (!(o instanceof Pair)) { 45 Pair<?, ?> p = (Pair<?, ?>) o; 58 * Helper method for creating a pair. 60 * @param a the first element of the pair [all...] |
/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...] |
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/ |
InputLogicTestsReorderingMyanmar.java | 21 import android.util.Pair; 86 // Each test is an entry in the array of Pair arrays. 88 // One test is an array of pairs. Each pair contains, in the `first' member, 93 private static final Pair[][] TESTS = { 96 new Pair[] { // Type : U+1031 U+1000 U+101F ? ? ? 97 Pair.create(new int[] { 0x1031 }, "\u1031"), // ? 98 Pair.create(new int[] { 0x1000 }, "\u1000\u1031"), // ?? 99 Pair.create(new int[] { 0x101F }, "\u1000\u1031\u101F") // ??? 102 new Pair[] { // Type : U+1000 U+1031 U+101F ? ? ? 103 Pair.create(new int[] { 0x1000 }, "\u1000"), // [all...] |
/external/chromium_org/ash/display/ |
display_layout_store.cc | 53 const DisplayIdPair& pair) { 55 paired_layouts_.find(pair); 57 iter != paired_layouts_.end() ? iter->second : CreateDisplayLayout(pair); 61 const DisplayIdPair& pair) { 62 DisplayLayout layout = GetRegisteredDisplayLayout(pair); 67 pair.first == layout.primary_id) ? layout : layout.Invert(); 70 void DisplayLayoutStore::UpdateMirrorStatus(const DisplayIdPair& pair, 72 if (paired_layouts_.find(pair) == paired_layouts_.end()) 73 CreateDisplayLayout(pair); 74 paired_layouts_[pair].mirrored = mirrored [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/valgrind/main/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
|
/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/chromium_org/third_party/webrtc/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...] |
/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...] |