Searched refs:functionName (Results 1 - 25 of 61) sorted by relevance

123

/external/webkit/WebCore/platform/win/
H A DSoftLinking.h46 #define SOFT_LINK(library, functionName, resultType, callingConvention, parameterDeclarations, parameterNames) \
47 static resultType callingConvention init##functionName parameterDeclarations; \
48 static resultType (callingConvention*softLink##functionName) parameterDeclarations = init##functionName; \
50 static resultType callingConvention init##functionName parameterDeclarations \
52 softLink##functionName = reinterpret_cast<resultType (callingConvention*) parameterDeclarations>(GetProcAddress(library##Library(), #functionName)); \
53 ASSERT(softLink##functionName); \
54 return softLink##functionName parameterNames; \
57 inline resultType functionName parameterDeclaration
[all...]
/external/webkit/WebCore/platform/mac/
H A DSoftLinking.h48 #define SOFT_LINK(framework, functionName, resultType, parameterDeclarations, parameterNames) \
49 static resultType init##functionName parameterDeclarations; \
50 static resultType (*softLink##functionName) parameterDeclarations = init##functionName; \
52 static resultType init##functionName parameterDeclarations \
54 softLink##functionName = (resultType (*) parameterDeclarations) dlsym(framework##Library(), #functionName); \
55 ASSERT(softLink##functionName); \
56 return softLink##functionName parameterNames; \
59 inline resultType functionName parameterDeclaration
[all...]
/external/webkit/WebCore/bindings/js/
H A DScriptCallFrame.cpp41 ScriptCallFrame::ScriptCallFrame(const UString& functionName, const UString& urlString, int lineNumber, const ArgList& args, unsigned skipArgumentCount) argument
42 : m_functionName(functionName)
H A DScriptCallFrame.h53 ScriptCallFrame(const JSC::UString& functionName, const JSC::UString& urlString, int lineNumber, const JSC::ArgList&, unsigned skipArgumentCount);
56 const ScriptString& functionName() const { return m_functionName; } function in class:WebCore::ScriptCallFrame
H A DJSLazyEventListener.h32 static PassRefPtr<JSLazyEventListener> create(const String& functionName, const String& eventParameterName, const String& code, Node* node, const String& sourceURL, int lineNumber, JSC::JSObject* wrapper, DOMWrapperWorld* isolatedWorld) argument
34 return adoptRef(new JSLazyEventListener(functionName, eventParameterName, code, node, sourceURL, lineNumber, wrapper, isolatedWorld));
39 JSLazyEventListener(const String& functionName, const String& eventParameterName, const String& code, Node*, const String& sourceURL, int lineNumber, JSC::JSObject* wrapper, DOMWrapperWorld* isolatedWorld);
H A DJSLazyEventListener.cpp38 JSLazyEventListener::JSLazyEventListener(const String& functionName, const String& eventParameterName, const String& code, Node* node, const String& sourceURL, int lineNumber, JSObject* wrapper, DOMWrapperWorld* isolatedWorld) argument
40 , m_functionName(functionName)
/external/webkit/WebCore/bindings/v8/
H A DScriptCallFrame.cpp43 ScriptCallFrame::ScriptCallFrame(const String& functionName, const String& urlString, int lineNumber, const v8::Arguments& arguments, unsigned skipArgumentCount) argument
44 : m_functionName(functionName)
H A DScriptCallFrame.h52 ScriptCallFrame(const String& functionName, const String& urlString, int lineNumber, const v8::Arguments&, unsigned skipArgumentCount);
55 const ScriptString& functionName() const { return m_functionName; } function in class:WebCore::ScriptCallFrame
H A DV8LazyEventListener.h48 static PassRefPtr<V8LazyEventListener> create(const String& functionName, bool isSVGEvent, const String& code, const String& sourceURL, int lineNumber, int columnNumber, const WorldContextHandle& worldContext) argument
50 return adoptRef(new V8LazyEventListener(functionName, isSVGEvent, code, sourceURL, lineNumber, columnNumber, worldContext));
59 V8LazyEventListener(const String& functionName, bool isSVGEvent, const String& code, const String sourceURL, int lineNumber, int columnNumber, const WorldContextHandle& worldContext);
/external/webkit/WebCore/inspector/
H A DJavaScriptCallFrame.cpp74 String JavaScriptCallFrame::functionName() const function in class:WebCore::JavaScriptCallFrame
79 UString functionName = m_debuggerCallFrame.calculatedFunctionName();
80 if (functionName.isEmpty())
82 return functionName;
H A DJavaScriptCallFrame.idl36 readonly attribute DOMString functionName;
H A DJavaScriptCallFrame.h67 String functionName() const;
/external/webkit/WebKit/chromium/src/js/
H A DInjectDispatch.js41 * @param {string} functionName Function to call
45 InspectorControllerDispatcher.dispatch = function(functionName, json_args)
48 InspectorBackend[functionName].apply(InspectorBackend, params);
/external/webkit/JavaScriptCore/runtime/
H A DFunctionConstructor.h39 JSObject* constructFunction(ExecState*, const ArgList&, const Identifier& functionName, const UString& sourceURL, int lineNumber);
H A DFunctionConstructor.cpp71 JSObject* constructFunction(ExecState* exec, const ArgList& args, const Identifier& functionName, const UString& sourceURL, int lineNumber) argument
98 RefPtr<FunctionExecutable> function = FunctionExecutable::fromGlobalCode(functionName, exec, exec->dynamicGlobalObject()->debugger(), source, &errLine, &errMsg);
/external/webkit/JavaScriptCore/debugger/
H A DDebuggerCallFrame.h53 const UString* functionName() const;
H A DDebuggerCallFrame.cpp39 const UString* DebuggerCallFrame::functionName() const function in class:JSC::DebuggerCallFrame
/external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Function/
H A Dregress-131964.js164 function wasDeleted(functionName)
166 return functionName + ' was deleted...';
/external/webkit/WebKit/android/
H A DTimeCounter.h67 static void record(enum Type type, const char* functionName);
68 static void recordNoCounter(enum Type type, const char* functionName);
H A DTimeCounter.cpp108 void TimeCounter::record(enum Type type, const char* functionName) argument
110 recordNoCounter(type, functionName);
114 void TimeCounter::recordNoCounter(enum Type type, const char* functionName) argument
120 LOGW("***** %s() used %d ms\n", functionName, elapsed);
/external/webkit/WebKit/mac/WebView/
H A DWebScriptDebugDelegate.mm201 - (NSString *)functionName
206 const UString* functionName = _private->debuggerCallFrame->functionName();
207 return functionName ? toNSString(*functionName) : nil;
/external/webkit/JavaScriptCore/profiler/
H A DProfileNode.cpp296 functionName().UTF8String().c_str(),
300 m_nextSibling ? m_nextSibling->functionName().UTF8String().c_str() : "");
315 const char* name = functionName().UTF8String().c_str();
321 countedFunctions.add(functionName().rep());
341 printf("%.0f %s\n", sampleCount - sumOfChildrensCount, functionName().UTF8String().c_str());
H A DProfileNode.h64 const UString& functionName() const { return m_callIdentifier.m_name; } function in class:JSC::ProfileNode
146 static inline bool functionNameDescendingComparator(const RefPtr<ProfileNode>& a, const RefPtr<ProfileNode>& b) { return a->functionName() > b->functionName(); }
147 static inline bool functionNameAscendingComparator(const RefPtr<ProfileNode>& a, const RefPtr<ProfileNode>& b) { return a->functionName() < b->functionName(); }
/external/webkit/WebKit/chromium/src/
H A DWebDevToolsAgentImpl.h71 virtual void dispatchOnInspectorController(int callId, const WebCore::String& functionName, const WebCore::String& jsonArgs);
72 virtual void dispatchOnInjectedScript(int callId, int injectedScriptId, const WebCore::String& functionName, const WebCore::String& jsonArgs, bool async);
/external/srec/srec/Semproc/include/
H A DSR_ExpressionParser.h158 LCHAR functionName[MAX_STRING_LEN]; member in struct:ExpressionParser_t

Completed in 281 milliseconds

123