Searched refs:result (Results 151 - 175 of 12441) sorted by relevance

1234567891011>>

/external/lldb/test/functionalities/archives/
H A Da.c12 int result = arg + __a_global; local
13 return result; // Set file and line breakpoint inside a().
H A Db.c12 int result = arg + __b_global; local
13 return result;
/external/lldb/test/functionalities/command_script/import/foo/
H A Dfoo2.py1 def foo2_function(debugger, args, result, dict):
2 print >>result, ("foo2 says " + args)
/external/valgrind/main/none/tests/arm/
H A Dldrt_arm.stdout.exp0 result is 0x87868584 (should be 0x87868584)
2 result is 0x87868584 (should be 0x87868584)
3 result is 137 (should be 137)
4 result is 150 (should be 150)
5 result is 63176 (should be 63176)
6 result is 63432 (should be 63432)
7 result is 4294966280 (should be 4294966280)
8 result is 4294966027 (should be 4294966027)
9 result is 4294967280 (should be 4294967280)
10 result i
[all...]
/external/valgrind/main/none/tests/
H A Dbug129866.c7 char * result; local
9 result = malloc (size);
11 *(result + i) = 'a';
13 return result;
17 char * result; local
19 result = realloc (ptr, size);
21 *(result + i) = 'a';
23 return result;
/external/chromium_org/v8/test/cctest/
H A Dtest-javascript-arm64.cc63 static void ExpectBoolean(bool expected, Local<Value> result) { argument
64 CHECK(result->IsBoolean());
65 CHECK_EQ(expected, result->BooleanValue());
69 static void ExpectInt32(int32_t expected, Local<Value> result) { argument
70 CHECK(result->IsInt32());
71 CHECK_EQ(expected, result->Int32Value());
75 static void ExpectNumber(double expected, Local<Value> result) { argument
76 CHECK(result->IsNumber());
77 CHECK_EQ(expected, result->NumberValue());
81 static void ExpectUndefined(Local<Value> result) { argument
91 Local<Value> result = CompileRun("0x271828;"); local
99 Local<Value> result = CompileRun("var my_global_var = 0x123; my_global_var;"); local
107 Local<Value> result = CompileRun( local
117 Local<Value> result = CompileRun( local
139 Local<Value> result = CompileRun(buffer); local
156 Local<Value> result = CompileRun(buffer); local
195 Local<Value> result; local
217 Local<Value> result; local
234 Local<Value> result; local
247 Local<Value> result; local
[all...]
/external/bison/lib/
H A Ddup2.c46 int result; local
71 result = dup2 (fd, desired_fd);
76 result = -1;
80 if (result == 0)
81 result = desired_fd;
83 return result;
93 int result; local
103 result = dup2 (fd, desired_fd);
106 if (result == -1 && errno == EMFILE)
109 if (fd != desired_fd && result !
140 int result = fcntl (fd, F_GETFL) < 0 ? -1 : fd; local
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowSyncResult.java15 private SyncResult result; field in class:ShadowSyncResult
21 f.set(result, new SyncStats());
31 return result.syncAlreadyInProgress || result.stats.numIoExceptions > 0;
36 return result.stats.numParseExceptions > 0
37 || result.stats.numConflictDetectedExceptions > 0
38 || result.stats.numAuthExceptions > 0
39 || result.tooManyDeletions
40 || result.tooManyRetries
41 || result
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLDimensionTest.cpp53 Vector<HTMLDimension> result = parseListOfDimensions(String("")); local
54 ASSERT_EQ(Vector<HTMLDimension>(), result); local
59 Vector<HTMLDimension> result = parseListOfDimensions(String(" \t")); local
60 ASSERT_EQ(1U, result.size());
61 ASSERT_EQ(HTMLDimension(0, HTMLDimension::Relative), result[0]);
66 Vector<HTMLDimension> result = parseListOfDimensions(String(" \t%")); local
67 ASSERT_EQ(1U, result.size());
68 ASSERT_EQ(HTMLDimension(0, HTMLDimension::Percentage), result[0]);
73 Vector<HTMLDimension> result = parseListOfDimensions(String("\t *")); local
74 ASSERT_EQ(1U, result
80 Vector<HTMLDimension> result = parseListOfDimensions(String("10")); local
88 Vector<HTMLDimension> result = parseListOfDimensions(String("50 %")); local
96 Vector<HTMLDimension> result = parseListOfDimensions(String("25*")); local
104 Vector<HTMLDimension> result = parseListOfDimensions(String("10.054")); local
112 Vector<HTMLDimension> result = parseListOfDimensions(String("\\t \\t 10")); local
120 Vector<HTMLDimension> result = parseListOfDimensions(String(" \\r25*")); local
128 Vector<HTMLDimension> result = parseListOfDimensions(String("\\n 25%")); local
136 Vector<HTMLDimension> result = parseListOfDimensions(String("10.054%")); local
144 Vector<HTMLDimension> result = parseListOfDimensions(String("10.054*")); local
152 Vector<HTMLDimension> result = parseListOfDimensions(String("1\\n0 .025%")); local
160 Vector<HTMLDimension> result = parseListOfDimensions(String("1\\n0 .025%")); local
168 Vector<HTMLDimension> result = parseListOfDimensions(String("1\\n0 .025*")); local
176 Vector<HTMLDimension> result = parseListOfDimensions(String("10. 0 25%")); local
184 Vector<HTMLDimension> result = parseListOfDimensions(String("10.05\\r25%")); local
192 Vector<HTMLDimension> result = parseListOfDimensions(String("10,")); local
200 Vector<HTMLDimension> result = parseListOfDimensions(String("10*,25 %")); local
209 Vector<HTMLDimension> result = parseListOfDimensions(String("10 * ,\\t25 , 10.05\\n5%")); local
219 Vector<HTMLDimension> result = parseListOfDimensions(String("2*,,8.%")); local
[all...]
/external/chromium_org/chrome/utility/media_galleries/
H A Ditunes_pref_parser_win.cc17 base::FilePath::StringType result; local
20 return result;
24 return result;
26 return result;
29 return result;
32 return result;
35 return result;
38 return result;
41 return result;
45 return result;
[all...]
/external/chromium_org/content/renderer/
H A Dmenu_item_builder.cc12 MenuItem result; local
14 result.label = item.label;
15 result.tool_tip = item.toolTip;
16 result.type = static_cast<MenuItem::Type>(item.type);
17 result.action = item.action;
18 result.rtl = (item.textDirection == blink::WebTextDirectionRightToLeft);
19 result.has_directional_override = item.hasTextDirectionOverride;
20 result.enabled = item.enabled;
21 result.checked = item.checked;
23 result
[all...]
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dpthread_mutex_destroy.c44 int result = 0; local
58 result = pthread_mutex_trylock (&mx);
64 if (0 == result || ENOTRECOVERABLE == result)
77 result = (0 == result)?pthread_mutex_unlock(&mx):0;
79 if (0 == result)
88 result = EINVAL;
109 result = EBUSY;
142 result
[all...]
H A Dpthread_rwlock_init.c46 int result; local
56 result = EINVAL; /* Not supported */
64 result = ENOMEM;
72 result = pthread_mutex_init (&rwl->mtxExclusiveAccess, NULL);
73 if (result != 0)
78 result = pthread_mutex_init (&rwl->mtxSharedAccessCompleted, NULL);
79 if (result != 0)
84 result = pthread_cond_init (&rwl->cndSharedAccessCompleted, NULL);
85 if (result != 0)
92 result
[all...]
H A Dpthread_rwlock_rdlock.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;
83 if ((result =
87 return result;
93 if ((result
[all...]
H A Dpthread_rwlock_tryrdlock.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_trylock (&(rwl->mtxExclusiveAccess))) != 0)
78 return result;
83 if ((result =
87 return result;
93 if ((result
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/tests/
H A Dunit_test.c12 memset(&tests[i].result, 0, sizeof(tests[i].result));
13 tests[i].test_func(&tests[i].result);
15 tests[i].result.pass, tests[i].result.test_count);
19 void test_begin(struct test_result * result) argument
21 result->test_count++;
24 void test_check(struct test_result * result, int cond) argument
26 printf("Subtest %u -> ", result->test_count);
28 result
[all...]
/external/mesa3d/src/gallium/drivers/r300/compiler/tests/
H A Dunit_test.c12 memset(&tests[i].result, 0, sizeof(tests[i].result));
13 tests[i].test_func(&tests[i].result);
15 tests[i].result.pass, tests[i].result.test_count);
19 void test_begin(struct test_result * result) argument
21 result->test_count++;
24 void test_check(struct test_result * result, int cond) argument
26 printf("Subtest %u -> ", result->test_count);
28 result
[all...]
/external/chromium_org/components/enhanced_bookmarks/
H A Denhanced_bookmark_utils_unittest.cc46 std::vector<const BookmarkNode*> result = local
48 ASSERT_EQ(result.size(), 3u);
50 CHECK(std::find(result.begin(), result.end(), node1) != result.end());
51 CHECK(std::find(result.begin(), result.end(), node2) != result.end());
52 CHECK(std::find(result.begin(), result
[all...]
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
H A DHttpAuthDatabaseTest.java42 String[] result = instance.getHttpAuthUsernamePassword(host, realm);
43 assertNull(result);
46 result = instance.getHttpAuthUsernamePassword(host, realm);
47 assertNotNull(result);
48 assertEquals(userName, result[0]);
49 assertEquals(password, result[1]);
53 result = instance.getHttpAuthUsernamePassword(host, realm);
54 assertNotNull(result);
55 assertEquals(userName, result[0]);
56 assertEquals(newPassword, result[
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DIsoTypeReader.java43 int result = 0;
44 result += readUInt16(bb) << 8;
45 result += byte2int(bb.get());
46 return result;
51 int result = 0;
52 result += byte2int(bb.get()) << 8;
53 result += byte2int(bb.get());
54 return result;
58 int result = 0;
59 result
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dblacklist_state_fetcher_unittest.cc34 BlacklistState result; local
35 fetcher.Request("a", base::Bind(&Assign, &result));
38 EXPECT_EQ(BLACKLISTED_SECURITY_VULNERABILITY, result);
56 BlacklistState result[9]; local
57 fetcher.Request("a", base::Bind(&Assign, &result[0]));
58 fetcher.Request("a", base::Bind(&Assign, &result[1]));
59 fetcher.Request("b", base::Bind(&Assign, &result[2]));
60 fetcher.Request("b", base::Bind(&Assign, &result[3]));
61 fetcher.Request("c", base::Bind(&Assign, &result[4]));
62 fetcher.Request("d", base::Bind(&Assign, &result[
[all...]
/external/lldb/test/unittest2/test/
H A Dtest_result.py19 result = unittest2.TestResult()
21 self.assertTrue(result.wasSuccessful())
22 self.assertEqual(len(result.errors), 0)
23 self.assertEqual(len(result.failures), 0)
24 self.assertEqual(result.testsRun, 0)
25 self.assertEqual(result.shouldStop, False)
26 self.assertIsNone(result._stdout_buffer)
27 self.assertIsNone(result._stderr_buffer)
33 result = unittest2.TestResult()
35 result
[all...]
/external/chromium_org/chrome/browser/chromeos/file_system_provider/
H A Drequest_value.cc19 scoped_ptr<RequestValue> result(new RequestValue);
20 result->unmount_success_params_ = params.Pass();
21 return result.Pass();
27 scoped_ptr<RequestValue> result(new RequestValue);
28 result->get_metadata_success_params_ = params.Pass();
29 return result.Pass();
35 scoped_ptr<RequestValue> result(new RequestValue);
36 result->read_directory_success_params_ = params.Pass();
37 return result.Pass();
43 scoped_ptr<RequestValue> result(ne
[all...]
/external/chromium_org/tools/memory_inspector/memory_inspector/classification/
H A Dresults_unittest.py32 result = results.AggreatedResults(rule, keys=['X', 'Y'])
33 self.assertEqual(result.total.name, 'Total')
34 self.assertEqual(len(result.total.children), 3)
35 self.assertEqual(result.total.children[0].name, 'a*')
36 self.assertEqual(result.total.children[1].name, 'b*')
37 self.assertEqual(result.total.children[2].name, 'Total-other')
38 self.assertEqual(result.total.children[0].children[0].name, 'az*')
39 self.assertEqual(result.total.children[0].children[1].name, 'a*-other')
41 result.AddToMatchingNodes('aa1', [1, 2]) # -> a*
42 result
[all...]
/external/oprofile/libregex/
H A Ddemangle_java_symbol.cpp39 bool array_type(string & result,
41 bool object_type(string & result,
45 bool base_type(string & result, argument
54 case 'B': result += "byte"; break;
55 case 'C': result += "char"; break;
56 case 'D': result += "double"; break;
57 case 'F': result += "float"; break;
58 case 'I': result += "int"; break;
59 case 'J': result += "long"; break;
60 case 'S': result
71 field_type(string & result, string::const_iterator & begin, string::const_iterator end) argument
87 array_type(string & result, string::const_iterator & begin, string::const_iterator end) argument
103 list_of_field_type(string & result, string::const_iterator & begin, string::const_iterator end) argument
121 return_descriptor(string & result, string::const_iterator & begin, string::const_iterator end) argument
141 method_descriptor(string & result, string::const_iterator & begin, string::const_iterator end) argument
170 methode_name(string & result, string::const_iterator & begin, string::const_iterator end) argument
187 object_type(string & result, string::const_iterator & begin, string::const_iterator end) argument
209 string result; local
[all...]

Completed in 1166 milliseconds

1234567891011>>