Searched refs:result (Results 101 - 125 of 7420) sorted by relevance

1234567891011>>

/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/Plugins/unix/
H A DPluginInfoStoreUnix.cpp48 Vector<String> result; local
50 result.append(homeDirectoryPath() + "/.mozilla/plugins");
51 result.append(homeDirectoryPath() + "/.netscape/plugins");
52 result.append("/usr/lib/browser/plugins");
53 result.append("/usr/local/lib/mozilla/plugins");
54 result.append("/usr/lib/firefox/plugins");
55 result.append("/usr/lib64/browser-plugins");
56 result.append("/usr/lib/browser-plugins");
57 result.append("/usr/lib/mozilla/plugins");
58 result
87 Vector<String> result; local
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tclxml/tcldom/tests/
H A Dtestutils.tcl22 # result result --
23 # Just returns $result
25 proc result {result} { return $result } procedure
54 set rc [catch [list uplevel 1 $script] result]
56 puts stderr "==> [string replace $result 70 end ...]"
58 set rmsg [string replace $result 40 end ...]
63 if {![string match $pattern $result]} {
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/stress/
H A Dbug-131764.js1 var result = 0; variable
9 var result = 0; variable
18 result ^= test2(1,2,3,4,5,6,7).length;
21 if (result != 0)
22 throw "Error: bad result: " + result;
H A Ddead-value-with-mov-hint-in-another-block.js5 var result = o.f.f;
7 return result;
14 var result = foo(1, 2, true, {f:{f:42}});
15 if (result != 42)
16 throw "Error: bad result: " + result;
H A Dnew-undecided-array-with-size.js8 var result = foo(size);
9 if (result.length != size)
10 throw "Error: bad result: " + result;
12 for (var s in result)
15 throw "Error: array is in bad state: " + result;
H A Darray-pop-contiguous.js8 var result = foo(["foo", "bar", "baz"]);
9 if (result.toString() != "baz,bar,foo,")
10 throw "Error: bad result: " + result;
H A Darray-pop-double-hole.js11 var result = foo();
12 if (result.toString() != "1.5,2,,4.5")
13 throw "Error: bad result: " + result;
H A Darray-pop-double.js8 var result = foo([1.5, 2.5, 3.5]);
9 if (result.toString() != "3.5,2.5,1.5,")
10 throw "Error: bad result: " + result;
H A Darray-pop-int32.js8 var result = foo([1, 2, 3]);
9 if (result.toString() != "3,2,1,")
10 throw "Error: bad result: " + result;
H A Ddead-access-to-captured-variable-preceded-by-a-live-store.js14 var result = foo();
15 if (result != 44)
16 throw "Error: bad result: " + result;
H A Deval-that-is-not-eval.js10 var result = foo(42);
11 if (result != 43)
12 throw "Error: bad result: " + result;
H A Dfiat-double-to-int52.js11 var result = foo();
12 if (result != 43)
13 throw "Error: bad result: " + result;
H A Dfiat-int32-to-int52.js10 var result = foo(o);
11 if (result != 43)
12 throw "Error: bad result: " + result;
H A Dfiat-value-to-int52-double-path.js16 var result = foo();
17 if (result != 43)
18 throw "Error: bad result: " + result;
H A Dftl-get-my-argument-by-val.js9 var result = foo(i % 4, "one", 2, "three");
10 if (result != thingies[i % 4])
11 throw "Error: bad result for i = " + i + ": " + result;
H A Dget-by-val-double-predicted-int.js12 var result = foo(array, 0);
13 if (result != 4000000000.5)
14 throw "Error: bad result: " + result;
H A Dslightly-more-difficult-to-fold-reflective-arguments-access.js13 var result = bar(42);
14 if (result != 42)
15 throw "Error: bad result: " + result;
H A Dtrivially-foldable-reflective-arguments-access.js12 var result = bar(42);
13 if (result != 42)
14 throw "Error: bad result: " + result;
/macosx-10.10.1/postfix-255/postfix/src/util/
H A Dline_number.c9 /* char *format_line_number(result, first, last)
17 /* .IP result
19 /* result is stored in a static buffer that is overwritten
20 /* with subsequent calls. The function result value is a
21 /* pointer into the result buffer.
50 char *format_line_number(VSTRING *result, ssize_t first, ssize_t last) argument
57 if (result == 0) {
60 result = buf;
66 vstring_sprintf(result, first == last ? "%ld" : "%ld-%ld",
69 return (vstring_str(result));
[all...]
/macosx-10.10.1/bind9-45.101/bind9/bin/named/
H A Dlog.c24 #include <isc/result.h>
72 isc_result_t result; local
81 result = isc_log_create(ns_g_mctx, &ns_g_lctx, &lcfg);
82 if (result != ISC_R_SUCCESS)
83 return (result);
96 result = ns_log_setsafechannels(lcfg);
98 result = ns_log_setdefaultchannels(lcfg);
99 if (result != ISC_R_SUCCESS)
102 result = ns_log_setdefaultcategory(lcfg);
103 if (result !
118 isc_result_t result; local
163 isc_result_t result; local
202 isc_result_t result; local
224 isc_result_t result; local
[all...]
/macosx-10.10.1/Security-57031.1.35/SecurityTool/
H A Dkeychain_delete.c40 OSStatus result = SecKeychainDelete((SecKeychainRef)keychainOrArray); local
41 if (result)
44 sec_perror("SecKeychainDelete", result);
47 return result;
53 OSStatus result = noErr; local
62 result = SecTrustSettingsRemoveTrustSettings((SecCertificateRef)itemToDelete,
64 if (result && result != errSecItemNotFound) {
65 sec_perror("SecTrustSettingsRemoveTrustSettings (user)", result);
68 result
99 int ch, result = 0; local
138 int ch, result = 0; local
[all...]
/macosx-10.10.1/IOFireWireFamily-456/IOFireWireLib.CFPlugInProj/
H A DIOFireWireLibPriv.cpp77 void* result = nil; local
80 result = (void*) IOFireWireLib::IOCFPlugIn::Alloc() ;
82 return (void*) result ;
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma_2/LexicalConventions/
H A Dkeywords-001.js16 var result = "failed"; variable
23 result = x.name;
29 result );
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma_2/Statements/
H A Dtry-010.js34 function TryObject( description, tryOne, tryTwo, result ) {
38 this.result = result;
47 result = 0;
50 result += 1;
53 result += 2;
55 result +=4;
57 result += 8;
60 result += 16;
62 result
[all...]
H A Dwhile-001.js26 result = "pass";
29 result = "fail";
37 result );

Completed in 224 milliseconds

1234567891011>>