HomeSort by relevance Sort by last modified time
    Searched refs:result (Results 476 - 500 of 27666) sorted by null

<<11121314151617181920>>

  /prebuilts/misc/windows/sdl2/test/
testautomation_keyboard.c 67 SDL_Keycode result; local
70 result = SDL_GetKeyFromName("A");
72 SDLTest_AssertCheck(result == SDLK_a, "Verify result from call, expected: %i, got: %i", SDLK_a, result);
75 result = SDL_GetKeyFromName("F1");
77 SDLTest_AssertCheck(result == SDLK_F1, "Verify result from call, expected: %i, got: %i", SDLK_F1, result);
80 result = SDL_GetKeyFromName("End")
134 SDL_Keycode result; local
173 char *result; local
181 SDLTest_AssertCheck(SDL_strcmp(result, expected) == 0, "Verify result from call is valid, expected: %s, got: %s", expected, result); local
188 SDLTest_AssertCheck(SDL_strcmp(result, expected) == 0, "Verify result from call is valid, expected: %s, got: %s", expected, result); local
195 SDLTest_AssertCheck(SDL_strcmp(result, expected) == 0, "Verify result from call is valid, expected: %s, got: %s", expected, result); local
202 SDLTest_AssertCheck(SDL_strcmp(result, expected) == 0, "Verify result from call is valid, expected: %s, got: %s", expected, result); local
209 SDLTest_AssertCheck(SDL_strcmp(result, expected) == 0, "Verify result from call is valid, expected: %s, got: %s", expected, result); local
216 SDLTest_AssertCheck(SDL_strcmp(result, expected) == 0, "Verify result from call is valid, expected: %s, got: %s", expected, result); local
230 char *result; local
242 SDLTest_AssertCheck(SDL_strcmp(result, expected) == 0, "Verify result from call is valid, expected: '%s', got: '%s'", expected, result); local
257 char *result; local
265 SDLTest_AssertCheck(SDL_strcmp(result, expected) == 0, "Verify result from call is valid, expected: '%s', got: '%s'", expected, result); local
276 SDLTest_AssertCheck(SDL_strcmp(result, expected) == 0, "Verify result from call is valid, expected: '%s', got: '%s'", expected, result); local
294 SDL_Keymod result; local
    [all...]
  /art/test/025-access-controller/src/
Main.java 25 Integer result = AccessController.doPrivileged(priv); local
26 System.out.println("AccessControllerTest: got " + result);
  /art/test/663-checker-select-generator/src/
