Searched refs:result (Results 26 - 50 of 12441) 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/lldb/test/functionalities/command_script/import/foo/bar/
H A Dfoobar.py1 def foo_function(debugger, args, result, dict):
2 print >>result, ("foobar says " + args)
/external/lldb/test/functionalities/command_script/import/foo/
H A Dfoo.py1 def foo_function(debugger, args, result, dict):
2 print >>result, ("foo says " + args)
/external/lldb/test/functionalities/command_script/import/thepackage/
H A DTPunitA.py1 def command(debugger, command, result, internal_dict):
2 result.PutCString(u"hello world A")
H A DTPunitB.py1 def command(debugger, command, result, internal_dict):
2 result.PutCString(u"hello world B")
/external/valgrind/main/memcheck/tests/x86/
H A Dpushfpopf.stdout.exp1 fooble: result is 22
/external/jarjar/src/main/com/tonicsystems/jarjar/
H A DRule.java21 private String result; field in class:Rule
23 public void setResult(String result) { argument
24 this.result = result;
28 return result;
/external/valgrind/main/memcheck/tests/s390x/
H A Dltgjhe.c6 int result; local
22 :"=d" (result)
26 if (result)
37 :"=d" (result)
41 if (result)
/external/chromium_org/build/android/pylib/instrumentation/
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/lldb/test/functionalities/command_script/
H A Dwelcome.py3 def welcome_impl(debugger, args, result, dict):
8 print >>result, ('Hello ' + args + ', welcome to LLDB');
11 def target_name_impl(debugger, args, result, dict):
14 print >>result, ('Current target ' + file.GetFilename())
16 result.SetError('a test for error in command')
18 def print_wait_impl(debugger, args, result, dict):
19 result.SetImmediateOutputFile(sys.stdout)
20 print >>result, ('Trying to do long task..')
23 print >>result, ('Still doing long task..')
25 print >>result, ('Don
[all...]
/external/chromium_org/content/browser/renderer_host/input/
H A Dweb_input_event_builders_android.cc31 WebKeyboardEvent result; local
33 result.type = type;
34 result.modifiers = modifiers;
35 result.timeStampSeconds = time_sec;
38 UpdateWindowsKeyCodeAndKeyIdentifier(&result, windows_key_code);
39 result.modifiers |= GetLocationModifiersFromWindowsKeyCode(windows_key_code);
40 result.nativeKeyCode = keycode;
41 result.unmodifiedText[0] = unicode_character;
42 if (result.windowsKeyCode == ui::VKEY_RETURN) {
46 result
62 WebMouseEvent result; local
85 WebMouseWheelEvent result; local
125 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/third_party/WebKit/Source/platform/transforms/
H A DTransformationMatrixTest.cpp17 TransformationMatrix result; local
19 result = to;
20 result.blend(from, 0.25);
21 EXPECT_TRUE(result == from);
23 result = to;
24 result.blend(from, 0.75);
25 EXPECT_TRUE(result == to);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebTextCheckingResult.cpp40 TextCheckingResult result; local
41 result.decoration = static_cast<TextDecorationType>(decoration);
42 result.location = location;
43 result.length = length;
44 result.replacement = replacement;
45 result.hash = hash;
46 if (result.decoration == TextDecorationTypeGrammar) {
51 result.details.append(detail);
54 return result;
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
H A Dftxf86.c30 const char* result = NULL; local
34 FT_FACE_FIND_SERVICE( face, result, XF86_NAME );
36 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/chromium_org/third_party/WebKit/Source/build/scripts/
H A Dhasher.py49 result = uint32_t(0x9E3779B9L)
57 result += ord(string[i])
58 temp = (ord(string[i + 1]) << 11) ^ result
59 result = (result << 16) ^ temp
61 result += (result >> 11)
64 result += ord(string[i])
65 result ^= (result << 1
[all...]
/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/components/captive_portal/
H A Dcaptive_portal_types.cc25 std::string CaptivePortalResultToString(CaptivePortalResult result) { argument
26 DCHECK_GE(result, 0);
27 DCHECK_LT(static_cast<unsigned int>(result),
29 return kCaptivePortalResultNames[result];
/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);

Completed in 463 milliseconds

1234567891011>>