Searched refs:result (Results 51 - 75 of 12441) sorted by relevance

1234567891011>>

/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
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);
H A Ddll.c59 BOOL result = PTW32_TRUE; local
65 result = pthread_win32_process_attach_np ();
72 result = pthread_win32_thread_attach_np ();
79 result = pthread_win32_thread_detach_np ();
84 result = pthread_win32_process_detach_np ();
88 return (result);
H A Dpthread_barrierattr_setpshared.c84 int result; local
95 result = ENOSYS;
100 result = 0;
107 result = 0;
114 result = EINVAL;
117 return (result);
H A Dpthread_condattr_setpshared.c85 int result; local
95 result = ENOSYS;
98 result = 0;
105 result = 0;
112 result = EINVAL;
115 return result;
H A Dpthread_mutexattr_setpshared.c84 int result; local
95 result = ENOSYS;
100 result = 0;
107 result = 0;
114 result = EINVAL;
117 return (result);
H A Dpthread_rwlockattr_setpshared.c85 int result; local
96 result = ENOSYS;
101 result = 0;
108 result = 0;
115 result = EINVAL;
118 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);
H A Dregress-636.js29 var i, result = "";
32 for(i = 12; --i; result = ( value % 2 ) + result, value >>= 1);
33 return result;
H A Dregress-540.js32 var result = f("function y() { return 1; }", function () { return 0; })
33 assertEquals(1, result);
35 result =
40 assertEquals(3, result);
42 result =
47 assertEquals(5, result);
/external/chromium_org/v8/test/webkit/
H A Darray-sort-small-sparse-array-with-large-length.js31 var result = ""; variable
34 if (result)
35 result += ",";
36 result += array[s];
38 shouldBe("result", "\"42\"");
H A Ddfg-arguments-alias-escape.js29 var result = 0;
32 result += a[i];
33 return [result, a];
37 var result = foo(x);
38 return result[0] * result[1][0];
H A Ddfg-peephole-compare-final-object-to-final-object-or-other-when-both-proven-final-object.js29 var result = [];
30 result.push(a.f);
31 result.push(b.f);
33 result.push(true);
35 result.push(false);
36 return result;
/external/lldb/test/functionalities/command_script/
H A Dbug11569.py1 def bug11569(debugger, args, result, dict):
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebContentDecryptionModuleSession.cpp31 static void ReportError(WebContentDecryptionModuleResult result) argument
33 result.completeWithError(WebContentDecryptionModuleExceptionUnknownError, 0, "Not implemented.");
46 void WebContentDecryptionModuleSession::initializeNewSession(const WebString& initDataType, const unsigned char* initData, size_t initDataLength, const WebString& sessionType, WebContentDecryptionModuleResult result) argument
48 ReportError(result);
51 void WebContentDecryptionModuleSession::update(const unsigned char* response, size_t responseLength, WebContentDecryptionModuleResult result) argument
53 ReportError(result);
56 void WebContentDecryptionModuleSession::release(WebContentDecryptionModuleResult result) argument
58 ReportError(result);
/external/clang/test/PCH/
H A Denum.c13 int result = aRoundShape; local
14 return result;
/external/elfutils/0.153/libdw/
H A Ddwarf_attr.c60 dwarf_attr (die, search_name, result)
63 Dwarf_Attribute *result;
69 result->valp = __libdw_find_attr (die, search_name, &result->code,
70 &result->form);
72 result->cu = die->cu;
74 return result->code == search_name ? result : NULL;
/external/chromium_org/third_party/angle/samples/angle/sample_util/
H A Dgeometry_utils.cpp12 void CreateSphereGeometry(size_t sliceCount, float radius, SphereGeometry *result) argument
19 result->positions.resize(vertexCount);
20 result->normals.resize(vertexCount);
30 result->positions[vertexIdx] = direction * radius;
31 result->normals[vertexIdx] = direction;
35 result->indices.clear();
36 result->indices.reserve(indexCount);
41 result->indices.push_back( i * (sliceCount + 1) + j );
42 result->indices.push_back((i + 1) * (sliceCount + 1) + j );
43 result
52 GenerateCubeGeometry(float radius, CubeGeometry *result) argument
[all...]
/external/aac/libFDK/include/arm/
H A Dclz_arm.h101 INT result; local
102 asm("clz %0, %1 ": "=r"(result) : "r"(value) );
103 return result;
108 INT result; local
115 result = fixnormz_D(value);
116 return result - 1;
/external/chromium_org/base/debug/
H A Dtask_annotator_unittest.cc14 void TestTask(int* result) { argument
15 *result = 123;
21 int result = 0; local
22 PendingTask pending_task(FROM_HERE, Bind(&TestTask, &result));
26 EXPECT_EQ(0, result);
29 EXPECT_EQ(123, result);
/external/jsilver/src/com/google/clearsilver/jsilver/examples/basic/
H A Diterate.cs4 <?cs each:result = results ?>
5 <?cs var:result.title ?> ---> <?cs var:result.url ?>
/external/objenesis/main/src/org/objenesis/instantiator/
H A DSerializationInstantiatorHelper.java38 Class result = type;
39 while(Serializable.class.isAssignableFrom(result)) {
40 result = result.getSuperclass();
41 if(result == null) {
45 return result;

Completed in 5843 milliseconds

1234567891011>>