HomeSort by relevance Sort by last modified time
    Searched defs:result (Results 226 - 250 of 11920) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /hardware/bsp/intel/peripheral/libupm/examples/javascript/
ds1307.js 36 var result = myRTCClockObj.loadTime(); variable
37 if (!result)
  /hardware/intel/common/utils/ituxd/jni/
onload.cpp 31 jint result = -1; local
35 return result;
  /hardware/qcom/bt/msm8909/libbt-vendor/src/
bt_vendor_persist.cpp 58 boolean result = FALSE; local
64 ALOGI("CMD result: %d", cmd_result);
69 result = FALSE;
85 result = TRUE;
89 return result;
  /hardware/qcom/bt/msm8992/libbt-vendor/src/
bt_vendor_persist.cpp 58 boolean result = FALSE; local
64 ALOGI("CMD result: %d", cmd_result);
69 result = FALSE;
85 result = TRUE;
89 return result;
  /hardware/qcom/bt/msm8996/libbt-vendor/src/
bt_vendor_persist.cpp 58 boolean result = FALSE; local
64 ALOGI("CMD result: %d", cmd_result);
69 result = FALSE;
85 result = TRUE;
89 return result;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.regex/re.regex.construct/
bad_escape.pass.cpp 22 bool result = false; local
26 result = (ex.code() == std::regex_constants::error_escape);
28 return result;
  /ndk/sources/third_party/googletest/googletest/samples/
sample1.cc 38 int result = 1; local
40 result *= i;
43 return result;
  /ndk/tests/build/cortex-a53-835769/jni/
cortex-a53-835769-1.c 4 double result; local
6 : "=w" (result)
cortex-a53-835769-2.c 4 int result; local
6 : "=r" (result)
  /ndk/tests/device/issue22165-typeinfo/jni/
main.cpp 9 int result = 0; local
18 result = 1;
23 return result;
  /ndk/tests/device/test-gnustl-full/unit/
divides_test.cpp 31 int result = accumulate(input, input + 3, 48, divides<int>()); local
32 CPPUNIT_ASSERT(result==2);
  /ndk/tests/device/test-stlport/unit/
divides_test.cpp 31 int result = accumulate(input, input + 3, 48, divides<int>()); local
32 CPPUNIT_ASSERT(result==2);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
badsyntax_future6.py 10 result = f(2)(4) variable
test_future1.py 11 result = f(2)(4) variable
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
badsyntax_future6.py 10 result = f(2)(4) variable
test_future1.py 11 result = f(2)(4) variable
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
badsyntax_future6.py 10 result = f(2)(4) variable
test_future1.py 11 result = f(2)(4) variable
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
badsyntax_future6.py 10 result = f(2)(4) variable
test_future1.py 11 result = f(2)(4) variable
  /sdk/find_lock/
find_lock_exe.cpp 70 CString result; local
71 if (findLock(dirPath, &result)) {
74 printf("%s", result.cstr());
  /system/update_engine/
weave_service_factory.cc 27 std::unique_ptr<WeaveServiceInterface> result; local
29 return result;
33 result.reset(weave_service);
35 result.reset();
37 return result;
  /toolchain/binutils/binutils-2.25/libiberty/
getcwd.c 11 directory's path doesn't fit in @var{len} characters, the result is
44 char *result; local
46 result = getwd (ourbuf);
47 if (result) {
snprintf.c 55 int result; local
58 result = vsnprintf (s, n, format, ap);
60 return result;
strdup.c 23 char *result = (char*) malloc (len); local
24 if (result == (char*) 0)
26 return (char*) memcpy (result, s, len);

Completed in 266 milliseconds

1 2 3 4 5 6 7 8 91011>>