/external/webkit/WebCore/platform/win/ |
H A D | SoftLinking.h | 46 #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 D | SoftLinking.h | 48 #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 D | ScriptCallFrame.cpp | 41 ScriptCallFrame::ScriptCallFrame(const UString& functionName, const UString& urlString, int lineNumber, const ArgList& args, unsigned skipArgumentCount) argument 42 : m_functionName(functionName)
|
H A D | ScriptCallFrame.h | 53 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 D | JSLazyEventListener.h | 32 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 D | JSLazyEventListener.cpp | 38 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 D | ScriptCallFrame.cpp | 43 ScriptCallFrame::ScriptCallFrame(const String& functionName, const String& urlString, int lineNumber, const v8::Arguments& arguments, unsigned skipArgumentCount) argument 44 : m_functionName(functionName)
|
H A D | ScriptCallFrame.h | 52 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 D | V8LazyEventListener.h | 48 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 D | JavaScriptCallFrame.cpp | 74 String JavaScriptCallFrame::functionName() const function in class:WebCore::JavaScriptCallFrame 79 UString functionName = m_debuggerCallFrame.calculatedFunctionName(); 80 if (functionName.isEmpty()) 82 return functionName;
|
H A D | JavaScriptCallFrame.idl | 36 readonly attribute DOMString functionName;
|
H A D | JavaScriptCallFrame.h | 67 String functionName() const;
|
/external/webkit/WebKit/chromium/src/js/ |
H A D | InjectDispatch.js | 41 * @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 D | FunctionConstructor.h | 39 JSObject* constructFunction(ExecState*, const ArgList&, const Identifier& functionName, const UString& sourceURL, int lineNumber);
|
H A D | FunctionConstructor.cpp | 71 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 D | DebuggerCallFrame.h | 53 const UString* functionName() const;
|
H A D | DebuggerCallFrame.cpp | 39 const UString* DebuggerCallFrame::functionName() const function in class:JSC::DebuggerCallFrame
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Function/ |
H A D | regress-131964.js | 164 function wasDeleted(functionName) 166 return functionName + ' was deleted...';
|
/external/webkit/WebKit/android/ |
H A D | TimeCounter.h | 67 static void record(enum Type type, const char* functionName); 68 static void recordNoCounter(enum Type type, const char* functionName);
|
H A D | TimeCounter.cpp | 108 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 D | WebScriptDebugDelegate.mm | 201 - (NSString *)functionName 206 const UString* functionName = _private->debuggerCallFrame->functionName(); 207 return functionName ? toNSString(*functionName) : nil;
|
/external/webkit/JavaScriptCore/profiler/ |
H A D | ProfileNode.cpp | 296 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 D | ProfileNode.h | 64 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 D | WebDevToolsAgentImpl.h | 71 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 D | SR_ExpressionParser.h | 158 LCHAR functionName[MAX_STRING_LEN]; member in struct:ExpressionParser_t
|