Searched refs:result (Results 26 - 50 of 11104) sorted by relevance

1234567891011>>

/external/bison/lib/
H A Ditold.c24 _Qp_itoq (long double *result, int a) argument
27 *result = (double) a;
H A Ddirname.c34 char *result = mdir_name (file); local
35 if (!result)
37 return result;
H A Dxmemdup0.c40 char *result = xcharalloc (s + 1); local
41 memcpy (result, p, s);
42 result[s] = 0;
43 return result;
/external/valgrind/main/memcheck/tests/x86/
H A Dpushfpopf.stdout.exp1 fooble: result is 22
/external/chromium_org/third_party/WebKit/Source/core/scripts/
H A DStaticString.pm34 my @result = ();
36 push(@result, "\n");
41 push(@result, " StringImpl* ${name}Impl = StringImpl::createStatic(\"$value\", $length, $hash);\n");
44 push(@result, "\n");
46 return join "", @result;
/external/chromium_org/build/android/pylib/
H A Djson_perf_parser.py50 A dictionary of result data with the following tags:
70 result = {}
72 result['min'] = -1
73 result['max'] = -1
74 result['average'] = 0
75 result['count'] = 0
76 result['type'] = 'Unknown'
77 result['category'] = 'Java'
78 result['name'] = name
79 result['data_point
[all...]
/external/clang/test/CodeGen/
H A Dbuiltins-overflow.c18 unsigned result; local
19 if (__builtin_uadd_overflow(x, y, &result))
21 return result;
27 unsigned long result; local
28 if (__builtin_uaddl_overflow(x, y, &result))
30 return result;
36 unsigned long long result; local
37 if (__builtin_uaddll_overflow(x, y, &result))
39 return result;
45 unsigned result; local
54 unsigned long result; local
63 unsigned long long result; local
72 unsigned result; local
81 unsigned long result; local
90 unsigned long long result; local
99 int result; local
108 long result; local
117 long long result; local
126 int result; local
135 long result; local
144 long long result; local
153 int result; local
162 long result; local
171 long long result; local
[all...]
/external/chromium_org/content/common/
H A Daccessibility_node_data.cc107 std::string result; local
109 result += "id=" + IntToString(id);
112 case ROLE_ALERT: result += " ALERT"; break;
113 case ROLE_ALERT_DIALOG: result += " ALERT_DIALOG"; break;
114 case ROLE_ANNOTATION: result += " ANNOTATION"; break;
115 case ROLE_APPLICATION: result += " APPLICATION"; break;
116 case ROLE_ARTICLE: result += " ARTICLE"; break;
117 case ROLE_BROWSER: result += " BROWSER"; break;
118 case ROLE_BUSY_INDICATOR: result += " BUSY_INDICATOR"; break;
119 case ROLE_BUTTON: result
502 std::string result; local
[all...]
/external/chromium_org/content/browser/renderer_host/input/
H A Dweb_input_event_builders_android.cc28 WebKeyboardEvent result; local
30 result.type = type;
31 result.modifiers = modifiers;
32 result.timeStampSeconds = time_sec;
35 UpdateWindowsKeyCodeAndKeyIdentifier(&result, windows_key_code);
36 result.modifiers |= GetLocationModifiersFromWindowsKeyCode(windows_key_code);
37 result.nativeKeyCode = keycode;
38 result.unmodifiedText[0] = unicode_character;
39 if (result.windowsKeyCode == ui::VKEY_RETURN) {
43 result
59 WebMouseEvent result; local
82 WebMouseWheelEvent result; local
122 WebGestureEvent result; local
[all...]
/external/aac/libFDK/include/mips/
H A Dclz_mips.h98 INT result; local
99 __asm__ ("clz %0,%1" : "=d" (result) : "d" (value));
101 return result;
109 INT result; local
110 __asm__ ("clz %[result], %[value]" : [result] "=r" (result) : [value] "r" (value)) ;
112 return result;
/external/chromium_org/content/test/data/indexeddb/
H A Dshared.js7 function result(message) { function
13 result('fail - unexpected error callback');
18 result('fail - unexpected abort callback');
23 result('fail - unexpected complete callback');
28 result('fail - unexpected success callback');
33 result('fail - unexpected upgradeneeded callback');
38 result('fail - unexpected blocked callback');
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebTextCheckingResult.cpp42 TextCheckingResult result; local
43 result.type = static_cast<TextCheckingType>(type);
44 result.location = location;
45 result.length = length;
46 result.replacement = replacement;
47 result.hash = hash;
48 if (result.type == TextCheckingTypeGrammar) {
53 result.details.append(detail);
56 return result;
/external/chromium_org/v8/test/mjsunit/
H A Dregexp-standalones.js36 var result = string.match(pattern); variable
37 assertEquals(2, result.length, "1");
38 assertEquals('7', result[0], "2");
39 assertEquals('3', result[1], "3");
42 result = string.match(pattern);
43 assertEquals(2, result.length, "4");
44 assertEquals('9', result[0], "5");
45 assertEquals('5', result[1], "6");
49 result = string.match(pattern);
50 assertEquals(1, result
[all...]
/external/v8/test/mjsunit/
H A Dregexp-standalones.js36 var result = string.match(pattern); variable
37 assertEquals(2, result.length, "1");
38 assertEquals('7', result[0], "2");
39 assertEquals('3', result[1], "3");
42 result = string.match(pattern);
43 assertEquals(2, result.length, "4");
44 assertEquals('9', result[0], "5");
45 assertEquals('5', result[1], "6");
49 result = string.match(pattern);
50 assertEquals(1, result
[all...]
/external/chromium/net/data/proxy_resolver_v8_unittest/
H A Dreturn_object.js2 return {result: "PROXY foo"};
/external/chromium-libpac/test/js-unittest/
H A Dreturn_object.js2 return {result: "PROXY foo"};
/external/chromium_org/chrome/common/
H A Dchrome_paths_android.cc14 base::FilePath* result) {
15 if (!PathService::Get(base::DIR_CACHE, result))
16 *result = profile_dir;
19 bool GetDefaultUserDataDirectory(base::FilePath* result) { argument
20 return PathService::Get(base::DIR_ANDROID_APP_DATA, result);
23 bool GetUserDocumentsDirectory(base::FilePath* result) { argument
24 if (!GetDefaultUserDataDirectory(result))
26 *result = result->Append("Documents");
30 bool GetUserDownloadsDirectory(base::FilePath* result) { argument
13 GetUserCacheDirectory(const base::FilePath& profile_dir, base::FilePath* result) argument
37 GetUserMusicDirectory(base::FilePath* result) argument
42 GetUserPicturesDirectory(base::FilePath* result) argument
47 GetUserVideosDirectory(base::FilePath* result) argument
[all...]
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Derrno.c75 int *result; local
83 result = &reallyBad;
87 result = (int *)(&self.p->exitStatus);
90 return (result);
H A Dpthread_barrierattr_getpshared.c82 int result; local
87 result = 0;
91 result = EINVAL;
94 return (result);
H A Dpthread_condattr_destroy.c70 int result = 0; local
74 result = EINVAL;
81 result = 0;
84 return result;
H A Dpthread_condattr_getpshared.c83 int result; local
88 result = 0;
92 result = EINVAL;
95 return result;
H A Dpthread_mutexattr_getpshared.c81 int result; local
86 result = 0;
90 result = EINVAL;
93 return (result);
H A Dpthread_rwlockattr_getpshared.c83 int result; local
88 result = 0;
92 result = EINVAL;
95 return (result);
/external/chromium_org/net/data/proxy_resolver_v8_unittest/
H A Dreturn_object.js2 return {result: "PROXY foo"};
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1030466.js36 var result = (function outer() {
45 assertEquals(10, result);

Completed in 633 milliseconds

1234567891011>>