/development/samples/ContactManager/ |
_index.html | 6 <p>In most cases, you will want to ask the existing Contacts activity to handle these tasks for you,
|
/external/chromium/chrome/common/ |
googleurl_dummy.cc | 10 // on Windows) we just instead link this file in cases where googleurl isn't
|
json_value_serializer_perftest.cc | 27 // Load test cases 66 // Convert test cases to Value objects. 85 // Clean up test cases.
|
/external/clang/test/Analysis/ |
ObjCProperties.m | 3 // The point of this test cases is to exercise properties in the static
|
/external/clang/test/SemaCXX/ |
runtimediag-ppe.cpp | 4 // flow are delayed correctly in cases where we can't immediately tell whether
|
/external/clang/test/SemaObjCXX/ |
arc-ppe.mm | 4 // works correctly in cases where we can't immediately tell whether the
|
/external/clang/test/SemaTemplate/ |
typename-specifier-3.cpp | 17 // Some extra tests for invalid cases
|
/external/icu4c/test/cintltst/ |
cbiapts.h | 26 * This is an API test. It doesn't test very many cases, and doesn't
|
/external/llvm/test/CodeGen/X86/ |
switch-or.ll | 3 ; Check that merging switch cases that differ in one bit works.
|
/external/llvm/test/Transforms/SimplifyCFG/ |
EqualPHIEdgeBlockMerge.ll | 13 ; same for both cases...
|
PhiEliminate.ll | 1 ; Test a bunch of cases where the cfg simplification code should 2 ; be able to fold PHI nodes into computation in common cases. Folding the PHI
|
/external/markdown/docs/ |
release-2.0.2.txt | 7 fixes for minor parsing bugs in some edge cases. For a full list of changes,
|
/external/webkit/LayoutTests/fast/dom/HTMLTableSectionElement/ |
rows-expected.txt | 1 Test behavior of the HTMLTableSectionElement rows attribute in cases where there is unusual nesting.
|
/external/webkit/LayoutTests/fast/dom/Node/ |
normalize-expected.txt | 11 test10 (mixed cases including deeper nested text nodes): PASSED
|
/frameworks/base/core/java/android/view/inputmethod/ |
package.html | 5 an overview. In most cases the main classes here are not needed for
|
/external/clang/test/CXX/expr/ |
p10-0x.cpp | 12 // We should perform the load in these cases. 43 // We shouldn't perform the load in these cases.
|
/external/e2fsprogs/tests/progs/test_data/ |
test.irel | 26 # Test boundary cases of irel_put 31 # Test other boundary cases....
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/ |
MediaPlayerStressTestRunner.java | 22 /** Import for Video Editor Stress Test cases*/ 33 /** Video Editor Stress Test cases*/
|
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/ |
CipherDESedeTest.java | 21 // 80 cases checked 37 // 40 cases checked
|
CipherDesTest.java | 21 // 40 cases checked 37 // 20 cases checked
|
/external/dropbear/libtomcrypt/src/mac/hmac/ |
hmac_test.c | 23 TEST CASES SOURCE: 30 Test Cases for HMAC-MD5 and HMAC-SHA-1 53 } cases[] = { 55 3. Test Cases for HMAC-SHA-1 121 2. Test Cases for HMAC-MD5 268 for(i=0; i < (int)(sizeof(cases) / sizeof(cases[0])); i++) { 269 int hash = find_hash(cases[i].algo); 273 if((err = hmac_memory(hash, cases[i].key, cases[i].keylen, cases[i].data, cases[i].datalen, digest, &outlen)) != CRYPT_OK) [all...] |
/external/llvm/lib/Transforms/Utils/ |
LowerSwitch.cpp | 67 unsigned Clusterify(CaseVector& Cases, SwitchInst *SI); 223 // Clusterify - Transform simple list of Cases into list of CaseRange's 224 unsigned LowerSwitch::Clusterify(CaseVector& Cases, SwitchInst *SI) { 228 // Start with "simple" cases 245 Cases.push_back(CaseRange(C.first.getLow().toConstantInt(), 288 // Prepare cases vector. 289 CaseVector Cases; 290 unsigned numCmps = Clusterify(Cases, SI); 292 DEBUG(dbgs() << "Clusterify finished. Total clusters: " << Cases.size() 294 DEBUG(dbgs() << "Cases: " << Cases << "\n") [all...] |
/external/chromium/googleurl/src/ |
gurl_unittest.cc | 156 // The tricky cases for relative URL resolving are tested in the 196 } cases[] = { local 204 for (size_t i = 0; i < ARRAYSIZE(cases); i++) { 205 GURL url(cases[i].input); 207 EXPECT_EQ(cases[i].expected, origin.spec()); 215 } cases[] = { local 221 for (size_t i = 0; i < ARRAYSIZE(cases); i++) { 222 GURL url(cases[i].input); 224 EXPECT_EQ(cases[i].expected, empty_path.spec()); 274 } cases[] = local 355 } cases[] = { local [all...] |
/external/icu4c/test/intltest/ |
calcasts.cpp | 7 * behavior of a calendar to a certain set of 'test cases', involving 42 void CalendarCaseTest::doTestCases(const TestCase *cases, Calendar *cal) { 51 for(i=0;cases[i].era>=0;i++) { 52 UDate t = (JULIAN_EPOCH+(ONE_DAY*cases[i].julian)); 54 logln("Test case %d: julianday%f -> date %f\n", i, cases[i].julian, t); 61 checkField(cal, UCAL_ERA, cases[i].era, status); 62 checkField(cal, UCAL_YEAR, cases[i].year,status); 63 checkField(cal, UCAL_MONTH, cases[i].month - 1,status); 64 checkField(cal, UCAL_DATE, cases[i].day,status); 65 checkField(cal, UCAL_DAY_OF_WEEK, cases[i].dayOfWeek,status) [all...] |
/external/llvm/include/llvm/ADT/ |
StringSwitch.h | 10 // statement whose cases are string literals. 22 /// \brief A switch()-like statement whose cases are string literals. 38 /// .Cases("violet", "purple", Violet) 85 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1], 91 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1], 97 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1], 104 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1],
|