/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
FilterMirrorRepresentation.java | 90 public boolean equals(FilterRepresentation rep) { 91 if (!(rep instanceof FilterMirrorRepresentation)) { 94 FilterMirrorRepresentation mirror = (FilterMirrorRepresentation) rep;
|
FilterRotateRepresentation.java | 161 public boolean equals(FilterRepresentation rep) { 162 if (!(rep instanceof FilterRotateRepresentation)) { 165 FilterRotateRepresentation rotate = (FilterRotateRepresentation) rep;
|
FilterGradRepresentation.java | 127 FilterGradRepresentation rep = (FilterGradRepresentation) a; local 129 int n = (rep.mCurrentBand == null) ? 0 : rep.mBands.indexOf(rep.mCurrentBand); 130 for (Band band : rep.mBands) { 154 FilterGradRepresentation rep = (FilterGradRepresentation) representation; local 156 if (rep.getNumberOfBands() != n) { 161 Band b2 = rep.mBands.get(i);
|
/external/chromium_org/third_party/icu/source/i18n/unicode/ |
utrans.h | 358 * passed in as a UReplaceable pointer rep and a UReplaceableCallbacks 360 * will be called in order to modify the rep string. 363 * @param rep a pointer to the string. This will be passed to the 366 * modify the string pointed to by rep. 370 * limit <= repFunc->length(rep)</code>. Upon return, *limit will 381 UReplaceable* rep, 392 * <code>rep</code> between <code>index.cursor</code> and 421 * @param rep a pointer to the string. This will be passed to the 424 * modify the string pointed to by rep. 432 UReplaceable* rep, [all...] |
/external/guava/guava-tests/test/com/google/common/base/ |
AbstractIteratorTest.java | 41 private int rep; 43 switch (rep++) {
|
/external/icu4c/i18n/unicode/ |
utrans.h | 358 * passed in as a UReplaceable pointer rep and a UReplaceableCallbacks 360 * will be called in order to modify the rep string. 363 * @param rep a pointer to the string. This will be passed to the 366 * modify the string pointed to by rep. 370 * limit <= repFunc->length(rep)</code>. Upon return, *limit will 381 UReplaceable* rep, 392 * <code>rep</code> between <code>index.cursor</code> and 421 * @param rep a pointer to the string. This will be passed to the 424 * modify the string pointed to by rep. 432 UReplaceable* rep, [all...] |
/external/qemu-pc-bios/bochs/bios/ |
rombios32start.S | 37 rep stosb 44 rep movsb
|
/external/zlib/src/contrib/inflate86/ |
inffas86.c | 11 * slightly quicker on x86 systems because, instead of using rep movsb to copy 12 * data, it uses rep movsw, which moves data in 2-byte chunks instead of single 294 " rep movsw\n" 303 " rep movsw\n" 324 " rep stosw\n" 377 " rep movsb\n" 399 " rep movsb\n" 406 " rep movsb\n" 422 " rep movsb\n" 430 " rep movsb\n [all...] |
inffast.S | 329 rep movsb /* memcpy( buf, in, avail_in ) */ 332 rep stosb /* memset( &buf[ avail_in ], 0, 12 - avail_in ) */ 643 rep movsb 664 rep stosb 752 rep movsb 761 rep movsb 806 rep movsb 813 rep movsb 843 rep movsb 861 rep movs [all...] |
/external/icu4c/i18n/ |
digitlst.cpp | 432 char rep[MAX_DIGITS]; 433 sprintf(rep, "%+1.1f", 1.0); 434 decimalSeparator = rep[2]; 798 char rep[MAX_DIGITS + 8]; // Extra space for '+', '.', e+NNN, and '\0' (actually +8 is enough) 806 uprv_strcpy(rep,"-inf"); // Handle negative infinity 808 uprv_strcpy(rep,"inf"); 811 sprintf(rep, "%+1.*e", MAX_DBL_DIGITS - 1, source); 813 U_ASSERT(uprv_strlen(rep) < sizeof(rep)); 818 char *decimalSeparator = strchr(rep, ','); [all...] |
/external/libppp/src/ |
ether.c | 218 struct ng_mesg *rep = (struct ng_mesg *)msgbuf; local 219 struct ngpppoe_sts *sts = (struct ngpppoe_sts *)(msgbuf + sizeof *rep); 244 if (NgRecvMsg(dev->cs, rep, sizeof msgbuf, NULL) <= 0) 247 if (rep->header.version != NG_VERSION) { 249 (long)rep->header.version, (long)NG_VERSION); 253 if (rep->header.typecookie != NGM_PPPOE_COOKIE) { 255 (long)rep->header.typecookie, (long)NGM_PPPOE_COOKIE); 260 switch (rep->header.cmd) { 273 asciilen = rep->header.arglen; 287 snprintf(unknown, sizeof unknown, "<%d>", (int)rep->header.cmd) [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/ |
ImagePreset.java | 153 public void updateOrAddFilterRepresentation(FilterRepresentation rep) { 154 int pos = getPositionForRepresentation(rep); 156 mFilters.elementAt(pos).useParametersFrom(rep); 158 addFilter(rep.copy()); 352 FilterRepresentation rep = preset.getFilterRepresentationForType( local 354 addFilter(rep); 371 FilterRepresentation rep = mFilters.elementAt(index); local 372 if (rep.getFilterType() != FilterRepresentation.TYPE_GEOMETRY) { 406 FilterRepresentation rep = mFilters.elementAt(i); local 407 if (rep.getFilterType() == FilterRepresentation.TYPE_BORDER) [all...] |
/external/chromium_org/chrome/browser/extensions/ |
extension_icon_image.cc | 226 gfx::ImageSkiaRep rep = image->GetRepresentation(scale); 227 DCHECK(!rep.is_null()); 228 DCHECK_EQ(scale, rep.scale()); 232 image_skia_.AddRepresentation(rep);
|
/external/chromium_org/third_party/smhasher/src/ |
KeysetTest.cpp | 170 for(int rep = 0; rep < 100; rep++) 172 if(rep % 10 == 0) printf(".");
|
/external/compiler-rt/lib/tsan/rtl/ |
tsan_report.h | 116 void PrintReport(const ReportDesc *rep);
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/ |
EditorCrop.java | 90 FilterRepresentation rep = getLocalRepresentation(); local 91 if (rep == null || rep instanceof FilterCropRepresentation) { 92 mImageCrop.setFilterCropRepresentation((FilterCropRepresentation) rep);
|
ParametricEditor.java | 157 protected Parameter getParameterToEdit(FilterRepresentation rep) { 160 } else if (rep instanceof Parameter) { 161 return ((Parameter) rep); 170 FilterRepresentation rep = getLocalRepresentation(); local 171 Parameter param = getParameterToEdit(rep);
|
/external/chromium_org/chrome/browser/speech/ |
speech_recognition_bubble.cc | 157 const gfx::ImageSkiaRep& rep = local 161 rep.pixel_width(), rep.pixel_height()); 166 rep.pixel_width(), rep.pixel_height());
|
/external/chromium_org/third_party/x86inc/ |
x86inc.asm | 191 %rep %0 199 %rep %0 261 %rep n_arg_names 273 %rep %0 327 %rep (xmm_regs_used-6) 337 %rep (xmm_regs_used-6) 364 rep ret 398 rep ret 488 rep ret 570 %rep [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
digitlst.cpp | 66 char rep[MAX_DIGITS]; local 70 sprintf(rep, "%+1.1f", 1.0); 71 gDecimal = rep[2]; 728 char rep[MAX_DIGITS + 8]; // Extra space for '+', '.', e+NNN, and '\0' (actually +8 is enough) 731 sprintf(rep, "%+1.*e", MAX_DBL_DIGITS - 1, source); 732 U_ASSERT(uprv_strlen(rep) < sizeof(rep)); 739 char *decimalPt = strchr(rep, gDecimal); 746 uprv_decNumberFromString(fDecNumber, rep, &fContext);
|
/external/zlib/src/contrib/masmx86/ |
inffas32.asm | 246 rep movsb
249 rep stosb
482 rep movsb
503 rep stosb
566 rep movsb
575 rep movsb
597 rep movsb
604 rep movsb
620 rep movsb
627 rep movsb [all...] |
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/cert/ |
PKIXBuilderParameters_ImplTest.java | 230 String rep = p.toString(); local 232 assertNotNull(rep);
|
/external/chromium_org/tools/traceline/traceline/ |
stubs.asm | 39 rep stosb label 41 rep movsb label
|
/external/chromium_org/ui/gfx/image/ |
image.h | 199 void AddRepresentation(internal::ImageRep* rep) const;
|
/external/chromium_org/v8/src/ |
conversions.cc | 210 char* rep = rep_builder.Finalize(); local 217 builder.AddSubstring(rep, decimal_point); 220 builder.AddSubstring(rep + decimal_point, f); 222 DeleteArray(rep);
|