Searched defs:arguments (Results 76 - 100 of 244) sorted by relevance

12345678910

/external/webkit/Source/JavaScriptCore/API/tests/
H A Dminidom.c37 static JSValueRef print(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception);
82 static JSValueRef print(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
88 JSStringRef string = JSValueToStringCopy(context, arguments[0], exception);
/external/webkit/Source/WebCore/dom/
H A DViewportArguments.cpp314 ViewportArguments* arguments = static_cast<ViewportArguments*>(data); local
317 arguments->width = findSizeValue(keyString, valueString, document);
319 arguments->height = findSizeValue(keyString, valueString, document);
321 arguments->initialScale = findScaleValue(keyString, valueString, document);
323 arguments->minimumScale = findScaleValue(keyString, valueString, document);
325 arguments->maximumScale = findScaleValue(keyString, valueString, document);
327 arguments->userScalable = findUserScalableValue(keyString, valueString, document);
329 arguments->targetDensityDpi = findTargetDensityDPIValue(keyString, valueString, document);
/external/webkit/Source/WebCore/inspector/
H A DConsoleMessage.cpp59 ConsoleMessage::ConsoleMessage(MessageSource s, MessageType t, MessageLevel l, const String& m, PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack) argument
64 , m_arguments(arguments)
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitviewportattributes.cpp535 ViewportArguments arguments = webView->priv->corePage->mainFrame()->document()->viewportArguments(); local
537 ViewportAttributes attributes = computeViewportAttributes(arguments, priv->desktopWidth, priv->deviceWidth, priv->deviceHeight, priv->deviceDPI, IntSize(priv->availableWidth, priv->availableHeight));
545 priv->userScalable = static_cast<bool>(arguments.userScalable);
/external/webkit/Source/WebKit2/PluginProcess/
H A DPluginProcess.cpp111 void PluginProcess::didReceiveMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments) argument
113 didReceivePluginProcessMessage(connection, messageID, arguments);
H A DWebProcessConnection.cpp100 void WebProcessConnection::didReceiveMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments) argument
102 if (!arguments->destinationID()) {
107 PluginControllerProxy* pluginControllerProxy = m_pluginControllers.get(arguments->destinationID());
113 pluginControllerProxy->didReceivePluginControllerProxyMessage(connection, messageID, arguments);
116 CoreIPC::SyncReplyMode WebProcessConnection::didReceiveSyncMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments, CoreIPC::ArgumentEncoder* reply) argument
118 uint64_t destinationID = arguments->destinationID();
121 return didReceiveSyncWebProcessConnectionMessage(connection, messageID, arguments, reply);
124 return m_npRemoteObjectMap->didReceiveSyncMessage(connection, messageID, arguments, reply);
126 PluginControllerProxy* pluginControllerProxy = m_pluginControllers.get(arguments->destinationID());
131 CoreIPC::SyncReplyMode replyMode = pluginControllerProxy->didReceiveSyncPluginControllerProxyMessage(connection, messageID, arguments, repl
[all...]
/external/webkit/Source/WebKit2/Shared/Plugins/
H A DNPObjectMessageReceiver.cpp81 Vector<NPVariant> arguments; local
83 arguments.append(m_npRemoteObjectMap->npVariantDataToNPVariant(argumentsData[i], m_plugin));
88 returnValue = m_npObject->_class->invoke(m_npObject, methodNameData.createNPIdentifier(), arguments.data(), arguments.size(), &result);
94 // Release all arguments.
96 releaseNPVariantValue(&arguments[i]);
109 Vector<NPVariant> arguments; local
111 arguments.append(m_npRemoteObjectMap->npVariantDataToNPVariant(argumentsData[i], m_plugin));
116 returnValue = m_npObject->_class->invokeDefault(m_npObject, arguments.data(), arguments
212 Vector<NPVariant> arguments; local
[all...]
H A DNPRemoteObjectMap.cpp222 CoreIPC::SyncReplyMode NPRemoteObjectMap::didReceiveSyncMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments, CoreIPC::ArgumentEncoder* reply) argument
224 NPObjectMessageReceiver* messageReceiver = m_registeredNPObjects.get(arguments->destinationID());
228 return messageReceiver->didReceiveSyncNPObjectMessageReceiverMessage(connection, messageID, arguments, reply);
/external/webkit/Source/WebKit2/UIProcess/Plugins/
H A DPluginProcessProxy.cpp153 void PluginProcessProxy::didReceiveMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments) argument
155 didReceivePluginProcessProxyMessage(connection, messageID, arguments);
/external/webkit/Source/WebKit2/UIProcess/
H A DWebCookieManagerProxy.cpp66 void WebCookieManagerProxy::didReceiveMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments) argument
68 didReceiveWebCookieManagerProxyMessage(connection, messageID, arguments);
H A DWebProcessProxy.h103 template<typename E, typename T> bool deprecatedSend(E messageID, uint64_t destinationID, const T& arguments);
153 CoreIPC::SyncReplyMode didReceiveSyncWebProcessProxyMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder* arguments, CoreIPC::ArgumentEncoder* reply);
170 bool WebProcessProxy::deprecatedSend(E messageID, uint64_t destinationID, const T& arguments) argument
173 argumentEncoder->encode(arguments);
/external/webkit/Source/WebKit2/WebProcess/IconDatabase/
H A DWebIconDatabaseProxy.cpp146 void WebIconDatabaseProxy::didReceiveMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments) argument
148 didReceiveWebIconDatabaseProxyMessage(connection, messageID, arguments);
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebDatabaseManager.cpp63 void WebDatabaseManager::didReceiveMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments) argument
65 didReceiveWebDatabaseManagerMessage(connection, messageID, arguments);
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DTiledDrawingArea.cpp164 void TiledDrawingArea::didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments) argument
169 if (!arguments->decode(CoreIPC::Out(size)))
183 if (!arguments->decode(CoreIPC::Out(tileID)))
197 if (!arguments->decode(CoreIPC::Out(update.tileID, update.dirtyRect, update.scale)))
213 if (!arguments->decode(CoreIPC::Out(targetSize, contentsRect)))
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
H A DPluginTest.h182 static bool NP_Invoke(NPObject* npObject, NPIdentifier methodName, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result) argument
184 return static_cast<T*>(npObject)->invoke(methodName, arguments, argumentCount, result);
187 static bool NP_InvokeDefault(NPObject* npObject, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result) argument
189 return static_cast<T*>(npObject)->invokeDefault(arguments, argumentCount, result);
/external/webkit/Tools/DumpRenderTree/chromium/
H A DCppVariant.cpp298 bool CppVariant::invoke(const string& method, const CppVariant* arguments, argument
307 bool status = WebBindings::invoke(0, npObject, methodName, arguments, argumentCount, &r);
/external/bison/lib/
H A Dprintf-args.h138 /* Number of directly allocated arguments (no malloc() needed). */
147 arguments; typedef in typeref:struct:__anon339
150 /* Fetch the arguments, putting them into a. */
156 int PRINTF_FETCHARGS (va_list args, arguments *a);
/external/chromium/base/
H A Dstring_util.h53 va_list arguments)
61 const wchar_t* format, va_list arguments)
71 va_list arguments; local
72 va_start(arguments, format);
73 int result = vsnprintf(buffer, size, format, arguments);
74 va_end(arguments);
83 va_list arguments; local
84 va_start(arguments, format);
85 int result = vswprintf(buffer, size, format, arguments);
86 va_end(arguments);
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_sidebar_api.cc77 static bool IsArgumentListEmpty(const ListValue* arguments) { argument
78 if (arguments->empty())
80 if (arguments->GetSize() == 1) {
82 if (!arguments->Get(0, &first_value))
/external/e2fsprogs/intl/
H A Dprintf-args.h126 arguments; typedef in typeref:struct:__anon5258
129 /* Fetch the arguments, putting them into a. */
135 int printf_fetchargs (va_list args, arguments *a);
/external/icu4c/test/intltest/
H A Ddadrcoll.cpp170 const UChar *arguments = NULL; local
227 arguments = testSetting.getBuffer();
228 processArguments(col, arguments, argLen);
230 processArguments(clone, arguments, argLen);
233 errln("Couldn't process arguments");
/external/proguard/src/proguard/retrace/
H A DReTrace.java205 String arguments = null;
208 // arguments beforehand.
236 arguments = originalArguments(match);
295 arguments,
301 arguments = originalArguments(match);
302 outLine.append(arguments);
433 String arguments,
452 if (methodInfo.matches(lineNumber, type, arguments))
467 outLine.append('(').append(methodInfo.arguments).append(')');
488 extraBuffer.append('(').append(methodInfo.arguments)
429 originalMethodName(String className, String obfuscatedMethodName, int lineNumber, String type, String arguments, StringBuffer outLine, List extraOutLines) argument
655 private String arguments; field in class:ReTrace.MethodInfo
659 MethodInfo(int firstLineNumber, int lastLineNumber, String type, String arguments, String originalName) argument
669 matches(int lineNumber, String type, String arguments) argument
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowFragment.java25 private Bundle arguments; field in class:ShadowFragment
105 return arguments;
109 public void setArguments(Bundle arguments) { argument
110 this.arguments = arguments;
/external/v8/src/
H A Dsafepoint-table.cc127 int arguments,
129 ASSERT(arguments >= 0);
132 info.arguments = arguments;
237 encoding |= SafepointEntry::ArgumentsField::encode(info.arguments);
124 DefineSafepoint( Assembler* assembler, Safepoint::Kind kind, int arguments, Safepoint::DeoptMode deopt_mode) argument
H A Dv8utils.cc41 va_list arguments; local
42 va_start(arguments, format);
43 OS::VPrint(format, arguments);
44 va_end(arguments);
49 va_list arguments; local
50 va_start(arguments, format);
51 OS::VFPrint(out, format, arguments);
52 va_end(arguments);
250 va_list arguments; local
251 va_start(arguments, forma
[all...]

Completed in 555 milliseconds

12345678910