/external/stlport/test/unit/ |
mismatch_test.cpp | 44 pair <int*, int*> result = mismatch((int*)n1, (int*)n1 + 5, (int*)n2); 58 pair <IntVec::iterator, IntVec::iterator> result = mismatch(v1.begin(), v1.end(), v2.begin()); 74 pair <char const**, char const**> result = mismatch((char const**)n1, (char const**)n1 + size, (char const**)n2, str_equal);
|
/external/webkit/WebCore/platform/network/ |
HTTPHeaderMap.h | 40 typedef Vector<std::pair<String, String> > CrossThreadHTTPHeaderMapData; 54 pair<iterator, bool> add(const AtomicString& name, const String& value) 62 pair<iterator, bool> add(const char* name, const String& value);
|
/frameworks/base/keystore/java/android/security/ |
Credentials.java | 83 public void install(Context context, KeyPair pair) { 86 intent.putExtra(PRIVATE_KEY, pair.getPrivate().getEncoded()); 87 intent.putExtra(PUBLIC_KEY, pair.getPublic().getEncoded());
|
/packages/apps/Email/tests/src/com/android/email/mail/transport/ |
MockTransport.java | 118 Transaction pair = new Transaction(pattern, responses); local 119 mPairs.add(pair); 250 Transaction pair = mPairs.get(0); local 251 if (pair != null && pair.mPattern == null) { 253 sendResponse(pair.mResponses); 318 Transaction pair = mPairs.remove(0); local 320 + " Expected=" + pair.mPattern, 321 pair.mPattern != null && s.matches(pair.mPattern)) [all...] |
/external/bluetooth/glib/gio/inotify/ |
inotify-kernel.c | 74 struct ik_event_internal *pair; member in struct:ik_event_internal 274 if (event->pair) 275 _ik_event_free (event->pair); 505 /* We shouldn't pair an event that already is paired */ 506 g_assert (event1->pair == NULL && event2->pair == NULL); 508 /* Pair the internal structures and the ik_event_t structures */ 509 event1->pair = event2; 510 event1->event->pair = event2->event; 542 event->pair != NULL | [all...] |
/dalvik/docs/opcodes/ |
opcode-44-aget.html | 43 <td><code>A:</code> dest value register or pair; (8 bits)<br/> 89 If v(A-1) is the lower half of a register pair, v(A-1)' becomes undefined. 93 pair, v(A+1)' becomes undefined. 96 For the -wide variant, if v(A+2) is the upper half of a register pair,
|
opcode-52-iget.html | 47 <td><code>A:</code> dest value register or pair; (4 bits)<br/> 84 If v(A-1) is the lower half of a register pair, v(A-1)' becomes undefined. 87 pair, v(A+1)' becomes undefined. 90 For the -wide variant, if v(A+2) is the upper half of a register pair,
|
opcode-60-sget.html | 47 <td><code>A:</code> dest value register or pair; (8 bits)<br/> 80 If v(A-1) is the lower half of a register pair, v(A-1)' becomes undefined. 84 pair, v(A+1)' becomes undefined. 87 For the -wide variant, if v(A+2) is the upper half of a register pair,
|
opcode-90-binop.html | 68 <td><code>A:</code> destination register or pair (8 bits)<br/> 69 <code>B:</code> first source register or pair (8 bits)<br/> 70 <code>C:</code> second source register or pair (8 bits)</td> 107 part of a register pair originally.
|
/dalvik/libcore/security/src/main/java/org/bouncycastle/jce/spec/ |
IEKeySpec.java | 10 * key pair for use with an integrated encryptor - together
|
/external/astl/include/ |
set | 78 // @return A pair made of: 82 pair<iterator, bool> insert(const value_type& elt) { 86 return pair<iterator, bool>(i, false); 91 return pair<iterator, bool>(--mImpl.end(), true);
|
/external/clearsilver/man/man3/ |
dictModifyValue.3 | 26 dict - dictionary to add pair to.
|
/external/oprofile/daemon/ |
opd_anon.h | 48 * Try to find an anonymous mapping for the given pc/tgid pair.
|
/external/skia/src/views/ |
SkViewInflate.cpp | 119 IDStr* pair = list->append(); local 120 pair->fView = view; 121 pair->fStr = (char*)fStrings.alloc(len, SkChunkAlloc::kThrow_AllocFailType); 122 memcpy(pair->fStr, str, len);
|
/external/webkit/JavaScriptCore/wtf/ |
RefPtrHashMap.h | 93 // return value is a pair of the iterator to the key location, 95 pair<iterator, bool> set(const KeyType&, const MappedType&); 96 pair<iterator, bool> set(RawKeyType, const MappedType&); 99 // return value is a pair of the iterator to the key location, 101 pair<iterator, bool> add(const KeyType&, const MappedType&); 102 pair<iterator, bool> add(RawKeyType, const MappedType&); 113 pair<iterator, bool> inlineAdd(const KeyType&, const MappedType&); 114 pair<iterator, bool> inlineAdd(RawKeyType, const MappedType&); 204 inline pair<typename HashMap<RefPtr<T>, U, V, W, X>::iterator, bool> 212 inline pair<typename HashMap<RefPtr<T>, U, V, W, X>::iterator, bool [all...] |
/frameworks/base/core/java/android/util/ |
DebugUtils.java | 72 String[] pair = selectors[i].split("="); local 79 pair[0].substring(0, 1).toUpperCase() + 80 pair[0].substring(1), 89 value.toString() : "null").matches(pair[1]);
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
RetryManager.java | 20 import android.util.Pair; 35 * separated by a comma. There are two name value pair parameters plus a series 131 Pair<Boolean, Integer> value; 181 Pair<Boolean, Integer> value; 201 Log.e(LOG_TAG, "Unrecognized configuration name value pair: " 345 * @return Pair.first == true if stringValue an integer >= 0 347 private Pair<Boolean, Integer> parseNonNegativeInt(String name, String stringValue) { 349 Pair<Boolean, Integer> retVal; 352 retVal = new Pair<Boolean, Integer>(validateNonNegativeInt(name, value), value); 355 retVal = new Pair<Boolean, Integer>(false, 0) [all...] |
/cts/tools/vm-tests/src/dot/junit/opcodes/const_16/ |
Test_const_16.java | 51 * pair, but not touching the other half, the old register pair gets broken up, and the
|
/cts/tools/vm-tests/src/dot/junit/opcodes/const_4/ |
Test_const_4.java | 50 * pair, but not touching the other half, the old register pair gets broken up, and the
|
/cts/tools/vm-tests/src/dot/junit/opcodes/const_high16/ |
Test_const_high16.java | 48 * pair, but not touching the other half, the old register pair gets broken up, and the
|
/cts/tools/vm-tests/src/dot/junit/opcodes/const_string/ |
Test_const_string.java | 52 * pair, but not touching the other half, the old register pair gets broken up, and the
|
/cts/tools/vm-tests/src/dot/junit/opcodes/const_string_jumbo/ |
Test_const_string_jumbo.java | 52 * pair, but not touching the other half, the old register pair gets broken up, and the
|
/cts/tools/vm-tests/src/dot/junit/opcodes/const_wide/ |
Test_const_wide.java | 61 * pair, but not touching the other half, the old register pair gets broken up, and the
|
/cts/tools/vm-tests/src/dot/junit/opcodes/const_wide_16/ |
Test_const_wide_16.java | 51 * pair, but not touching the other half, the old register pair gets broken up, and the
|
/cts/tools/vm-tests/src/dot/junit/opcodes/const_wide_32/ |
Test_const_wide_32.java | 50 * pair, but not touching the other half, the old register pair gets broken up, and the
|