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

1 2 3 4 5

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
cortex-a8-far-2.s 3 three: label
  /external/clang/test/PCH/Inputs/
chain-decls2.h 5 struct three {}; // for verification struct
  /external/llvm/test/MC/ELF/
dot-symbol-assignment.s 11 three: label
15 . = three + 9
  /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 7 three, enumerator in enum:E
  /external/compiler-rt/test/asan/TestCases/Linux/
clang_gcc_abi.cc 13 volatile int three = 3; local
14 char * volatile s = (char *)malloc(three);
16 return s[three]; //BOOM
  /external/testng/src/test/java/test/methodinterceptors/
LockUpInterceptorSampleTest.java 21 public void three() { method in class:LockUpInterceptorSampleTest
22 log("three");
  /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/icu/icu4c/source/test/intltest/
listformattertest.h 48 UnicodeString three,
55 UnicodeString three,
64 const UnicodeString three; member in class:ListFormatterTest
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/ia64/
forward.s 3 three == 3*one label
14 alloc r31 = one + 1, two + 2, three + 3, four + 4
15 dep.z RA = one, two + 3, three + 4
24 alloc r31 = one + 1, two + 2, three + 3, four - 4
25 dep.z RA = one, two + 3, three + 4
  /art/runtime/
utf-inl.h 45 const uint8_t three = *(*utf8_data_in)++; local
47 return ((one & 0x0f) << 12) | ((two & 0x3f) << 6) | (three & 0x3f);
60 | ((three & 0x3f) << 6) | (four & 0x3f);
66 // Step three : Write out the low (trailing) surrogate to the top 16 bits.
  /external/clang/test/CodeGenCXX/
cp-blocks-linetables.cpp 17 zero, one, two, three, four enumerator in enum:numbers
24 return I(three);
36 if (y != three)
41 if (y != three) {
47 if (x != three)
49 if (y != three)
  /external/clang/test/Sema/
no-documentation-warn-tagdecl-specifier.c 83 enum e8 { three }; enumerator in enum:e8
  /external/mockito/src/test/java/org/mockitousage/matchers/
VerificationAndStubbingUsingMatchersTest.java 21 private IMethods three; field in class:VerificationAndStubbingUsingMatchersTest
27 three = mock(IMethods.class);
34 when(three.simpleMethod(startsWith("test"))).thenThrow(new RuntimeException());
42 assertEquals(null, three.simpleMethod("three"));
43 assertEquals(null, three.simpleMethod("three again"));
46 three.simpleMethod("test three again");
54 when(three.varargsObject(5, "first arg", "second arg")).thenReturn("stubbed")
    [all...]
  /external/mockito/src/test/java/org/mockitousage/verification/
VerificationUsingMatchersTest.java 47 Object three = new String("1243"); local
51 assertEquals(two, three);
60 verify(mock).oneArg(same(three));
  /external/testng/src/test/java/test/annotationtransformer/
AnnotationTransformerSampleTest.java 25 public void three() { method in class:AnnotationTransformerSampleTest
34 @Test(dependsOnMethods = {"two", "three", "four", "five"})
  /external/v8/tools/clang/plugins/tests/
inline_ctor.cpp 28 InlineCtorsBehindAMacroArentOKInHeader three; local
  /external/valgrind/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/exp-bbv/tests/x86/
fldcw_check.S 85 fldl three # load value onto fp stack
141 three: .long 0 # a floating point 3.0 label
  /frameworks/compile/mclinker/unittests/
LinearAllocatorTest.h 25 Data() : one(1), two(2), three(3), four(4) {}
33 three = pThree;
40 three = -3;
46 unsigned char three; member in struct:mcldtest::LinearAllocatorTest::Data
RTLinearAllocatorTest.h 38 Data() : one(1), two(2), three(3), four(4) {}
46 three = pThree;
53 three = -3;
59 unsigned char three; member in struct:mcldtest::RTLinearAllocatorTest::Data
  /prebuilts/go/darwin-x86/test/
func5.go 49 func three(x int) { func
64 three(call(add, 1, 2))
65 three(call1(add, 1, 2))
67 three(call(f, 1, 2))
68 three(call1(f, 1, 2))
69 three(call(fn(), 1, 2))
70 three(call1(fn(), 1, 2))
71 three(call(func(a, b int) int { return a + b }, 1, 2))
72 three(call1(func(a, b int) int { return a + b }, 1, 2))
77 three(<-c
    [all...]
  /prebuilts/go/linux-x86/test/
func5.go 49 func three(x int) { func
64 three(call(add, 1, 2))
65 three(call1(add, 1, 2))
67 three(call(f, 1, 2))
68 three(call1(f, 1, 2))
69 three(call(fn(), 1, 2))
70 three(call1(fn(), 1, 2))
71 three(call(func(a, b int) int { return a + b }, 1, 2))
72 three(call1(func(a, b int) int { return a + b }, 1, 2))
77 three(<-c
    [all...]
  /tools/tradefederation/core/prod-tests/src/com/android/ota/tests/
OtaStabilityTestTest.java 77 IRemoteTest three = iterator.next(); local
78 assertEquals(4, ((OtaStabilityTest)three).getIterations());

Completed in 566 milliseconds

1 2 3 4 5