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

1234567891011>>

/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
H A Dlexical-036.js36 var result = "Failed"; variable
43 result = expect;
52 result );
H A Dlexical-037.js36 var result = "Failed"; variable
43 result = expect;
52 result );
H A Dlexical-038.js36 var result = "Failed"; variable
43 result = expect;
52 result );
H A Dlexical-039.js23 var result = "Failed"; variable
30 result = expect;
39 result );
H A Dlexical-040.js23 var result = "Failed"; variable
30 result = expect;
39 result );
H A Dlexical-041.js25 var result = "Failed"; variable
32 result = expect;
41 result );
H A Dlexical-042.js26 var result = "Failed"; variable
33 result = expect;
42 result );
H A Dlexical-047.js20 var result = "Failed"; variable
30 + "result += \": got to inner loop\";\n"
34 result = expect;
43 result );
H A Dlexical-048.js20 var result = "Failed"; variable
28 result = expect;
37 result );
H A Dlexical-049.js19 var result = "Failed"; variable
29 + "result += \": got inside for loop\";\n"
33 result = expect;
42 result );
H A Dlexical-050.js21 var result = "Failed"; variable
28 result = expect;
37 result );
H A Dlexical-051.js21 var result = "Failed"; variable
26 eval("for (a; b\n) result += \": got to inner loop\";")
28 result = expect;
37 result );
H A Dlexical-052.js21 var result = "Failed"; variable
28 result = expect;
37 result );
H A Dlexical-053.js21 var result = "Failed"; variable
29 eval('if (a > b)\nelse result += ": got to else statement"');
31 result = expect;
40 result );
H A Dlexical-054.js21 var result = "Failed"; variable
32 result = expect;
41 result );
H A Dstatement-001.js26 var result = "Failed"; variable
33 result = expect;
42 result );
H A Dstatement-002.js48 var result = "Failed"; variable
53 eval(" for ( var i, p in this) { result += this[p]; }");
55 result = expect;
64 result );
H A Dstatement-004.js19 var result = "Failed"; variable
27 + "result += this[p];\n"
31 result = expect;
40 result );
H A Dstatement-007.js20 var result = "Failed"; variable
27 result = expect;
36 result );
H A Dstatement-008.js20 var result = "Failed"; variable
27 result = expect;
36 result );
H A Dstatement-009.js19 var result = "Failed"; variable
26 result = expect;
35 result );
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
H A Dif-001.js25 var result = "passed"; variable
28 result = "failed: a = b should return 0";
35 result );
/external/webkit/Source/JavaScriptCore/wtf/
H A DOSAllocatorWin.cpp43 void* result = VirtualAlloc(0, bytes, MEM_RESERVE, protection(writable, executable)); local
44 if (!result)
46 return result;
51 void* result = VirtualAlloc(0, bytes, MEM_RESERVE | MEM_COMMIT, protection(writable, executable)); local
52 if (!result)
54 return result;
59 void* result = VirtualAlloc(address, bytes, MEM_COMMIT, protection(writable, executable)); local
60 if (!result)
66 bool result = VirtualFree(address, bytes, MEM_DECOMMIT); local
67 if (!result)
75 bool result = VirtualFree(address, 0, MEM_RELEASE); local
[all...]
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
H A DFence.cpp52 HRESULT result = mQuery->Issue(D3DISSUE_END); local
53 ASSERT(SUCCEEDED(result));
66 HRESULT result = mQuery->GetData(NULL, 0, D3DGETDATA_FLUSH); local
68 if (result == D3DERR_DEVICELOST)
73 ASSERT(result == S_OK || result == S_FALSE);
74 mStatus = result == S_OK;
111 HRESULT result = mQuery->GetData(NULL, 0, 0); local
113 if (result == D3DERR_DEVICELOST)
119 ASSERT(result
[all...]
/external/webkit/Source/WebCore/platform/text/
H A DLineEnding.h43 // Normalize all line-endings in the given string to CR and append the result to the given buffer.
44 void normalizeLineEndingsToCR(const CString& from, Vector<char>& result);
46 // Normalize all line-endings in the given string to LF and append the result to the given buffer.
47 void normalizeLineEndingsToLF(const CString& from, Vector<char>& result);
49 // Normalize all line-endings in the given string to the native line-endings and append the result to the given buffer.
51 void normalizeLineEndingsToNative(const CString& from, Vector<char>& result);

Completed in 150 milliseconds

1234567891011>>