HomeSort by relevance Sort by last modified time
    Searched defs:three (Results 1 - 25 of 47) sorted by null

1 2

  /external/v8/test/mjsunit/compiler/
regress-stacktrace.js 29 eval("function two() { /* xxxxxxx */ three(); }");
35 function three() { function
43 var p3 = stack.indexOf("at three");
regress-stacktrace-methods.js 34 Svin.prototype.two = function() { /* xxxxxxx */ o.three(); }
38 Hest.prototype.three = function() { if (v == 42) throw new Error("urg"); }
48 %OptimizeFunctionOnNextCall(Hest.prototype.three);
57 var p3 = stack.indexOf("at Hest.three");
  /external/clang/test/PCH/Inputs/
chain-decls2.h 5 struct three {}; // for verification struct
  /external/mesa3d/src/glsl/glcpp/tests/
054-if-with-macros.c 3 #define three 3 macro
10 #if three >= two
15 #if two + three <= five
20 #if five - two == three
25 #if one > three
  /frameworks/compile/libbcc/tests/debuginfo/host-tests/
jit.cpp 4 // DEBUGGER: break three
8 // CHECK: three () at
16 int three() function
23 return three();
  /external/clang/test/SemaCXX/
gnu-case-ranges.cpp 6 three, enumerator in enum:E
  /dalvik/libdex/
DexUtf.h 42 unsigned int one, two, three; local
46 /* two- or three-byte encoding */
49 /* three-byte encoding */
50 three = *(*pUtf8Ptr)++;
53 (three & 0x3f);
  /external/valgrind/main/exp-bbv/tests/amd64-linux/
fldcw_check.S 131 fldl three # load value onto fp stack
164 three: .long 0 # a floating point 3.0 label
  /external/valgrind/main/exp-bbv/tests/x86/
fldcw_check.S 85 fldl three # load value onto fp stack
128 three: .long 0 # a floating point 3.0 label
  /frameworks/compile/mclinker/unittests/
LinearAllocatorTest.h 28 : one(1), two(2), three(3), four(4)
35 three = pThree;
43 three = -3;
49 unsigned char three; member in struct:mcldtest::LinearAllocatorTest::Data
RTLinearAllocatorTest.h 41 : one(1), two(2), three(3), four(4)
48 three = pThree;
56 three = -3;
62 unsigned char three; member in struct:mcldtest::RTLinearAllocatorTest::Data
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
CodeSignerTest.java 69 CodeSigner three = new CodeSigner(cpath, null); local
77 assertFalse(one.equals(three));
78 assertFalse(three.equals(one));
79 assertTrue(three.equals(three));
81 assertFalse( three.equals(four));
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
CodeSignerTest.java 86 CodeSigner three = new CodeSigner(cpath, null); local
94 assertFalse(one.equals(three));
95 assertFalse(three.equals(one));
96 assertTrue(three.equals(three));
98 assertFalse( three.equals(four));
TimestampTest.java 109 Timestamp three = new Timestamp(now, new MyCertPath(new byte[] { 10, local
114 assertTrue(one.hashCode() != three.hashCode());
115 assertTrue(two.hashCode() != three.hashCode());
  /external/skia/src/utils/
SkBase64.cpp 78 int three = 0; local
84 three = bytes[2];
85 two |= three >> 2;
86 three = (uint8_t) (three << 6);
87 three |= bytes[3];
88 SkASSERT(one < 256 && two < 256 && three < 256);
100 *dst = (unsigned char) three;
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
ConcurrentModTest.java 38 Double three = new Double(3.0); local
42 al.add(three);
68 Double three = new Double(3.0); local
72 al.add(three);
98 Double three = new Double(3.0); local
102 al.add(three);
128 Double three = new Double(3.0); local
132 al.add(three);
158 Double three = new Double(3.0); local
162 al.add(three);
    [all...]
  /external/e2fsprogs/lib/ext2fs/
res_gdt.c 26 static unsigned int list_backups(ext2_filsys fs, unsigned int *three,
29 unsigned int *min = three;
125 unsigned int three = 1, five = 5, seven = 7; local
166 while ((grp = list_backups(fs, &three, &five, &seven)) <
  /frameworks/base/core/tests/coretests/src/android/view/
CreateViewTest.java 61 ViewOne three = new ViewOne(mContext); local
62 vert.addView(three, new LinearLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT, 0));
101 TextView three = new TextView(mContext); local
102 three.setText("T");
103 vert.addView(three, new LinearLayout.LayoutParams(MATCH_PARENT, WRAP_CONTENT, 0));
  /libcore/luni/src/test/java/libcore/xml/
SimpleBuilderTest.java 73 Element three = (Element) list.item(2); local
80 assertEquals("Rent this space!", getTextContent(three));
85 assertEquals("drei", three.getAttribute("three"));
  /dalvik/tests/093-serialization/src/
Main.java 80 String three; field in class:Base
85 three = "three";
110 System.out.println("one=" + one + " two=" + two + " three=" + three
  /external/icu4c/test/cintltst/
chashtst.c 101 static const char three[6] = {0x74, 0x68, 0x72, 0x65, 0x65, 0}; /* "three" */ local
121 _put(hash, three, 3, 0);
126 _get(hash, three, 3);
134 if(_compareChars((void*)one, (void*)three) == TRUE ||
140 if(_compareIChars((void*)one, (void*)three) == TRUE ||
161 static const UChar three[6] = {0x0074, 0x0068, 0x0072, 0x0065, 0x0065, 0}; /* L"three" */ local
186 uhash_puti(hash, (void*)three, 3, &status);
  /external/v8/test/mjsunit/
keyed-call-ic.js 56 F.prototype.three = function() {return 'three'; }
59 ['one', 'one', 'one', 'one', 'two', 'two', 'one', 'three', 'one', 'two'];
  /libcore/luni/src/test/java/libcore/java/lang/
OldAndroidInstanceofTest.java 65 InterfaceThree three = mThree; local
67 assertFalse("m_three should not be a ChildOfAFive", three instanceof ChildOfAFive);
  /external/guava/guava-tests/test/com/google/common/primitives/
BooleansTest.java 168 List<Boolean> three = Arrays.asList(false, false, true); local
169 assertTrue(Arrays.equals(array, Booleans.toArray(three)));
BytesTest.java 172 List<Byte> three = Arrays.asList((byte) 0, (byte) 1, (byte) 0x55); local
173 assertTrue(Arrays.equals(array, Bytes.toArray(three)));

Completed in 435 milliseconds

1 2