/external/clang/test/CodeGenCXX/ |
copy-constructor-synthesis.cpp | 60 static int ix = 1; variable 63 S() : iS(ix++) { } 70 I() : iI(ix++) { }
|
vtable-layout-abi-examples.cpp | 120 int ix; member in struct:Test1::X
|
/frameworks/base/media/java/android/media/ |
SubtitleTrack.java | 162 private void removeRunsByEndTimeIndex(int ix) { 163 Run run = mRunsByEndTime.valueAt(ix); 178 mRunsByEndTime.removeAt(ix); 185 for(int ix = size - 1; ix >= 0; ix--) { 186 removeRunsByEndTimeIndex(ix); 610 int ix = runsByEndTime.indexOfKey(mStoredEndTimeMs); 611 if (ix >= 0) { 613 assert(this == runsByEndTime.valueAt(ix)); [all...] |
/frameworks/base/media/mca/filterfw/native/core/ |
geometry.cpp | 131 const Point& Quad::point(int ix) const { 132 ALOG_ASSERT(ix < static_cast<int>(points_.size()), "Access out of bounds"); 133 return points_[ix];
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
e_fmodl.c | 71 int ix,iy,n,sx; local 95 /* determine ix = ilogb(x) */ 98 ix = ux.bits.exp - (BIAS + 512); 100 ix = ux.bits.exp - BIAS; 118 n = ix - iy;
|
/external/chromium/chrome/browser/sync/glue/ |
autofill_model_associator.cc | 71 for (std::vector<AutofillEntry>::const_iterator ix = entries.begin(); 72 ix != entries.end(); ++ix) { 73 std::string tag = KeyToTag(ix->key().name(), ix->key().value()); 88 if (MergeTimestamps(autofill, ix->timestamps(), ×tamps)) { 89 AutofillEntry new_entry(ix->key(), timestamps); 109 AutofillChangeProcessor::WriteAutofillEntry(*ix, &node); 114 current_entries->insert(ix->key()); 245 for (std::vector<AutofillProfile*>::const_iterator ix 317 std::vector<AutofillProfile*>::const_iterator ix = local [all...] |
autofill_profile_model_associator.cc | 61 for (std::vector<AutofillProfile*>::const_iterator ix = 62 all_profiles_from_db.begin(); ix != all_profiles_from_db.end(); ++ix) { 63 AutofillProfile* p = *ix; 76 for (std::vector<AutofillProfile*>::const_iterator ix = profiles.begin(); 77 ix != profiles.end(); 78 ++ix) { 79 std::string guid((*ix)->guid()); 93 << (*ix)->GetInfo(NAME_FIRST) 94 << (*ix)->GetInfo(NAME_LAST [all...] |
/external/chromium_org/skia/ext/ |
recursive_gaussian_convolution_unittest.cc | 277 std::vector<unsigned char>::const_iterator ix, iy; local 279 for (target = output.begin(), ix = output_x.begin(), iy = output_y.begin(); 280 target < output.end(); ++target, ++ix, ++iy) { 281 *target = *ix + *iy; 311 for (target = output.begin(), ix = output_x.begin(), iy = output_y.begin(); 312 target < output.end(); ++target, ++ix, ++iy) { 313 *target = *ix + *iy; 366 std::vector<unsigned char>::const_iterator ix, iy; local 368 for (target = output.begin(),ix = output_x.begin(), iy = output_y.begin(); 369 target < output.end(); ++target, ++ix, ++iy) [all...] |
/external/valgrind/unittest/ |
linear_solver.h | 13 inline double& operator[] (int ix) { 14 CHECK(ix < N && ix >= 0); 15 return k[ix]; 18 inline const double& operator[] (int ix) const { 19 CHECK(ix < N && ix >= 0); 20 return k[ix];
|
/external/chromium_org/third_party/skia/src/core/ |
ARGB32_Clamp_Bilinear_BitmapShader.h | 24 int ix = fx >> 16; local 31 + SkClampMax(ix, srcMaxX); 33 if ((unsigned)ix < srcMaxX) 50 int ix = fx >> 16; local 54 p00 = p01 = srcPixels + SkClampMax(ix, srcMaxX); 55 if ((unsigned)ix < srcMaxX)
|
/external/skia/src/core/ |
ARGB32_Clamp_Bilinear_BitmapShader.h | 24 int ix = fx >> 16; local 31 + SkClampMax(ix, srcMaxX); 33 if ((unsigned)ix < srcMaxX) 50 int ix = fx >> 16; local 54 p00 = p01 = srcPixels + SkClampMax(ix, srcMaxX); 55 if ((unsigned)ix < srcMaxX)
|
/frameworks/base/core/java/android/text/method/ |
MultiTapKeyListener.java | 140 int ix = val.indexOf(ch); local 142 if (ix >= 0) { 143 ix = (ix + 1) % (val.length()); 145 content.replace(selStart, selEnd, val, ix, ix + 1);
|
/external/chromium_org/chrome/browser/chromeos/input_method/ |
input_method_engine.cc | 276 for (std::vector<Candidate>::const_iterator ix = candidates.begin(); 277 ix != candidates.end(); ++ix) { 279 entry.value = ix->value; 280 entry.label = ix->label; 281 entry.annotation = ix->annotation; 282 entry.description_title = ix->usage.title; 283 entry.description_body = ix->usage.body; 286 candidate_indexes_[ix->id] = candidate_ids_.size(); 287 candidate_ids_.push_back(ix->id) [all...] |
/external/sonivox/arm-fm-22k/lib_src/ |
eas_chorus.c | 254 EAS_I32 ix; local 293 for (ix = 0; ix < numSamples; ix++) 339 for (ix = 0; ix < numSamples; ix++)
|
/external/sonivox/arm-hybrid-22k/lib_src/ |
eas_chorus.c | 254 EAS_I32 ix; local 293 for (ix = 0; ix < numSamples; ix++) 339 for (ix = 0; ix < numSamples; ix++)
|
/external/sonivox/arm-wt-22k/lib_src/ |
eas_chorus.c | 254 EAS_I32 ix; local 293 for (ix = 0; ix < numSamples; ix++) 339 for (ix = 0; ix < numSamples; ix++)
|
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/ |
c3_14pf.cpp | 385 Word16 ix = 0; /* initialization only needed to keep gcc silent */ local 454 ix = ipos[1]; 497 ix = i1; 500 i1 = ix; 514 ix = ipos[2]; 555 ix = i2; 558 i2 = ix;
|
/external/chromium_org/third_party/icu/source/common/ |
utext.cpp | 1272 int32_t ix= (int32_t)index; \/\/ Requested index, trimmed to 32 bits. local 3087 int64_t ix = utext_getNativeIndex((UText *)src); local [all...] |
/external/icu4c/common/ |
utext.cpp | 926 int32_t ix= (int32_t)index; // Requested index, trimmed to 32 bits. local 929 ix=0; 932 ix = 0x7fffffff; 936 if (ix>length) { 938 ix=length; 939 } else if (ix>=ut->c) { 944 while (ut->c<ix && s8[ut->c]!=0) { 951 ix = ut->c; 963 if (ix==ut->chunkNativeLimit) { 965 if (ix==length) 2724 int64_t ix = utext_getNativeIndex((UText *)src); local [all...] |
/external/skia/tests/ |
MathTest.cpp | 258 int ix = (int)x; local 260 assert_float_equal(reporter, "cast", x, ix, iix); 264 int ix = (int)floor(x); local 266 assert_float_equal(reporter, "floor", x, ix, iix); 271 int ix = (int)floor(xx); local 273 assert_float_equal(reporter, "round", x, ix, iix); 277 int ix = (int)ceil(x); local 279 assert_float_equal(reporter, "ceil", x, ix, iix); 421 int ix = rand.nextS(); local 422 REPORTER_ASSERT(reporter, SkCopySign32(ix, ix) == ix) [all...] |
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/ |
c4t64fx.c | 108 Word16 * ix, /* (o) position of pulse 1 */ 136 Word16 st, ix, iy, pos, index, track, nb_pulse, nbiter, j_temp; local 568 ix = ind[0] = pos_max[ipos[0]]; 570 ps = dn[ix] + dn[iy]; 571 i = ix >> 2; /* ix / STEP */ 575 i = (i << 4) + j; /* (ix/STEP)*NB_POS + (iy/STEP) */ 578 if (sign[ix] < 0) 579 p0 = h_inv - ix; 581 p0 = h - ix; [all...] |
/external/chromium_org/third_party/libxml/src/ |
xmlstring.c | 775 int ix; local 788 for (ix = 0; (c = utf[ix]);) { /* string is 0-terminated */ 790 ix++; 792 if ((utf[ix+1] & 0xc0 ) != 0x80) 794 ix += 2; 796 if (((utf[ix+1] & 0xc0) != 0x80) || 797 ((utf[ix+2] & 0xc0) != 0x80)) 799 ix += 3; 801 if (((utf[ix+1] & 0xc0) != 0x80) | [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
s_points.c | 316 GLint ix, iy; local 326 for (ix = xmin; ix <= xmax; ix++) { 327 const GLfloat dx = ix - x + 0.5F; 341 span.array->mask[ix - xmin] = 1; 346 span.array->mask[ix - xmin] = 0; 348 span.array->coverage[ix - xmin] = coverage; 411 GLint xmin, xmax, ymin, ymax, ix, iy; local 436 for (ix = xmin; ix <= xmax; ix++) [all...] |
/external/libxml2/ |
xmlstring.c | 775 int ix; local 788 for (ix = 0; (c = utf[ix]);) { /* string is 0-terminated */ 790 ix++; 792 if ((utf[ix+1] & 0xc0 ) != 0x80) 794 ix += 2; 796 if (((utf[ix+1] & 0xc0) != 0x80) || 797 ((utf[ix+2] & 0xc0) != 0x80)) 799 ix += 3; 801 if (((utf[ix+1] & 0xc0) != 0x80) | [all...] |
/external/mesa3d/src/mesa/swrast/ |
s_points.c | 316 GLint ix, iy; local 326 for (ix = xmin; ix <= xmax; ix++) { 327 const GLfloat dx = ix - x + 0.5F; 341 span.array->mask[ix - xmin] = 1; 346 span.array->mask[ix - xmin] = 0; 348 span.array->coverage[ix - xmin] = coverage; 411 GLint xmin, xmax, ymin, ymax, ix, iy; local 436 for (ix = xmin; ix <= xmax; ix++) [all...] |