Searched refs:result (Results 76 - 100 of 7891) sorted by relevance

1234567891011>>

/macosx-10.9.5/CPANInternal-140/SOAP-Lite_new/examples/XMLRPC/
H A Dsimple1.pl11 -> result;
/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGMinifiedNode.cpp38 MinifiedNode result; local
39 result.m_id = MinifiedID(node);
40 result.m_op = node->op();
42 result.m_childOrInfo = MinifiedID(node->child1().node()).m_id;
44 result.m_childOrInfo = node->constantNumber();
46 result.m_childOrInfo = bitwise_cast<uintptr_t>(node->weakConstant());
49 result.m_childOrInfo = 0;
51 return result;
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DFontValue.cpp33 StringBuilder result; local
36 result.append(style->cssText());
38 if (!result.isEmpty())
39 result.append(' ');
40 result.append(variant->cssText());
43 if (!result.isEmpty())
44 result.append(' ');
45 result.append(weight->cssText());
48 if (!result.isEmpty())
49 result
[all...]
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/
H A Dmutexblock.c29 isc_result_t result; local
33 result = isc_mutex_init(&block[i]);
34 if (result != ISC_R_SUCCESS) {
39 return (result);
48 isc_result_t result; local
52 result = isc_mutex_destroy(&block[i]);
53 if (result != ISC_R_SUCCESS)
54 return (result);
/macosx-10.9.5/ntp-88/lib/isc/
H A Dmutexblock.c29 isc_result_t result; local
33 result = isc_mutex_init(&block[i]);
34 if (result != ISC_R_SUCCESS) {
40 return (result);
49 isc_result_t result; local
53 result = isc_mutex_destroy(&block[i]);
54 if (result != ISC_R_SUCCESS)
55 return (result);
/macosx-10.9.5/WebKit2-7537.78.2/Platform/CoreIPC/
H A DArgumentDecoder.cpp132 bool ArgumentDecoder::decode(bool& result) argument
134 if (!alignBufferPosition(sizeof(result), sizeof(result)))
137 result = *reinterpret_cast<bool*>(m_bufferPos);
138 m_bufferPos += sizeof(result);
142 bool ArgumentDecoder::decode(uint8_t& result) argument
144 if (!alignBufferPosition(sizeof(result), sizeof(result)))
147 result = *reinterpret_cast<uint8_t*>(m_bufferPos);
148 m_bufferPos += sizeof(result);
152 decode(uint16_t& result) argument
162 decode(uint32_t& result) argument
172 decode(uint64_t& result) argument
182 decode(int32_t& result) argument
192 decode(int64_t& result) argument
202 decode(float& result) argument
212 decode(double& result) argument
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/rdoc/rd/
H A Dblock_parser.rb679 def _reduce_1(val, _values, result)
680 result = RDoc::Markup::Document.new(*val[0])
681 result
684 def _reduce_2(val, _values, result)
686 result
689 def _reduce_3(val, _values, result)
690 result = val[0].concat val[1]
691 result
694 def _reduce_4(val, _values, result)
695 result
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/Shared/
H A DEditorState.cpp60 bool EditorState::decode(CoreIPC::ArgumentDecoder& decoder, EditorState& result) argument
62 if (!decoder.decode(result.shouldIgnoreCompositionSelectionChange))
65 if (!decoder.decode(result.selectionIsNone))
68 if (!decoder.decode(result.selectionIsRange))
71 if (!decoder.decode(result.isContentEditable))
74 if (!decoder.decode(result.isContentRichlyEditable))
77 if (!decoder.decode(result.isInPasswordField))
80 if (!decoder.decode(result.isInPlugin))
83 if (!decoder.decode(result.hasComposition))
87 if (!decoder.decode(result
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr-util/crypto/
H A Duuid.c39 int result; local
42 result = s[0] - '0';
43 if (result > 48)
44 result = (result - 39) << 4;
45 else if (result > 16)
46 result = (result - 7) << 4;
48 result = result <<
63 int result; local
[all...]
/macosx-10.9.5/apr-30/apr-util/apr-util/crypto/
H A Duuid.c39 int result; local
42 result = s[0] - '0';
43 if (result > 48)
44 result = (result - 39) << 4;
45 else if (result > 16)
46 result = (result - 7) << 4;
48 result = result <<
63 int result; local
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/Scripts/webkit2/
H A Dmessages.py121 result = []
123 result.append('struct %s : %s' % (message.name, base_class(message)))
124 result.append(' {\n')
125 result.append(' static CoreIPC::StringReference receiverName() { return messageReceiverName(); }\n')
126 result.append(' static CoreIPC::StringReference name() { return CoreIPC::StringReference("%s"); }\n' % message.name)
127 result.append(' static const bool isSync = %s;\n' % ('false', 'true')[message.reply_parameters != None])
128 result.append('\n')
132 result.append(' struct DelayedReply : public ThreadSafeRefCounted<DelayedReply> {\n')
133 result.append(' DelayedReply(PassRefPtr<CoreIPC::Connection>, PassOwnPtr<CoreIPC::MessageEncoder>);\n')
134 result
[all...]
/macosx-10.9.5/ntp-88/libopts/compat/
H A Dpathfind.c82 * the result. Also, do not use unimplemented file modes. :-)
168 char *result; local
172 result = strdup( string );
175 result = malloc( 2 + strlen( dot_path ) + strlen( string ) );
176 strcpy( result, dot_path );
177 result_len = strlen( result );
178 if (result[result_len - 1] != '/') {
179 result[result_len++] = '/';
180 result[result_len] = '\0';
183 result
209 char stub_char, *result; local
[all...]
/macosx-10.9.5/ntp-88/sntp/libopts/compat/
H A Dpathfind.c82 * the result. Also, do not use unimplemented file modes. :-)
168 char *result; local
172 result = strdup( string );
175 result = malloc( 2 + strlen( dot_path ) + strlen( string ) );
176 strcpy( result, dot_path );
177 result_len = strlen( result );
178 if (result[result_len - 1] != '/') {
179 result[result_len++] = '/';
180 result[result_len] = '\0';
183 result
209 char stub_char, *result; local
[all...]
/macosx-10.9.5/tcl-102/tcl/tcl/compat/
H A Dstrtoul.c69 register unsigned long int result = 0;
138 if (result > maxres) { overflow = 1; }
139 result = (result << 3);
140 if (digit > (ULONG_MAX - result)) { overflow = 1; }
141 result += digit;
152 if (result > maxres) { overflow = 1; }
153 result *= 10;
154 if (digit > (ULONG_MAX - result)) { overflow = 1; }
155 result
68 register unsigned long int result = 0; local
[all...]
/macosx-10.9.5/tcl-102/tcl84/tcl/compat/
H A Dstrtoul.c73 register unsigned long int result = 0;
143 if (result > maxres) { overflow = 1; }
144 result = (result << 3);
145 if (digit > (ULONG_MAX - result)) { overflow = 1; }
146 result += digit;
156 if (result > maxres) { overflow = 1; }
157 result *= 10;
158 if (digit > (ULONG_MAX - result)) { overflow = 1; }
159 result
72 register unsigned long int result = 0; local
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma_2/Exceptions/
H A Dexception-002.js26 result = "failed: no exception thrown";
30 result = new Math();
32 result = "passed: threw exception",
39 result );
H A Dexception-004.js26 result = "failed: no exception thrown";
30 result = foo["bar"];
32 result = "passed: threw exception",
39 result );
H A Dexception-005.js26 result = "failed: no exception thrown";
30 result = foo["bar"];
32 result = "passed: threw exception",
39 result );
H A Dexception-006.js28 * should result in a runtime error in ToPrimitive.
37 result = "failed: no exception thrown";
41 result = new MyObject() + new MyObject();
43 result = "passed: threw exception",
50 result );
H A Dexception-007.js29 * should result in a runtime error in ToPrimitive.
38 result = "failed: no exception thrown";
42 result = new MyObject() + new MyObject();
44 result = "passed: threw exception",
51 result );
H A Dexception-008.js26 result = "failed: no exception thrown";
30 result = eval("continue;");
32 result = "passed: threw exception",
39 result );
H A Dexpression-005.js21 var result = "Failed"; variable
26 result = new Math();
28 result = expect;
34 "result= new Math() (threw " + exception + ")",
36 result );
H A Dexpression-006.js23 var result = "Failed"; variable
29 result = new OBJECT();
31 result = expect;
37 "OBJECT = new Object; result = new OBJECT()" +
40 result );
H A Dexpression-007.js21 var result = "Failed"; variable
27 result = new UNDEFINED();
29 result = expect;
35 "UNDEFINED = void 0; result = new UNDEFINED()" +
38 result );
H A Dexpression-008.js20 var result = "Failed"; variable
25 result = new NULL();
27 result = expect;
33 "NULL = null; result = new NULL()" +
36 result );

Completed in 153 milliseconds

1234567891011>>