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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
bitops-bitwise-and.js 30 var result = bitwiseAndValue; variable
  /external/chromium_org/v8/test/intl/break-iterator/
resolved-options-is-method.js 29 // the result is mutable.
33 var result = iterator.resolvedOptions(); variable
35 assertTrue(result instanceof Object);
37 // Result should be mutable.
38 result.locale = 'xx';
40 assertEquals(result.locale, 'xx');
  /external/chromium_org/v8/test/intl/collator/
resolved-options-is-method.js 29 // the result is mutable.
33 var result = collator.resolvedOptions(); variable
35 assertTrue(result instanceof Object);
37 // Result should be mutable.
38 result.locale = 'xx';
40 assertEquals(result.locale, 'xx');
  /external/chromium_org/v8/test/intl/date-format/
resolved-options-is-method.js 29 // the result is mutable.
33 var result = dtf.resolvedOptions(); variable
35 assertTrue(result instanceof Object);
37 // Result should be mutable.
38 result.locale = 'xx';
40 assertEquals(result.locale, 'xx');
  /external/chromium_org/v8/test/intl/number-format/
resolved-options-is-method.js 29 // the result is mutable.
33 var result = nf.resolvedOptions(); variable
35 assertTrue(result instanceof Object);
37 // Result should be mutable.
38 result.locale = 'xx';
40 assertEquals(result.locale, 'xx');
  /external/chromium_org/v8/test/mjsunit/regress/
regress-35.js 28 var result; variable
29 eval("result = 42; while(true)break");
30 assertEquals(42, result);
32 eval("result = 87; while(false)continue");
33 assertEquals(87, result);
regress-676025.js 28 var result; variable
29 try { eval('a=/(/'); } catch (e) { result = e; }
30 assertEquals('object', typeof result);
31 assertTrue(result instanceof SyntaxError);
  /external/chromium_org/v8/test/webkit/
rehash-assign.js 26 var result; variable
28 result = (function() {
136 shouldBe(result.toString(), "1");
  /external/v8/test/mjsunit/regress/
regress-35.js 28 var result; variable
29 eval("result = 42; while(true)break");
30 assertEquals(42, result);
32 eval("result = 87; while(false)continue");
33 assertEquals(87, result);
regress-676025.js 28 var result; variable
29 try { eval('a=/(/'); } catch (e) { result = e; }
30 assertEquals('object', typeof result);
31 assertTrue(result instanceof SyntaxError);
  /bionic/libc/bionic/
getpriority.c 34 int result = __getpriority(which, who); local
36 return ( result < 0 ) ? result : 20-result;
lseek64.c 30 extern int __llseek(int fd, unsigned long offset_hi, unsigned long offset_lo, loff_t* result, int whence);
34 loff_t result; local
36 if ( __llseek(fd, (unsigned long)(off >> 32),(unsigned long)(off), &result, whence ) < 0 )
39 return result;
pthread_getcpuclockid.cpp 40 clockid_t result = ~static_cast<clockid_t>(thread->tid) << 3; local
42 result |= 2;
44 result |= (1 << 2);
46 *clockid = result;
sigwait.cpp 43 int result = __rt_sigtimedwait(sigset.get(), NULL, NULL, sizeof(sigset)); local
44 if (result >= 0) {
45 *sig = result;
strerror.cpp 38 char* result = const_cast<char*>(__strerror_lookup(error_number)); local
39 if (result != NULL) {
40 return result;
strsignal.cpp 39 char* result = const_cast<char*>(__strsignal_lookup(signal_number)); local
40 if (result != NULL) {
41 return result;
  /external/bison/lib/
dirname.c 34 char *result = mdir_name (file); local
35 if (!result)
37 return result;
xmemdup0.c 40 char *result = xcharalloc (s + 1); local
41 memcpy (result, p, s);
42 result[s] = 0;
43 return result;
  /external/chromium/chrome/browser/sync/util/
data_encryption_unittest.cc 20 string result; local
21 ASSERT_TRUE(DecryptData(example, &result));
22 ASSERT_TRUE(result == "example");
27 string result; local
28 ASSERT_FALSE(DecryptData(example, &result));
  /external/chromium_org/chrome/browser/extensions/
web_contents_browsertest.cc 23 bool result = false; local
27 &result));
28 EXPECT_TRUE(result);
36 result = false;
40 &result));
41 EXPECT_TRUE(result);
  /external/chromium_org/chrome/browser/ui/views/
process_singleton_dialog_linux.cc 15 bool result = chrome::ShowMessageBoxWithButtonText( local
27 return result;
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
dll.c 59 BOOL result = PTW32_TRUE; local
65 result = pthread_win32_process_attach_np ();
72 result = pthread_win32_thread_attach_np ();
79 result = pthread_win32_thread_detach_np ();
84 result = pthread_win32_process_detach_np ();
88 return (result);
pthread_barrierattr_getpshared.c 82 int result; local
87 result = 0;
91 result = EINVAL;
94 return (result);
pthread_barrierattr_setpshared.c 84 int result; local
95 result = ENOSYS;
100 result = 0;
107 result = 0;
114 result = EINVAL;
117 return (result);
pthread_condattr_destroy.c 70 int result = 0; local
74 result = EINVAL;
81 result = 0;
84 return result;

Completed in 643 milliseconds

1 2 3 4 5 6 7 8 91011>>