Main.java 24 public static void assertTrue(boolean result) {
25 if (!result) {
30 public static void assertFalse(boolean result) {
31 if (result) {
36 public static void assertInstanceOfSub1(Object result) {
37 if (!(result instanceof Sub1)) {
42 public static void assertInstanceOfSub2(Object result) {
43 if (!(result instanceof Sub2)) {
  /cts/tests/tests/location/src/android/location/cts/asn1/base/
BitStreamReader.java 71 byte result = (byte) ((buffer[position] & mask) << bitsRead);
74 result = (byte) (result | (buffer[position] & 0xFF) >>> (8 - bitsRead));
76 return result;
84 int result = 0; local
86 result <<= 1;
87 result |= (readBit() ? 1 : 0);
89 return result;
  /cts/tests/tests/media/libndkaudio/
AudioPlayer.cpp 54 SLresult result; local
57 result = slCreateEngine(&engineObject, 0, NULL, 0, NULL, NULL);
58 assert(SL_RESULT_SUCCESS == result);
62 result = (*engineObject)->Realize(engineObject, SL_BOOLEAN_FALSE);
63 // __android_log_print(ANDROID_LOG_INFO, TAG, "Realize() engine result:%s", getSLErrStr(result));
64 assert(SL_RESULT_SUCCESS == result);
67 result = (*engineObject)->GetInterface(engineObject, SL_IID_ENGINE, &engineItf);
68 // __android_log_print(ANDROID_LOG_INFO, TAG, "GetInterface() engine:%p result:%s", engineItf, getSLErrStr(result));
133 SLresult result; local
202 SLresult result; local
237 SLresult result; local
255 SLresult result = (*bqPlayerPlay_)->SetPlayState(bqPlayerPlay_, local
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/monitor_enter/d/
T_monitor_enter_2.java 22 public boolean result = true; field in class:T_monitor_enter_2
31 result = false;
  /external/chromium-libpac/test/js-unittest/
return_object.js 2 return {result: "PROXY foo"};
  /external/clang/test/CodeGen/
aarch64-fix-cortex-a53-835769.c 20 int64_t result = a+b*(*c); local
21 return result;
arm64-be-hfa-vararg.c 18 double result = va_arg(vl, struct { double a; }).a; local
20 return result;
  /external/clang/test/Parser/
cxx-ambig-paren-expr.cpp 48 struct result { struct
49 template <class T> result(T);
54 if (result((cls::type) i).check())
57 if (result((ns::type) i).check())
60 if (result((::type) i).check())
63 if (result((cls::rec) i).check())
66 if (result((ns::rec) i).check())
69 if (result((::rec) i).check())
  /external/clang/test/SemaCXX/
generic-selection.cpp 31 enum { result = Arg | Or<Args...>::result }; enumerator in enum:Or::__anon16810
35 enum { result = Arg }; enumerator in enum:Or::__anon16811
40 result = Or<_Generic(Args(), int: 1, long: 2, short: 4, float: 8)...>::result enumerator in enum:TypeMask::__anon16812
44 static_assert(TypeMask<int, long, short>::result == 7, "fail");
45 static_assert(TypeMask<float, short>::result == 12, "fail");
46 static_assert(TypeMask<int, float, float>::result == 9, "fail");
  /external/compiler-rt/lib/builtins/
floatsisf.c 41 rep_t result; local
46 result = (rep_t)a << shift ^ implicitBit;
49 result = (rep_t)a >> shift ^ implicitBit;
51 if (round > signBit) result++;
52 if (round == signBit) result += result & 1;
56 result += (rep_t)(exponent + exponentBias) << significandBits;
58 return fromRep(result | sign);
floatunsisf.c 33 rep_t result; local
38 result = (rep_t)a << shift ^ implicitBit;
41 result = (rep_t)a >> shift ^ implicitBit;
43 if (round > signBit) result++;
44 if (round == signBit) result += result & 1;
48 result += (rep_t)(exponent + exponentBias) << significandBits;
49 return fromRep(result);
  /external/compiler-rt/lib/builtins/ppc/
DD.h 23 doublebits result = {.d = x}; local
24 result.x &= UINT64_C(0x7fffffffffffffff);
25 return result.d;
29 doublebits result = {.d = x}; local
30 result.x &= UINT64_C(0xfffffffff8000000);
31 return result.d;
36 int result = (int)(xsignbit.x >> 63) ^ (int)(ysignbit.x >> 63); local
37 return result;
  /external/dng_sdk/source/
dng_host.cpp 259 dng_exif *result = new dng_exif (); local
261 if (!result)
268 return result;
279 dng_xmp *result = new dng_xmp (Allocator ()); local
281 if (!result)
288 return result;
299 dng_shared *result = new dng_shared (); local
301 if (!result)
308 return result;
317 dng_ifd *result = new dng_ifd () local
346 dng_image *result = new dng_simple_image (bounds, local
368 dng_opcode *result = NULL; local
    [all...]
  /external/elfutils/libdw/
dwarf_getsrcdirs.c 37 dwarf_getsrcdirs (Dwarf_Files *files, const char *const **result, size_t *ndirs)
42 *result = (void *) &files->info[files->nfiles];
  /external/google-tv-pairing-protocol/cpp/tests/polo/encoding/
hexadecimalencodertest.cc 30 std::string result = encoder.EncodeToString(secret); local
32 ASSERT_EQ(std::string("AABBCCDD"), result);
40 std::vector<unsigned char> result = encoder.DecodeToBytes(secret); local
42 ASSERT_EQ(4, result.size());
43 ASSERT_EQ(0xAA, result[0]);
44 ASSERT_EQ(0xBB, result[1]);
45 ASSERT_EQ(0xCC, result[2]);
46 ASSERT_EQ(0xDD, result[3]);
  /external/junit-params/src/test/java/junitparams/internal/
UtilsTest.java 15 Object[] result = Utils.safelyCastParamsToArray(paramSet); local
18 assertThat(result).containsExactly("this", "is", "a", "test");
27 Object[] result = Utils.safelyCastParamsToArray(paramSet); local
30 assertThat(result).containsExactly(1, 2, 3, 4);
39 Object[] result = Utils.safelyCastParamsToArray(paramSet); local
42 assertThat(result).containsExactly(1, "2", 30D);
51 Object[] result = Utils.safelyCastParamsToArray(paramSet); local
54 assertThat(result).containsExactly("test");
  /external/libffi/testsuite/lib/
wrapper.exp 38 set result [build_wrapper $filename]
40 if { $result != "" } {
41 set gluefile [lindex $result 0]
42 set wrap_flags [lindex $result 1]
  /external/libgsm/src/
gsm_option.c 16 int result = -1; local
21 result = r->ltp_cut;
28 result = r->verbose;
36 result = r->fast;
44 result = r->frame_chain;
52 result = r->frame_index;
60 result = r->wav_fmt;
68 return result;
  /external/libmojo/base/android/
jni_string_unittest.cc 18 std::string result = local
20 EXPECT_EQ(kSimpleString, result);
26 string16 result = local
28 EXPECT_EQ(kSimpleString, result);
34 std::string result = local
36 EXPECT_EQ(kEmptyString, result);
42 string16 result = local
44 EXPECT_EQ(kEmptyString, result);
  /external/python/cpython2/Modules/_ctypes/libffi/testsuite/lib/
wrapper.exp 38 set result [build_wrapper $filename]
40 if { $result != "" } {
41 set gluefile [lindex $result 0]
42 set wrap_flags [lindex $result 1]
  /external/python/cpython3/Modules/_ctypes/libffi/testsuite/lib/
wrapper.exp 38 set result [build_wrapper $filename]
40 if { $result != "" } {
41 set gluefile [lindex $result 0]
42 set wrap_flags [lindex $result 1]
  /external/tensorflow/tensorflow/core/platform/
fingerprint.h 69 uint64 result = fp1 ^ kMul; local
70 result ^= internal::ShiftMix(fp2 * kMul) * kMul;
71 result *= kMul;
72 result = internal::ShiftMix(result) * kMul;
73 result = internal::ShiftMix(result);
74 return result;
  /external/tensorflow/tensorflow/examples/adding_an_op/
zero_out_3_test.py 30 result = zero_out_op_3.zero_out([5, 4, 3, 2, 1])
31 self.assertAllEqual(result.eval(), [5, 0, 0, 0, 0])
35 result = zero_out_op_3.zero_out([5, 4, 3, 2, 1], preserve_index=3)
36 self.assertAllEqual(result.eval(), [0, 0, 0, 2, 0])
40 result = zero_out_op_3.zero_out([5, 4, 3, 2, 1], preserve_index=-1)
42 result.eval()
46 result = zero_out_op_3.zero_out([5, 4, 3, 2, 1], preserve_index=17)
48 result.eval()

Completed in 1566 milliseconds

<<11121314151617181920>>