HomeSort by relevance Sort by last modified time
    Searched refs:REPLACE (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
CodingErrorActionTest.java 47 assertNotNull(CodingErrorAction.REPLACE);
49 assertNotSame(CodingErrorAction.IGNORE, CodingErrorAction.REPLACE);
51 assertNotSame(CodingErrorAction.REPLACE, CodingErrorAction.REPORT);
59 assertTrue(CodingErrorAction.REPLACE.toString().indexOf("REPLACE") != -1);
  /libcore/luni/src/main/java/java/nio/charset/
CodingErrorAction.java 21 * errors. Currently three actions are defined: {@code IGNORE}, {@code REPLACE}
36 public static final CodingErrorAction REPLACE = new CodingErrorAction(
37 "REPLACE");
Charset.java 440 * This method uses {@code CodingErrorAction.REPLACE}.
452 .onMalformedInput(CodingErrorAction.REPLACE)
453 .onUnmappableCharacter(CodingErrorAction.REPLACE).encode(
462 * This method uses {@code CodingErrorAction.REPLACE}.
476 * This method uses {@code CodingErrorAction.REPLACE}.
488 .onMalformedInput(CodingErrorAction.REPLACE)
489 .onUnmappableCharacter(CodingErrorAction.REPLACE).decode(buffer);
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
LevenshteinDistanceTest.java 33 private static final int REPLACE = LevenshteinDistance.EDIT_REPLACE;
53 } else if (expectedOps[i] == REPLACE) {
100 new int[] {REPLACE},
106 new int[] {REPLACE, REPLACE},
  /frameworks/base/services/java/com/android/server/wm/
StrictModeFlash.java 72 c.clipRect(new Rect(0, 0, dw, mThickness), Region.Op.REPLACE);
75 c.clipRect(new Rect(0, 0, mThickness, dh), Region.Op.REPLACE);
78 c.clipRect(new Rect(dw - mThickness, 0, dw, dh), Region.Op.REPLACE);
81 c.clipRect(new Rect(0, dh - mThickness, dw, dh), Region.Op.REPLACE);
  /libcore/luni/src/test/java/libcore/java/nio/charset/
OldCharset_SingleByteAbstractTest.java 51 decoder.onMalformedInput(CodingErrorAction.REPLACE);
67 decoder.onMalformedInput(CodingErrorAction.REPLACE);
68 decoder.onUnmappableCharacter(CodingErrorAction.REPLACE);
92 // decoder.onMalformedInput(CodingErrorAction.REPLACE);
107 encoder.onUnmappableCharacter(CodingErrorAction.REPLACE);
141 // System.out.format("REPLACE mismatch at index %d (byte %d): %d instead of expected %d.\n",
144 // System.out.format("REPLACE mismatch at index %d (byte %d): %d instead of expected %d.\n",
CharsetEncoderTest.java 32 e.onMalformedInput(CodingErrorAction.REPLACE);
33 e.onUnmappableCharacter(CodingErrorAction.REPLACE);
98 testCharsetEncoderSurrogatesBrokenByDesign_RI(CodingErrorAction.REPLACE);
107 // invalid (because it doesn't remember seeing the first), and REPLACE inserts a
127 if (cea == CodingErrorAction.REPLACE) {
154 testCharsetEncoderSurrogatesBrokenByDesign(CodingErrorAction.REPLACE);
CharsetDecoderTest.java 33 d.onMalformedInput(CodingErrorAction.REPLACE);
34 d.onUnmappableCharacter(CodingErrorAction.REPLACE);
Charset_TestGenerator.java 222 encoder.onUnmappableCharacter(CodingErrorAction.REPLACE);
  /cts/tests/tests/graphics/src/android/graphics/cts/
Region_OpTest.java 40 assertEquals(Op.REPLACE, Op.valueOf("REPLACE"));
59 Op.REPLACE};
RegionTest.java 470 assertFalse(mRegion.op(rect1, Region.Op.REPLACE));
642 // REPLACE, Region with rectangle
643 // replace the dst region with the op region
648 assertFalse(mRegion.op(rect1, Region.Op.REPLACE));
652 assertTrue(mRegion.op(rect3, Region.Op.REPLACE));
658 assertTrue(mRegion.op(rect4, Region.Op.REPLACE));
664 assertTrue(mRegion.op(rect5, Region.Op.REPLACE));
699 assertFalse(mRegion.op(0, 0, 0, 0, Region.Op.REPLACE));
862 // REPLACE, Region w1ith rectangle
863 // replace the dst region with the op regio
    [all...]
  /libcore/luni/src/main/java/java/io/
InputStreamReader.java 86 CodingErrorAction.REPLACE).onUnmappableCharacter(
87 CodingErrorAction.REPLACE);
125 CodingErrorAction.REPLACE).onUnmappableCharacter(
126 CodingErrorAction.REPLACE);
OutputStreamWriter.java 85 encoder.onMalformedInput(CodingErrorAction.REPLACE);
86 encoder.onUnmappableCharacter(CodingErrorAction.REPLACE);
103 encoder.onMalformedInput(CodingErrorAction.REPLACE);
104 encoder.onUnmappableCharacter(CodingErrorAction.REPLACE);
  /external/icu4c/data/translit/
trnsfiles.mk 19 # * To REPLACE the default list and only build with a few
  /libcore/luni/src/main/java/libcore/icu/
NativeConverter.java 50 } else if (action == CodingErrorAction.REPLACE) {
  /external/icu4c/data/misc/
miscfiles.mk 19 # * To REPLACE the default list and only build a subset of files:
  /external/icu4c/data/sprep/
sprepfiles.mk 19 # * To REPLACE the default list and only build a subset of files:
  /frameworks/base/graphics/java/android/renderscript/
ProgramFragmentFixedFunction.java 90 REPLACE (1),
149 case REPLACE:
  /external/apache-harmony/nio_char/src/test/java/org/apache/harmony/nio_char/tests/java/nio/charset/
CharsetDecoderTest.java 74 // decoder.onMalformedInput(CodingErrorAction.REPLACE);
75 // decoder.onUnmappableCharacter(CodingErrorAction.REPLACE);
110 cs1.newDecoder().onMalformedInput(CodingErrorAction.REPLACE)
111 .onUnmappableCharacter(CodingErrorAction.REPLACE).decode(
186 decoder.onMalformedInput(CodingErrorAction.REPLACE);
190 // but "out" doesn't have enough space for replace string.
197 // replace string should be put into "out" firstly,
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ProgramFragmentFixedFunctionTest.java 92 assertEquals(Builder.EnvMode.REPLACE, Builder.EnvMode.valueOf("REPLACE"));
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Clipping.java 84 canvas.clipPath(mPath, Region.Op.REPLACE);
  /development/samples/RenderScript/FountainFbo/src/com/example/android/rs/fountainfbo/
FountainFboRS.java 61 pfb.setTexture(ProgramFragmentFixedFunction.Builder.EnvMode.REPLACE,
  /external/icu4c/data/brkitr/
brkfiles.mk 20 # * To REPLACE the default list and only build with a few
  /frameworks/base/core/java/com/android/internal/os/
LoggingPrintStream.java 125 .onMalformedInput(CodingErrorAction.REPLACE)
126 .onUnmappableCharacter(CodingErrorAction.REPLACE);
  /external/icu4c/data/rbnf/
rbnffiles.mk 20 # * To REPLACE the default list and only build with a few

Completed in 580 milliseconds

1 2 3 4