Searched defs:arguments (Results 51 - 75 of 244) sorted by relevance

12345678910

/external/webkit/Source/WebKit2/Platform/CoreIPC/win/
H A DConnectionWin.cpp252 // The pending write has finished, so we are now done with its arguments. Clearing this member
283 bool Connection::sendOutgoingMessage(MessageID messageID, PassOwnPtr<ArgumentEncoder> arguments) argument
292 arguments->encodeUInt32(messageID.toInt());
296 if (::WriteFile(m_connectionPipe, arguments->buffer(), arguments->bufferSize(), 0, &m_writeState)) {
314 // The message will be sent soon. Hold onto the arguments so that they won't be destroyed
316 m_pendingWriteArguments = arguments;
/external/webkit/Source/WebKit2/UIProcess/
H A DChunkedUpdateDrawingAreaProxy.cpp73 OwnPtr<CoreIPC::ArgumentDecoder> arguments = page->process()->connection()->deprecatedWaitFor(DrawingAreaProxyLegacyMessage::DidSetSize, page->pageID(), 0.04);
74 if (arguments)
75 didReceiveMessage(page->process()->connection(), CoreIPC::MessageID(DrawingAreaProxyLegacyMessage::DidSetSize), arguments.get());
151 void ChunkedUpdateDrawingAreaProxy::didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments) argument
156 if (!arguments->decode(updateChunk))
164 if (!arguments->decode(CoreIPC::Out(updateChunk)))
H A DWebApplicationCacheManagerProxy.cpp60 void WebApplicationCacheManagerProxy::didReceiveMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments) argument
62 didReceiveWebApplicationCacheManagerProxyMessage(connection, messageID, arguments);
H A DWebFullScreenManagerProxy.cpp62 void WebFullScreenManagerProxy::didReceiveMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments) argument
64 didReceiveWebFullScreenManagerProxyMessage(connection, messageID, arguments);
67 CoreIPC::SyncReplyMode WebFullScreenManagerProxy::didReceiveSyncMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments, CoreIPC::ArgumentEncoder* reply) argument
69 return didReceiveSyncWebFullScreenManagerProxyMessage(connection, messageID, arguments, reply);
H A DWebKeyValueStorageManagerProxy.cpp60 void WebKeyValueStorageManagerProxy::didReceiveMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments) argument
62 didReceiveWebKeyValueStorageManagerProxyMessage(connection, messageID, arguments);
H A DWebMediaCacheManagerProxy.cpp59 void WebMediaCacheManagerProxy::didReceiveMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments) argument
61 didReceiveWebMediaCacheManagerProxyMessage(connection, messageID, arguments);
/external/webkit/Source/WebKit2/WebProcess/Authentication/
H A DAuthenticationManager.cpp60 void AuthenticationManager::didReceiveMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments) argument
62 didReceiveAuthenticationManagerMessage(connection, messageID, arguments);
/external/webkit/Source/WebKit2/WebProcess/FullScreen/
H A DWebFullScreenManager.cpp59 void WebFullScreenManager::didReceiveMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments) argument
61 didReceiveWebFullScreenManagerMessage(connection, messageID, arguments);
/external/webkit/Source/WebKit2/WebProcess/Plugins/
H A DPluginProcessConnection.cpp101 void PluginProcessConnection::didReceiveMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments) argument
103 if (arguments->destinationID()) {
104 if (PluginProxy* pluginProxy = m_plugins.get(arguments->destinationID()))
105 pluginProxy->didReceivePluginProxyMessage(connection, messageID, arguments);
112 CoreIPC::SyncReplyMode PluginProcessConnection::didReceiveSyncMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments, CoreIPC::ArgumentEncoder* reply) argument
115 return m_npRemoteObjectMap->didReceiveSyncMessage(connection, messageID, arguments, reply);
117 if (PluginProxy* pluginProxy = m_plugins.get(arguments->destinationID()))
118 return pluginProxy->didReceiveSyncPluginProxyMessage(connection, messageID, arguments, reply);
/external/webkit/Source/WebKit2/WebProcess/ResourceCache/
H A DWebResourceCacheManager.cpp58 void WebResourceCacheManager::didReceiveMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments) argument
60 didReceiveWebResourceCacheManagerMessage(connection, messageID, arguments);
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DChunkedUpdateDrawingArea.cpp174 void ChunkedUpdateDrawingArea::didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments) argument
179 if (!arguments->decode(CoreIPC::Out(size)))
192 if (!arguments->decode(CoreIPC::Out(forceRepaint)))
/external/webkit/Tools/DumpRenderTree/
H A DAccessibilityController.cpp87 static JSValueRef getElementAtPointCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
92 x = JSValueToNumber(context, arguments[0], exception);
93 y = JSValueToNumber(context, arguments[1], exception);
H A DAccessibilityTextMarker.cpp41 static JSValueRef isMarkerEqualCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
46 JSObjectRef otherMarker = JSValueToObject(context, arguments[0], exception);
93 static JSValueRef isMarkerRangeEqualCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
98 JSObjectRef otherMarker = JSValueToObject(context, arguments[0], exception);
H A DGCController.cpp45 static JSValueRef collectCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
52 static JSValueRef collectOnAlternateThreadCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
56 waitUntilDone = JSValueToBoolean(context, arguments[0]);
64 static JSValueRef getJSObjectCountCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
/external/webkit/Tools/DumpRenderTree/chromium/
H A DTextInputController.cpp78 void TextInputController::insertText(const CppArgumentList& arguments, CppVariant* result) argument
82 if (arguments.size() < 1 || !arguments[0].isString())
85 testShell->webView()->confirmComposition(WebString::fromUTF8(arguments[0].toString()));
88 void TextInputController::doCommand(const CppArgumentList& arguments, CppVariant* result) argument
96 if (arguments.size() >= 1 && arguments[0].isString())
97 mainFrame->executeCommand(WebString::fromUTF8(arguments[0].toString()));
100 void TextInputController::setMarkedText(const CppArgumentList& arguments, CppVariant* result) argument
104 if (arguments
180 firstRectForCharacterRange(const CppArgumentList& arguments, CppVariant* result) argument
227 setComposition(const CppArgumentList& arguments, CppVariant* result) argument
[all...]
/external/webkit/Tools/DumpRenderTree/gtk/
H A DTextInputController.cpp41 static JSValueRef setMarkedTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
50 JSStringRef string = JSValueToStringCopy(context, arguments[0], exception);
58 int start = static_cast<int>(JSValueToNumber(context, arguments[1], exception));
61 int end = static_cast<int>(JSValueToNumber(context, arguments[2], exception));
69 static JSValueRef insertTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
78 JSStringRef string = JSValueToStringCopy(context, arguments[0], exception);
91 static JSValueRef unmarkTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
101 static JSValueRef firstRectForCharacterRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
110 int location = static_cast<int>(JSValueToNumber(context, arguments[0], exception));
113 int length = static_cast<int>(JSValueToNumber(context, arguments[
131 selectedRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
[all...]
/external/webkit/Tools/DumpRenderTree/qt/
H A Dmain.cpp79 QString takeOptionValue(QStringList& arguments, int index) argument
83 if (index + 1 < arguments.count() && !isOption(arguments.at(index + 1)))
84 result = arguments.takeAt(index + 1);
85 arguments.removeAt(index);
171 QStringList args = app.arguments();
177 // Remove the first arguments, it is application name itself
/external/chromium/chrome/browser/
H A Djumplist_win.h27 // * arguments (std::wstring)
28 // The arguments for the application.
46 const std::wstring& arguments() const { return arguments_; } function in class:ShellLinkItem
52 void SetArguments(const std::wstring& arguments) { argument
53 arguments_ = arguments;
/external/easymock/src/org/easymock/internal/
H A DInvocation.java37 private final Object[] arguments; field in class:Invocation
45 this.arguments = expandVarArgs(method.isVarArgs(), args);
85 return arguments;
96 && this.equalArguments(other.arguments);
104 private boolean equalArguments(Object[] arguments) { argument
105 if (this.arguments.length != arguments.length) {
108 for (int i = 0; i < this.arguments.length; i++) {
109 Object myArgument = this.arguments[i];
110 Object otherArgument = arguments[
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/
H A DReflectionUtils.java82 // type arguments
218 public static Object invokeMethod(Object object, String signature, Object... arguments) argument
221 Assert.isNotNull(arguments);
230 return method.invoke(refObject, arguments);
245 * @param arguments
253 Object[] arguments) throws Exception {
254 Assert.equals(parameterTypes.length, arguments.length);
256 return invokeMethod(object, signature, arguments);
250 invokeMethod2(Object object, String name, Class<?>[] parameterTypes, Object[] arguments) argument
/external/emma/core/java12/com/vladium/util/exception/
H A DExceptionCommon.java303 * @param arguments java.text.MessageFormat-style parameters to be substituted
314 static String getMessage (final Class namespace, final String code, final Object [] arguments) argument
321 if ((arguments == null) || (arguments.length == 0))
329 return MessageFormat.format (pattern, arguments);
338 for (int a = 0; a < arguments.length; a ++)
341 final Object arg = arguments [a];
/external/mockito/src/org/mockito/internal/invocation/
H A DInvocationImpl.java33 private final Object[] arguments; field in class:InvocationImpl
47 this.arguments = ArgumentsProcessor.expandVarArgs(mockitoMethod.isVarArgs(), args);
62 return arguments;
80 return this.mock.equals(other.mock) && this.method.equals(other.method) && this.equalArguments(other.arguments);
83 private boolean equalArguments(Object[] arguments) { argument
84 return Arrays.equals(arguments, this.arguments);
/external/proguard/src/proguard/
H A DConfigurationWriter.java258 private void writeOption(String optionName, List arguments) argument
260 writeOption(optionName, arguments, false);
265 List arguments,
268 if (arguments != null)
270 if (arguments.isEmpty())
276 String argumentString = ListUtil.commaSeparatedString(arguments);
291 private void writeOption(String optionName, String arguments) argument
293 writeOption(optionName, arguments, false);
298 String arguments,
301 if (arguments !
264 writeOption(String optionName, List arguments, boolean replaceInternalClassNames) argument
297 writeOption(String optionName, String arguments, boolean replaceInternalClassNames) argument
[all...]
/external/v8/test/mjsunit/
H A Ddebug-evaluate-with-context.js117 request_json = {"seq":17,"type":"request","command":"evaluate", arguments: { "expression": expression } };
118 frame_argument_adder(request_json.arguments);
124 request_json.arguments.additional_context = context_json;
/external/webkit/Source/JavaScriptCore/API/tests/
H A DJSNode.c36 static JSValueRef JSNode_appendChild(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
45 } else if (argumentCount < 1 || !JSValueIsObjectOfClass(context, arguments[0], JSNode_class(context))) {
51 Node* child = JSObjectGetPrivate(JSValueToObject(context, arguments[0], NULL));
59 static JSValueRef JSNode_removeChild(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
66 if (JSValueIsObjectOfClass(context, arguments[0], JSNode_class(context))) {
68 Node* child = JSObjectGetPrivate(JSValueToObject(context, arguments[0], exception));
78 static JSValueRef JSNode_replaceChild(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
84 if (JSValueIsObjectOfClass(context, arguments[0], JSNode_class(context))) {
85 if (JSValueIsObjectOfClass(context, arguments[1], JSNode_class(context))) {
87 Node* newChild = JSObjectGetPrivate(JSValueToObject(context, arguments[
188 JSNode_construct(JSContextRef context, JSObjectRef object, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
[all...]

Completed in 407 milliseconds

12345678910