Searched refs:result (Results 126 - 150 of 12441) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/lithium/
H A DMulI.js31 var result = a * b;
32 result += a * 35;
33 result += a * -1;
34 result += a * 1;
35 result += a * 0;
36 return result * a;
40 var result = a * b;
41 result += a * 35;
42 result += a * -1;
43 result
[all...]
H A DDivI.js31 var result = a / 35;
32 result += 50 / b;
33 result += a / b;
34 result += a / -1;
35 result += a / 1;
36 result += a / 4;
37 result += a / -4;
38 return result / b;
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1178598.js50 var result;
54 result = eval("e");
56 return result;
67 var result;
74 result = eval("e");
84 return result;
H A Dregress-crbug-374838.js9 result = 0;
11 result += a.length;
14 return result;
/external/chromium_org/v8/test/webkit/fast/js/
H A DPromise-exception.js29 var result; variable
33 }).then(function(result) {
40 result = localResult;
41 shouldBeEqualToString('result', 'foobar');
H A DPromise-static-reject.js28 var result = undefined; variable
30 Promise.reject('hello').then(function(result) {
34 result = localResult;
35 shouldBeEqualToString('result', 'hello');
38 shouldBe('result', 'undefined');
H A Dexception-properties.js28 var result = [];
30 result.push(i);
31 return result;
H A DPromise-then-without-callbacks.js28 var result; variable
32 result = localResult;
33 shouldBeEqualToString('result', 'hello');
/external/chromium_org/v8/test/webkit/
H A Dget-by-pname-that-looks-like-a-patchable-get-by-val.js30 var result = 0;
35 result += o[s];
39 return result;
/external/elfutils/0.153/src/
H A Dsectionhash.c41 int result = strcmp (one->name, two->name); local
43 if (result == 0)
45 result = one->type - two->type;
47 if (result == 0)
51 result = diff < 0 ? -1 : diff == 0 ? 0 : 1;
53 if (result == 0)
55 result = one->entsize - two->entsize;
57 if (result == 0)
59 result = (one->grp_signature == NULL
65 if (result
[all...]
/external/freetype/src/base/
H A Dftxf86.c30 const char* result = NULL; local
34 FT_FACE_FIND_SERVICE( face, result, XF86_NAME );
36 return result;
/external/replicaisland/src/com/replica/replicaisland/
H A DDebugLog.java33 int result = 0;
35 result = Log.v(tag, msg);
37 return result;
41 int result = 0;
43 result = Log.v(tag, msg, tr);
45 return result;
49 int result = 0;
51 result = Log.d(tag, msg);
53 return result;
57 int result
[all...]
/external/chromium_org/base/android/
H A Dpath_utils.h19 // application. The result is placed in the FilePath pointed to by 'result'.
22 BASE_EXPORT bool GetDataDirectory(FilePath* result);
26 BASE_EXPORT bool GetDatabaseDirectory(FilePath* result);
28 // Retrieves the absolute path to the cache directory. The result is placed in
29 // the FilePath pointed to by 'result'. This method is dedicated for
32 BASE_EXPORT bool GetCacheDirectory(FilePath* result);
34 // Retrieves the path to the public downloads directory. The result is placed
35 // in the FilePath pointed to by 'result'.
36 BASE_EXPORT bool GetDownloadsDirectory(FilePath* result);
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dweb_contents_browsertest.cc23 bool result = false; local
27 &result));
28 EXPECT_TRUE(result);
36 result = false;
40 &result));
41 EXPECT_TRUE(result);
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dsem_trywait.c79 int result = 0; local
84 result = EINVAL;
86 else if ((result = pthread_mutex_lock (&s->lock)) == 0)
103 result = EAGAIN;
109 if (result != 0)
111 errno = result;
/external/chromium_org/net/socket/
H A Dtcp_server_socket.cc24 int result = socket_.Open(address.GetFamily()); local
25 if (result != OK)
26 return result;
28 result = socket_.SetDefaultOptionsForServer();
29 if (result != OK) {
31 return result;
34 result = socket_.Bind(address);
35 if (result != OK) {
37 return result;
40 result
68 int result = socket_.Accept(&accepted_socket_, &accepted_address_, local
82 ConvertAcceptedSocket( int result, scoped_ptr<StreamSocket>* output_accepted_socket) argument
96 OnAcceptCompleted( scoped_ptr<StreamSocket>* output_accepted_socket, const CompletionCallback& forward_callback, int result) argument
[all...]
/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test/
H A Dpredictive_packet_manipulator.cc30 void PredictivePacketManipulator::AddRandomResult(double result) { argument
31 assert(result >= 0.0 && result <= 1.0);
32 random_results_.push(result);
42 double result = random_results_.front(); local
44 return result;
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dcomplex-for-in.js30 var result = [];
31 for (o.p in m) result.push(o.p);
32 return result;
41 var result = [];
43 for (a[i++] in m) result.push(a[i - 1]);
45 return result;
/external/clang/test/SemaCXX/
H A Dbuiltins-va_arg.cpp16 int result = 0; local
27 result++;
32 result++;
43 return result;
49 int result = test_vprintf(fmt, ap); local
51 return result;
H A Dgeneric-selection.cpp31 enum { result = Arg | Or<Args...>::result }; enumerator in enum:Or::__anon19321
35 enum { result = Arg }; enumerator in enum:Or::__anon19322
40 result = Or<_Generic(Args(), int: 1, long: 2, short: 4, float: 8)...>::result enumerator in enum:TypeMask::__anon19323
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/elfutils/0.153/libasm/
H A Dasm_begin.c45 prepare_text_output (AsmCtx_t *result) argument
47 if (result->fd == -1)
48 result->out.file = stdout;
51 result->out.file = fdopen (result->fd, "a");
52 if (result->out.file == NULL)
54 close (result->fd);
55 free (result);
56 result = NULL;
59 __fsetlocking (result
67 prepare_binary_output(AsmCtx_t *result, Ebl *ebl) argument
141 AsmCtx_t *result local
[all...]
H A Dasm_newscngrp.c47 AsmScnGrp_t *result; local
60 result = (AsmScnGrp_t *) malloc (sizeof (AsmScnGrp_t) + grpname_len);
61 if (result == NULL)
64 result->signature = signature;
65 result->members = NULL;
66 result->nmembers = 0;
67 result->flags = flags;
69 memcpy (result->name, grpname, grpname_len);
70 result->strent = ebl_strtabadd (ctx->section_strtab, result
[all...]
/external/chromium_org/base/test/
H A Dscoped_path_override.cc13 bool result = temp_dir_.CreateUniqueTempDir(); local
14 CHECK(result);
15 result = PathService::Override(key, temp_dir_.path());
16 CHECK(result);
21 bool result = PathService::Override(key, dir); local
22 CHECK(result);
26 bool result = PathService::RemoveOverride(key_); local
27 CHECK(result) << "The override seems to have been removed already!";
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
H A Dtest_results_unittest.py36 result = TestResult("foo")
37 self.assertEqual(result.test_name, 'foo')
38 self.assertEqual(result.failures, [])
39 self.assertEqual(result.test_run_time, 0)
42 result = TestResult(test_name='foo',
45 s = result.dumps()
49 self.assertEqual(new_result, result)
52 self.assertFalse(new_result != result)
/external/chromium_org/v8/src/base/platform/
H A Dmutex.cc15 int result; local
19 result = pthread_mutexattr_init(&attr);
20 DCHECK_EQ(0, result);
21 result = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK);
22 DCHECK_EQ(0, result);
23 result = pthread_mutex_init(mutex, &attr);
24 DCHECK_EQ(0, result);
25 result = pthread_mutexattr_destroy(&attr);
28 result = pthread_mutex_init(mutex, NULL);
30 DCHECK_EQ(0, result);
37 int result = pthread_mutexattr_init(&attr); local
50 int result = pthread_mutex_destroy(mutex); local
57 int result = pthread_mutex_lock(mutex); local
64 int result = pthread_mutex_unlock(mutex); local
71 int result = pthread_mutex_trylock(mutex); local
[all...]

Completed in 1547 milliseconds

1234567891011>>