/prebuilts/go/linux-x86/test/fixedbugs/bug407.dir/ |
two.go | 8 package two package
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
bug461.go | 7 // part two of issue 4124. Make sure reflect doesn't mark the field as exported.
|
issue11750.go | 19 }("one", "two")
|
issue4748.go | 8 // This program used to complain because inlining created two exit labels.
|
/prebuilts/go/linux-x86/test/fixedbugs/issue3552.dir/ |
two.go | 8 package two package
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/alpha/ |
fp.s | 9 # The next two are four bytes each.
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/ |
fp.s | 8 # The next two are 32-bit floating point format.
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/ |
elf-rel13-mips16.d | 11 # The next two lines could be in either order.
|
elf-rel13.d | 11 # The next two lines could be in either order.
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/pe/ |
section-align-3.d | 22 6 \.two 0*0000008 0*0000000 0*0000000 0*0000274 2\*\*3
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/ |
b-loc64k.s | 2 % correspond to the start of a mmo file with two instructions, 64k apart.
|
b-twoinsn.s | 2 % correspond to the start of a mmo file with two instructions. This file
|
bpo-3m.d | 8 # Just two BPO relocs merged as one linker-allocated GREG.
|
bpo-4m.d | 9 # Three GREGs: one explicit, two linker-allocated.
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-powerpc/ |
tlsopt1.s | 4 # is shared with two __tls_get_addr calls.
|
/frameworks/base/core/tests/coretests/src/android/view/ |
CreateViewTest.java | 58 ViewOne two = new ViewOne(mContext); local 59 vert.addView(two, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0)); 97 TextView two = new TextView(mContext); local 98 two.setText("M"); 99 vert.addView(two, new LinearLayout.LayoutParams(MATCH_PARENT, WRAP_CONTENT, 0));
|
/frameworks/rs/api/ |
rs_vector_math.spec | 45 summary: Cross product of two vectors 47 Computes the cross product of two vectors. 70 summary: Distance between two points 72 Compute the distance between two points. 97 summary: Dot product of two vectors 99 Computes the dot product of two vectors. 122 summary: Approximate distance between two points 124 Computes the approximate distance between two points. 205 summary: Approximate distance between two points 207 Computes the approximate distance between two points [all...] |
/external/valgrind/memcheck/tests/ |
str_tester.c | 58 /* Complain if first two args don't strcmp as equal. */ 66 char two[50]; variable 143 (void) strcpy (two, "hi there"); 144 (void) strcpy (one, two); 146 equal (two, "hi there", 6); /* Stomped on source? */ 155 (void) strcpy (two, one + i); /* Unaligned source. */ 156 equal (two, "hi there", 9 + (i * 2)); 299 (void) strcpy (two, "ef"); 300 (void) strcat (one, two); 302 equal (two, "ef", 6); /* Stomped on source? * [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/ |
BigIntegerTest.java | 33 BigInteger two = new BigInteger("2", 10); field in class:BigIntegerTest 46 BigInteger twoToTheSeventy = two.pow(70); 98 "Two random numbers in a row are the same (might not be a bug but it very likely is)", 111 .setBit(16).subtract(two))); 125 .setBit(16).subtract(two))); 128 .setBit(16).subtract(two).negate())); 232 assertTrue("Smaller number returned >= 0", one.compareTo(two) < 0); 233 assertTrue("Larger number returned >= 0", two.compareTo(one) > 0); 236 two.negate().compareTo(one) < 0); 245 assertTrue("Incorrect intValue for 2", two.intValue() == 2) [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
ListFormatter.java | 32 private final String two; field in class:ListFormatter 94 * @param two 95 * string for two items, containing {0} for the first, and {1} 110 public ListFormatter(String two, String start, String middle, String end) { 112 compilePattern(two, new StringBuilder()), 119 private ListFormatter(String two, String start, String middle, String end, ULocale locale) { 120 this.two = two; 211 return new FormattedListBuilder(it.next(), index == 0).append(two, it.next(), index == 1);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
ListFormatter.java | 31 private final String two; field in class:ListFormatter 93 * @param two 94 * string for two items, containing {0} for the first, and {1} 109 public ListFormatter(String two, String start, String middle, String end) { 111 compilePattern(two, new StringBuilder()), 118 private ListFormatter(String two, String start, String middle, String end, ULocale locale) { 119 this.two = two; 215 return new FormattedListBuilder(it.next(), index == 0).append(two, it.next(), index == 1);
|
/art/test/093-serialization/src/ |
Main.java | 96 Integer two; field in class:Base 101 two = Integer.valueOf(2); 127 System.out.println("one=" + one + " two=" + two + " three=" + three
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/ |
DfpField.java | 114 private final Dfp two; field in class:DfpField 119 /** A two elements {@link Dfp} array with value √2 split in two pieces. */ 134 /** A two elements {@link Dfp} array with value π split in two pieces. */ 140 /** A two elements {@link Dfp} array with value e split in two pieces. */ 146 /** A two elements {@link Dfp} array with value ln(2) split in two pieces. */ 152 /** A two elements {@link Dfp} array with value ln(5) split in two pieces. * [all...] |
/external/chromium-trace/catapult/telemetry/third_party/mox3/mox3/tests/ |
mox_helper.py | 114 def __init__(self, one, two, nine=None): 124 def MyTestFunction(one, two, nine=None): 132 def TestMethod(self, one, two, nine=None):
|
/external/chromium-trace/catapult/third_party/mox3/mox3/tests/ |
mox_helper.py | 114 def __init__(self, one, two, nine=None): 124 def MyTestFunction(one, two, nine=None): 132 def TestMethod(self, one, two, nine=None):
|