Searched refs:result (Results 201 - 225 of 12441) sorted by relevance

1234567891011>>

/external/jsoncpp/src/lib_json/
H A Djson_tool.h21 std::string result; local
27 result.resize(1);
28 result[0] = static_cast<char>(cp);
32 result.resize(2);
33 result[1] = static_cast<char>(0x80 | (0x3f & cp));
34 result[0] = static_cast<char>(0xC0 | (0x1f & (cp >> 6)));
38 result.resize(3);
39 result[2] = static_cast<char>(0x80 | (0x3f & cp));
40 result[1] = 0x80 | static_cast<char>((0x3f & (cp >> 6)));
41 result[
[all...]
/external/junit/src/junit/framework/
H A DTest.java14 * Runs a test and collects its result in a TestResult instance.
16 public abstract void run(TestResult result); argument
/external/libunwind/src/mi/
H A D_ReadSLEB.c7 unw_word_t byte, result = 0; local
13 result |= (byte & 0x7f) << shift;
21 result |= ((unw_word_t) -1) << shift;
24 return result;
/external/lzma/CPP/7zip/Archive/Common/
H A DDummyOutStream.cpp10 HRESULT result; local
14 result = S_OK;
17 result = _stream->Write(data, size, &realProcessedSize);
21 return result;
/external/lzma/CPP/Common/
H A DStringToInt.cpp9 UInt64 result = 0; local
17 return result;
19 result *= 10;
20 result += (c - '0');
27 UInt64 result = 0; local
35 return result;
37 result <<= 3;
38 result += (c - '0');
45 UInt64 result = 0; local
57 return result;
68 UInt64 result = 0; local
[all...]
/external/mesa3d/src/gallium/drivers/r300/compiler/tests/
H A Dunit_test.h10 void (*test_func)(struct test_result * result);
11 struct test_result result; member in struct:test
16 void test_begin(struct test_result * result);
17 void test_check(struct test_result * result, int cond);
/external/qemu/distrib/ext4_utils/src/
H A Duuid.h22 void generate_uuid(const char *namespace, const char *name, u8 result[16]);
/external/smali/util/src/main/java/ds/tree/
H A DVisitorImpl.java12 protected R result; field in class:VisitorImpl
15 this.result = null;
19 this.result = initialValue;
23 return result;
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dpthread_rwlock_unlock.c45 int result, result1; local
70 if ((result =
73 return result;
78 result = pthread_cond_signal (&(rwl->cndSharedAccessCompleted));
87 result = pthread_mutex_unlock (&(rwl->mtxSharedAccessCompleted));
92 return ((result != 0) ? result : result1);
H A Dsem_destroy.c75 int result = 0; local
80 result = EINVAL;
86 if ((result = pthread_mutex_lock (&s->lock)) == 0)
91 result = EBUSY;
100 result = EINVAL;
134 if (result != 0)
136 errno = result;
H A Dsem_init.c85 int result = 0; local
94 result = EPERM;
98 result = EINVAL;
106 result = ENOMEM;
126 result = ENOSPC;
141 result = ENOSPC;
149 result = ENOSPC;
152 if (result != 0)
159 if (result != 0)
161 errno = result;
[all...]
H A Dpthread_kill.c78 int result = 0; local
90 result = ESRCH;
95 if (0 == result && 0 != sig)
100 result = EINVAL;
103 return result;
H A Dpthread_rwlock_timedwrlock.c46 int result; local
62 result = ptw32_rwlock_check_need_init (rwlock);
64 if (result != 0 && result != EBUSY)
66 return result;
77 if ((result =
80 return result;
83 if ((result =
88 return result;
114 result
[all...]
H A Dpthread_rwlock_wrlock.c45 int result; local
61 result = ptw32_rwlock_check_need_init (rwlock);
63 if (result != 0 && result != EBUSY)
65 return result;
76 if ((result = pthread_mutex_lock (&(rwl->mtxExclusiveAccess))) != 0)
78 return result;
81 if ((result = pthread_mutex_lock (&(rwl->mtxSharedAccessCompleted))) != 0)
84 return result;
110 result
[all...]
/external/chromium_org/ui/views/controls/table/
H A Dtable_utils_unittest.cc20 std::string result; local
23 result += ",";
24 result += base::IntToString(values[i]);
26 return result;
44 std::vector<int> result(CalculateTableColumnSizes(
46 EXPECT_EQ("20,30", IntVectorToString(result));
49 result = CalculateTableColumnSizes(
51 EXPECT_EQ("20,30", IntVectorToString(result));
54 result = CalculateTableColumnSizes(
56 EXPECT_EQ("20,30", IntVectorToString(result));
[all...]
/external/chromium_org/v8/src/
H A Dmisc-intrinsics.h30 unsigned long result; // NOLINT: MSVC intrinsic demands this type. local
31 _BitScanReverse(&result, value);
32 return result;
40 int result, shift; local
44 result = shift;
48 result |= shift;
52 result |= shift;
56 result |= shift;
58 result |= (value >> 1);
60 return result;
[all...]
/external/chromium_org/content/browser/renderer_host/input/
H A Dweb_input_event_builders_win.cc110 WebKeyboardEvent result; local
113 result.timeStampSeconds = time_ms / 1000.0;
115 result.windowsKeyCode = static_cast<int>(wparam);
117 result.nativeKeyCode = static_cast<int>(lparam);
121 result.isSystemKey = true;
123 result.type = WebInputEvent::RawKeyDown;
126 result.isSystemKey = true;
128 result.type = WebInputEvent::KeyUp;
131 result.type = WebInputEvent::Char;
134 result
191 WebMouseEvent result; local
322 WebMouseWheelEvent result; local
[all...]
/external/chromium_org/v8/test/webkit/resources/
H A DJSON-stringify.js43 var result = []; variable
44 result.push(function(jsonObject){
47 result.push(function(jsonObject){
50 result.push(function(jsonObject){
53 result.push(function(jsonObject){
56 result.push(function(jsonObject){
59 result.push(function(jsonObject){
62 result.push(function(jsonObject){
65 result.push(function(jsonObject){
68 result
[all...]
/external/chromium_org/content/renderer/
H A Dactive_notification_tracker_unittest.cc19 blink::WebNotification result; local
20 tracker.GetNotification(id1, &result);
21 EXPECT_TRUE(result == notification1);
23 tracker.GetNotification(id2, &result);
24 EXPECT_TRUE(result == notification2);
/external/chromium_org/v8/test/webkit/
H A Ddfg-arguments-osr-exit-multiple-blocks.js33 var result = 0;
36 result += a[i];
37 result += baz()[0];
40 if (result < 0)
43 return result;
/external/chromium_org/v8/test/webkit/fast/js/
H A Darray-bad-time.js31 var result = [];
32 result.length = 5;
33 for (var i = 0; i < result.length; ++i) {
38 result[i] = i;
40 return result;
/external/clang/test/Preprocessor/
H A Dmacro_arg_directive.c13 ({ int result = 0; __VA_ARGS__; if (!result) { fail(#__VA_ARGS__); }; result })
18 result = 24;
20 result = k - 4;
/external/eigen/doc/examples/
H A DTutorial_ArrayClass_interop.cpp11 MatrixXf result(2,2);
18 result = (m.array() + 4).matrix() * m;
19 cout << "-- Combination 1: --" << endl << result << endl << endl;
20 result = (m.array() * n.array()).matrix() * m;
21 cout << "-- Combination 2: --" << endl << result << endl << endl;
/external/chromium_org/chrome/browser/spellchecker/
H A Dmisspelling.cc18 // result.
20 base::ListValue* result = new base::ListValue; local
21 result->AppendStrings(list);
22 return result;
25 // Builds a value from a spellcheck action. The caller owns the result.
27 base::ListValue* result = new base::ListValue; local
28 result->Append(action.Serialize());
29 return result;
55 base::DictionaryValue* result = new base::DictionaryValue; local
56 result
[all...]
/external/chromium_org/chromeos/cryptohome/
H A Dcryptohome_util.cc15 bool result = false; local
17 &result);
18 return result;
22 bool result = false; local
24 &result);
25 return result;
29 bool result = false; local
31 CallTpmIsBeingOwnedAndBlock(&result);
32 return result;
67 bool result local
74 bool result = false; local
[all...]

Completed in 5112 milliseconds

1234567891011>>