/dalvik/dx/tests/088-ssa-combine-blocks/ |
info.txt | 1 This is a test case for the identical-block combining algorithm, which runs after the SSA optimizer to recombine identical blocks (usually exception handlers) created during edge-splitting.
|
/dalvik/dx/tests/082-dex-throws-list-sharing/ |
info.txt | 2 identical throws lists in different methods get collapsed into a single
|
/dalvik/dx/tests/094-scala-locals/ |
info.txt | 3 an identical value twice. The correct result should be only a single
|
/development/samples/VoiceRecognitionService/src/com/example/android/voicerecognitionservice/ |
VoiceRecognitionSettings.java | 31 // Identical to the value specified in res/values/strings.xml. 35 // Identical to the values specified in res/values/strings.xml.
|
/dalvik/libcore/security/src/main/java/org/bouncycastle/util/encoders/ |
UrlBase64Encoder.java | 4 * Convert binary data to and from UrlBase64 encoding. This is identical to
|
/external/clearsilver/man/man3/ |
filter_create_fp.3 | 44 filter_create_fp is identical to filter_create_fd,
|
/dalvik/vm/ |
ReferenceTable.c | 181 * Pass in the number of additional elements that are identical to or 184 static void logObject(Object* obj, int size, int identical, int equiv) 195 if (identical + equiv != 0) { 196 LOGW("%5d of %s %dB (%d unique)\n", identical + equiv +1, 199 LOGW("%5d of %s %dB\n", identical + equiv +1, descriptor, size); 264 int equiv, identical, total; local 265 total = equiv = identical = 0; 271 identical++; 281 logObject(refs[i-1], size, identical, equiv); 282 equiv = identical = 0 [all...] |
IndirectRefTable.c | 383 * Pass in the number of additional elements that are identical to or 386 static void logObject(Object* obj, int size, int identical, int equiv) 393 if (identical + equiv != 0) { 394 LOGW("%5d of %s %dB (%d unique)\n", identical + equiv +1, 397 LOGW("%5d of %s %dB\n", identical + equiv +1, 473 int equiv, identical, total; local 474 total = equiv = identical = 0; 480 identical++; 490 logObject(refs[i-1], size, identical, equiv); 491 equiv = identical = 0 [all...] |
/dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
CollatorTest.java | 72 c.setStrength(Collator.IDENTICAL); 84 assertTrue("a) Failed on identical", c.compare(o, o2) < 0); 103 assertEquals("b) Failed on identical", 0, c.compare(o, o2)); 120 assertEquals("c) Failed on identical", 0, c.compare(o, o2)); 137 assertEquals("d) Failed on identical", 0, c.compare(o, o2)); 188 c.setStrength(Collator.IDENTICAL); 193 assertTrue("a) Failed on identical", !c.equals("\u0001", "\u0002")); 201 assertTrue("b) Failed on identical", c.equals("\u0001", "\u0002")); 209 assertTrue("c) Failed on identical", c.equals("\u0001", "\u0002")); 216 assertTrue("d) Failed on identical", c.equals("\u0001", "\u0002")) [all...] |
/external/icu4c/common/ |
servnotf.h | 67 * identical listener is not already registered with the Notifier. 85 * register the identical listener more than once will be
|
/external/skia/include/effects/ |
SkAvoidXfermode.h | 42 Tolerance near 255: avoid only colors nearly identical to the op-color 46 Tolerance near 0: draw only on colors that are nearly identical to the op-color
|
/frameworks/base/graphics/java/android/graphics/ |
AvoidXfermode.java | 44 * Tolerance near 255: avoid only colors nearly identical to the op-color 48 * Tolerance near 0: draw only on colors that are nearly identical to the op-color
|
/bionic/libc/arch-sh/bionic/ |
sigsetjmp.S | 45 /* identical to setjmp */ 63 2: /* identical to _setjmp except that first word is in r5 */ 110 /* identical to longjmp */ 125 2: /* identical to _longjmp */
|
/dalvik/libcore/crypto/src/main/java/javax/crypto/ |
NullCipher.java | 34 * in any way. The <i>encrypted</i> data is identical to the <i>plain text</i>.
|
/dalvik/tests/040-miranda/src/ |
Main.java | 14 /* try again through abstract class; results should be identical */
|
/external/bison/lib/ |
strdup.c | 39 /* Duplicate S, returning an identical malloc'd string. */
|
strdup.h | 25 /* Duplicate S, returning an identical malloc'd string. */
|
/external/bison/m4/ |
extensions.m4 | 9 # have a macro AC_USE_SYSTEM_EXTENSIONS with identical semantics.
|
/external/guava/src/com/google/common/io/ |
ByteArrayDataInput.java | 24 * methods offer identical functionality but do not throw {@link IOException}.
|
/external/icu4c/samples/ufortune/ |
fortunedefs.mk | 28 # DLL and static modes are identical here
|
/external/stlport/doc/ |
README.intel | 1 Build of STLport with Intel C++ compiler for Windows is identical
|
/external/webkit/LayoutTests/http/tests/appcache/ |
top-frame-3.html | 37 // Add an identical frame, to test that loading its resources from appcache works.
|
top-frame-4.html | 37 // Add an identical frame, to test that loading its resources from appcache works.
|
/external/guava/src/com/google/common/collect/ |
ImmutableList.java | 85 * Identical to {@link #of(Object[])}. 94 * Identical to {@link #of(Object[])}. 103 * Identical to {@link #of(Object[])}. 112 * Identical to {@link #of(Object[])}. 121 * Identical to {@link #of(Object[])}. 130 * Identical to {@link #of(Object[])}. 141 * Identical to {@link #of(Object[])}. 152 * Identical to {@link #of(Object[])}. 163 * Identical to {@link #of(Object[])}. 174 * Identical to {@link #of(Object[])} [all...] |
/dalvik/libcore/text/src/main/java/java/text/ |
Collator.java | 56 * <li>IDENTICAL strength: When all other strengths are equal, the IDENTICAL 158 public static final int IDENTICAL = 3; 350 * IDENTICAL. 387 * IDENTICAL. 433 case Collator.IDENTICAL: 434 icuValue = com.ibm.icu4jni.text.Collator.IDENTICAL; 453 case com.ibm.icu4jni.text.Collator.IDENTICAL: 454 javaValue = Collator.IDENTICAL;
|