| /external/icu4c/test/intltest/ |
| tstnorm.cpp | 640 UChar32 c1, c2; local 652 c2=iter32.previous(); 655 c2=iter32.current(); 658 c2=iter32.next(); 662 if(c1!=c2) { 668 "got c1=U+%04lx != expected c2=U+%04lx", 669 name, history, c1, c2); 1330 UChar32 c2=combineBackCharsAndCc[2*i]; local [all...] |
| calregts.cpp | 2686 Calendar *c2 = Calendar::createInstance("ja_JP_TRADITIONAL",status); local [all...] |
| /external/jmonkeyengine/engine/src/core/com/jme3/scene/ |
| Node.java | 402 Spatial c2 = children.get(index2); local 404 children.add(index1, c2);
|
| /external/llvm/test/MC/ARM/ |
| diagnostics.s | 108 mrc p14, #8, r1, c1, c2, #4 109 mrc p14, #1, r1, c1, c2, #8 110 mrc2 p14, #8, r1, c1, c2, #4 111 mrc2 p14, #0, r1, c1, c2, #9
|
| /external/skia/samplecode/ |
| SampleHairline.cpp | 241 SkCanvas c2(bm2); 247 gProcs[fProcIndex].fProc(&c2, paint, bm);
|
| /external/speex/libspeex/ |
| filters.c | 674 spx_word16_t c1, c2; local 765 c2 = QCONST16(.5,15)+MULT16_16_Q14(QCONST16(1.72,14),(c1-QCONST16(.07,15))); 768 c2 = .5+1.72*(c1-.07); 772 c1=c2=0; 775 g1 = 32767 - MULT16_16_Q13(MULT16_16_Q15(c2, pgain1),pgain1); 776 g2 = 32767 - MULT16_16_Q13(MULT16_16_Q15(c2, pgain2),pgain2); 778 g1 = 1-c2*pgain1*pgain1; 779 g2 = 1-c2*pgain2*pgain2;
|
| /external/v8/test/cctest/ |
| test-parsing.cc | 468 int32_t c2 = string_stream.Advance(); local 472 CHECK_EQ(c0, c2); 492 int32_t c2 = string_stream.Advance(); local 499 CHECK_EQ(c0, c2); 525 int32_t c2 = string_stream.Advance(); local 529 CHECK_EQ(c0, c2); 537 int32_t c2 = string_stream.Advance(); local 540 CHECK_LT(c2, 0); [all...] |
| /external/v8/test/mjsunit/regress/ |
| regress-753.js | 34 var obj = {a1: {b1: [1,2,3,4], b2: {c1: 1, c2: 2}},a2: 'a2'};
|
| /external/webkit/Source/WebKit/win/Interfaces/ |
| IWebUndoManager.idl | 201 uuid(67B067BE-4DE6-45c2-AD39-A91DFA84FF4E),
|
| /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/ |
| SdkTargetSelector.java | 444 for (Control c2 : ((Composite) c).getChildren()) { 445 enableControl(c2, enabled);
|
| /external/icu4c/common/ |
| ucnv_io.c | 492 char c1, c2; local 520 while ((c2 = *name2++) != 0) { 521 type = GET_CHAR_TYPE(c2); 538 c2 = (char)type; /* lowercased letter */ 542 break; /* deliver c2 */ 546 if ((c1|c2)==0) { 551 rc = (int)(unsigned char)c1 - (int)(unsigned char)c2; [all...] |
| unisetspan.cpp | 482 UChar c=*s, c2; local 483 if(c>=0xd800 && c<=0xdbff && length>=2 && U16_IS_TRAIL(c2=s[1])) { 484 return set.contains(U16_GET_SUPPLEMENTARY(c, c2)) ? 2 : -2; 491 UChar c=s[length-1], c2; local 492 if(c>=0xdc00 && c<=0xdfff && length>=2 && U16_IS_LEAD(c2=s[length-2])) { 493 return set.contains(U16_GET_SUPPLEMENTARY(c2, c)) ? 2 : -2; [all...] |
| /external/v8/test/mjsunit/ |
| string-replace.js | 154 replaceTest("0a1b2cx", short, /(x)(?=(.))/g, function r(m, c1, c2, i, s) { 158 assertEquals(["a","b","c"][ctr], c2, "replace(/(x)(?=(.))/g,func(..,c2,..))");
|
| /external/webp/src/enc/ |
| dsp_sse2.c | 131 const __m128i c2 = _mm_mulhi_epi16(in3, k1); local 133 const __m128i c4 = _mm_sub_epi16(c1, c2); 189 const __m128i c2 = _mm_mulhi_epi16(T3, k1); local 191 const __m128i c4 = _mm_sub_epi16(c1, c2); 412 const __m128i c2 = _mm_add_epi16(b2, seven); local 414 const __m128i d2 = _mm_srai_epi16(c2, 4); [all...] |
| /ndk/sources/host-tools/nawk-20071023/ |
| b.c | 290 int i, c, c2; local 306 c2 = *p++; 307 if (c2 == '\\') 308 c2 = quoted((char **) &p); 309 if (c > c2) { /* empty; ignore */ 314 while (c < c2) {
|
| /external/icu4c/test/cintltst/ |
| capitst.c | 892 UCollator *c2 = NULL; local 963 UCollator * c2; local [all...] |
| trie2test.c | 278 UChar32 prevCP, c, c2; local 305 U16_NEXT(s, sIndex, length, c2); 316 if(c!=c2) { 318 testName, (long)c, (long)c2); 330 U16_PREV(s, 0, sIndex, c2); 341 if(c!=c2) { 343 testName, c, c2); [all...] |
| citertst.c | 427 UCollator *c1, *c2, *c3; local 476 c2 = ucol_openRules(rule, u_strlen(rule), UCOL_OFF, UCOL_DEFAULT_STRENGTH, NULL, &status); 478 if (c2 == NULL || U_FAILURE(status)) 485 iter=ucol_openElements(c2, source, u_strlen(source), &status); 493 ucol_close(c2); 919 int32_t c1, c2; local 926 c2 = ucol_next(i2, &status); 928 if (c1 != c2) 930 log_err("Error in iteration %d assetEqual between\n %d and %d, they are not equal\n", count, c1, c2); [all...] |
| /external/antlr/antlr-3.4/runtime/Python/unittests/ |
| testtree.py | 581 c2=CommonTree(CommonToken(103)) 582 r0.addChild(c2) 590 self.failUnlessEqual(r0, c2.parent) 591 self.failUnlessEqual(2, c2.childIndex) 605 c2=CommonTree(CommonToken(103)) 606 r0.addChild(c2) 618 self.failUnlessEqual(2, c2.childIndex) 633 c2=CommonTree(CommonToken(103)) 634 r0.addChild(c2) 646 self.failUnlessEqual(3, c2.childIndex [all...] |
| /external/opencv/cxcore/src/ |
| cxdrawing.cpp | 90 int c1, c2; local 101 c2 = (x2 < 0) + (x2 > right) * 2 + (y2 < 0) * 4 + (y2 > bottom) * 8; 103 if( (c1 & c2) == 0 && (c1 | c2) != 0 ) 114 if( c2 & 12 ) 116 a = c2 < 8 ? 0 : bottom; 119 c2 = (x2 < 0) + (x2 > right) * 2; 121 if( (c1 & c2) == 0 && (c1 | c2) != 0 ) 130 if( c2 ) [all...] |
| /external/opencv/cvaux/src/ |
| cvlmeds.cpp | 199 double p, q, D, c1, c2, b1, b2, ro1, ro2, fi1, fi2, tt; local 214 c2 = c1; 228 c2 = q / 2 - sqrt( D ); 233 ro2 = fabs( c2 ); 235 fi2 = CV_PI * (1 - SIGN( c2 )) / 2; 252 c2 = tt + p / (3. * tt); 272 x[i][1] = sin( fi1 / 3. + 2 * CV_PI * (i % 3) / 3. ) * c2; [all...] |
| /packages/apps/Calendar/src/com/android/calendar/ |
| Utils.java | 337 public static boolean compareCursors(Cursor c1, Cursor c2) { 338 if (c1 == null || c2 == null) { 343 if (numColumns != c2.getColumnCount()) { 347 if (c1.getCount() != c2.getCount()) { 352 c2.moveToPosition(-1); 353 while (c1.moveToNext() && c2.moveToNext()) { 355 if (!TextUtils.equals(c1.getString(i), c2.getString(i))) { [all...] |
| /external/llvm/bindings/ocaml/llvm/ |
| llvm.mli | 823 (** [const_add c1 c2] returns the constant sum of two constants. 827 (** [const_nsw_add c1 c2] returns the constant sum of two constants with no 832 (** [const_nuw_add c1 c2] returns the constant sum of two constants with no 837 (** [const_fadd c1 c2] returns the constant sum of two constant floats. 841 (** [const_sub c1 c2] returns the constant difference, [c1 - c2], of two 845 (** [const_nsw_sub c1 c2] returns the constant difference of two constants with 850 (** [const_nuw_sub c1 c2] returns the constant difference of two constants with 855 (** [const_fsub c1 c2] returns the constant difference, [c1 - c2], of tw [all...] |
| /external/mesa3d/src/glsl/ |
| ir_constant_expression.cpp | 1049 for (unsigned c = 0, c1 = 0, c2 = 0; 1051 c1 += c1_inc, c2 += c2_inc, c++) { 1056 op[2]->value.u[c2]); 1060 op[2]->value.i[c2]); 1064 op[2]->value.f[c2]); [all...] |
| /external/jpeg/ |
| jdmarker.c | 929 int c, c2; local 933 INPUT_BYTE(cinfo, c2, return FALSE); 934 if (c != 0xFF || c2 != (int) M_SOI) 935 ERREXIT2(cinfo, JERR_NO_SOI, c, c2); 937 cinfo->unread_marker = c2; [all...] |