/cts/tests/tests/widget/src/android/widget/cts/ |
AlphabetIndexerTest.java | 77 Cursor c1 = createCursor("Country", COUNTRIES_LIST); local 79 AlphabetIndexer indexer = new AlphabetIndexer(c1, SORTED_COLUMN_INDEX, ALPHABET);
|
/external/llvm/test/MC/ARM/ |
basic-arm-instructions.s | 369 cdp p7, #1, c1, c1, c1, #4 370 cdp2 p7, #1, c1, c1, c1, #4 372 @ CHECK: cdp p7, #1, c1, c1, c1, #4 @ encoding: [0x81,0x17,0x11,0xee] 373 @ CHECK: cdp2 p7, #1, c1, c1, c1, #4 @ encoding: [0x81,0x17,0x11,0xfe [all...] |
/external/llvm/unittests/VMCore/ |
MetadataTest.cpp | 91 Value *const c1 = n1; local 92 MDNode *n2 = MDNode::get(Context, c1);
|
/external/opencv/cvaux/src/ |
cv3dtracker.cpp | 445 for (int c1 = 0; c1 < num_cameras-1; c1++) 447 if (!camera_info[c1].valid) 450 const Cv3dTracker2dTrackedObject *o1 = find(&tracking_info[c1*num_objects], 455 CvPoint3D32f p1a = CAMERA_POS(camera_info[c1]); 456 CvPoint3D32f p1b = ImageCStoWorldCS(camera_info[c1], o1->p); 458 for (int c2 = c1 + 1; c2 < num_cameras; c2++)
|
/external/opencv/ml/src/ |
mlnbayes.cpp | 123 int s, c1, c2; local 204 for( c1 = 0; c1 < _var_count; c1++, prod_data += _var_count ) 206 double val1 = train_vec[c1]; 207 sum_data[c1] += val1; 208 count_data[c1]++; 209 for( c2 = c1; c2 < _var_count; c2++ )
|
/external/opencv/otherlibs/highgui/ |
grfmt_base.cpp | 176 int c1 = tolower(format[i+1]); local 179 if( c1 != c2 )
|
/external/oprofile/libpp/ |
diff_container.cpp | 107 diff_container::diff_container(profile_container const & c1, 109 : pc1(c1), pc2(c2),
|
/external/valgrind/main/memcheck/tests/ |
varinfo4.stderr.exp | 5 Location 0x........ is 1 byte inside a[3].xyzzy[21].c1,
|
/dalvik/libdex/ |
DexProto.cpp | 420 char c1 = *(protoDesc++); local 423 if (c1 < c2) { 426 } else if (c1 > c2) { 429 } else if (c1 == '\0') {
|
/external/clang/test/SemaCXX/ |
anonymous-union.cpp | 28 float c1; member in union:X::__anon4933
|
array-bounds.cpp | 56 char c1 = str1[5]; // no warning for pointers local
|
scope-check.cpp | 71 C c1; // expected-note {{jump bypasses variable initialization}}
|
/external/llvm/unittests/ADT/ |
SmallVectorTest.cpp | 76 friend bool operator==(const Constructable & c0, const Constructable & c1) { 77 return c0.getValue() == c1.getValue(); 81 operator!=(const Constructable & c0, const Constructable & c1) { 82 return c0.getValue() != c1.getValue();
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/ |
mixer_abst.h | 96 int snd_mixer_selem_compare(const snd_mixer_elem_t *c1, const snd_mixer_elem_t *c2);
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
CameraTest.java | 206 Canvas c1 = new Canvas(); local 207 mCamera.applyToCanvas(c1); 214 assertTrue(c1.getMatrix().equals(c2.getMatrix()));
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
ProgramFragmentTest.java | 53 ScriptField_ConstMatrix c1 = new ScriptField_ConstMatrix(mRS, 1, local 56 c1.set(new ScriptField_ConstMatrix.Item(), 0, true); 57 mConstMatrix = c1.getAllocation();
|
ProgramVertexTest.java | 64 ScriptField_ConstMatrix c1 = new ScriptField_ConstMatrix(mRS, 1, local 67 c1.set(new ScriptField_ConstMatrix.Item(), 0, true); 68 mConstMatrix = c1.getAllocation();
|
/development/samples/GlobalTime/src/com/android/globaltime/ |
City.java | 124 City c1 = (City)o1; 126 TimeZone tz1 = c1.getTimeZone(); 131 float dlat = c2.getLatitude() - c1.getLatitude();
|
/external/webkit/Source/JavaScriptCore/wtf/unicode/brew/ |
UnicodeBrew.h | 180 UChar c1 = foldCase(a[i]); local 182 if (c1 != c2) 183 return c1 - c2;
|
/external/webkit/Source/JavaScriptCore/wtf/unicode/wince/ |
UnicodeWinCE.h | 161 UChar c1 = foldCase(a[i]); local 163 if (c1 != c2) 164 return c1 - c2;
|
/external/webkit/Source/WebCore/platform/audio/ |
FFTFrame.cpp | 101 Complex c1(realP1[i], imagP1[i]); 104 double mag1 = abs(c1); 132 double phase1 = arg(c1);
|
/external/webkit/Source/WebKit/efl/ewk/ |
ewk_tiled_model.c | 158 uint32_t *dst32, *dst32_end, c1; local 161 c1 = 0xff000000 | ((uint32_t)r << 16) | ((uint32_t)g << 8) | b; 162 c2 = ((uint64_t)c1 << 32) | c1; 181 *dst32 = c1; 186 uint16_t *dst16, *dst16_end, c1; local 189 c1 = ((((r >> 3) & 0x1f) << 11) | 193 c2 = (((uint64_t)c1 << 48) | ((uint64_t)c1 << 32) | 194 ((uint64_t)c1 << 16) | c1) [all...] |
/frameworks/base/core/tests/coretests/src/android/database/sqlite/ |
SQLiteCursorTest.java | 137 Cursor c1 = mDatabase.rawQuery("select * from " + testTable, null); local 138 assertEquals(N, c1.getCount()); 139 c1.close();
|
/frameworks/base/opengl/libs/EGL/ |
egl_display.cpp | 32 const egl_config_t& c1 = *(egl_config_t const *)b; local 33 return c0<c1 ? -1 : (c1<c0 ? 1 : 0);
|
/external/icu4c/test/intltest/ |
rbbitst.cpp | 2529 UChar32 c0, c1, c2, c3; \/\/ The code points at p0, p1, p2 & p3. local 2761 UChar32 c0, c1, c2, c3; \/\/ The code points at p0, p1, p2 & p3. local 3086 UChar32 c0, c1, c2, c3; \/\/ The code points at p0, p1, p2 & p3. local [all...] |