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

1234

/external/webkit/Source/WebCore/platform/win/
H A DSoftLinking.h51 #define SOFT_LINK(library, functionName, resultType, callingConvention, parameterDeclarations, parameterNames) \
52 static resultType callingConvention init##functionName parameterDeclarations; \
53 static resultType (callingConvention*softLink##functionName) parameterDeclarations = init##functionName; \
55 static resultType callingConvention init##functionName parameterDeclarations \
57 softLink##functionName = reinterpret_cast<resultType (callingConvention*) parameterDeclarations>(SOFT_LINK_GETPROCADDRESS(library##Library(), #functionName)); \
58 ASSERT(softLink##functionName); \
59 return softLink##functionName parameterNames; \
62 inline resultType functionName parameterDeclaration
[all...]
/external/webkit/Source/WebKit2/Platform/gtk/
H A DModuleGtk.cpp47 void* Module::platformFunctionPointer(const char* functionName) const
50 g_module_symbol(m_handle, functionName, &symbol);
/external/webkit/Source/WebKit2/Platform/qt/
H A DModuleQt.cpp44 void* Module::platformFunctionPointer(const char* functionName) const
47 return const_cast<QLibrary*>(&m_lib)->resolve(functionName);
/external/webkit/Source/WebKit2/Platform/win/
H A DModuleWin.cpp48 void* Module::platformFunctionPointer(const char* functionName) const
53 return ::GetProcAddress(m_module, functionName);
/external/webkit/Source/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/Source/WebCore/inspector/
H A DScriptCallFrame.h43 ScriptCallFrame(const String& functionName, const String& scriptName, unsigned lineNumber, unsigned column = 0);
46 const String& functionName() const { return m_functionName; } function in class:WebCore::ScriptCallFrame
H A DScriptCallFrame.cpp39 ScriptCallFrame::ScriptCallFrame(const String& functionName, const String& scriptName, unsigned lineNumber, unsigned column) argument
40 : m_functionName(functionName)
62 frame->setString("functionName", m_functionName);
H A DJavaScriptCallFrame.idl50 readonly attribute DOMString functionName;
H A DScriptProfileNode.idl30 readonly attribute DOMString functionName;
/external/jsilver/src/com/google/clearsilver/jsilver/functions/
H A DFunctionExecutor.java31 Value executeFunction(String functionName, Value... args); argument
/external/webkit/Source/WebCore/bindings/js/
H A DJavaScriptCallFrame.cpp75 String JavaScriptCallFrame::functionName() const function in class:WebCore::JavaScriptCallFrame
80 UString functionName = m_debuggerCallFrame.calculatedFunctionName();
81 if (functionName.isEmpty())
83 return ustringToString(functionName);
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 DScriptCallStackFactory.cpp68 UString functionName; local
70 functionName = asFunction(function)->name(exec);
78 frames.append(ScriptCallFrame(ustringToString(functionName), ustringToString(urlString), lineNumber));
/external/webkit/Source/WebKit2/Platform/
H A DModule.h57 template<typename FunctionType> FunctionType functionPointer(const char* functionName) const;
64 void* platformFunctionPointer(const char* functionName) const;
81 template<typename FunctionType> FunctionType Module::functionPointer(const char* functionName) const
83 return reinterpret_cast<FunctionType>(platformFunctionPointer(functionName));
/external/qemu/android/utils/
H A Dassert.c33 const char* functionName )
39 loc->function = functionName;
/external/clang/lib/Analysis/
H A DCocoaConventions.cpp96 StringRef functionName = ident->getName();
98 StringRef::iterator it = functionName.begin();
100 StringRef::iterator endI = functionName.end();
123 StringRef suffix = functionName.substr(it - start);
/external/webkit/Source/JavaScriptCore/runtime/
H A DFunctionConstructor.h39 JSObject* constructFunction(ExecState*, JSGlobalObject*, const ArgList&, const Identifier& functionName, const UString& sourceURL, int lineNumber);
/external/webkit/Source/WebKit2/Platform/mac/
H A DModuleMac.mm62 void* Module::platformFunctionPointer(const char* functionName) const
66 RetainPtr<CFStringRef> functionNameString(AdoptCF, CFStringCreateWithCStringNoCopy(kCFAllocatorDefault, functionName, kCFStringEncodingASCII, kCFAllocatorNull));
/external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/
H A DLeaksParserWorker.js54 _createNode: function(functionName) {
56 functionName: functionName,
63 callUID: functionName,
/external/webkit/Source/WebCore/bindings/v8/
H A DV8LazyEventListener.h49 static PassRefPtr<V8LazyEventListener> create(const String& functionName, bool isSVGEvent, const String& code, const String& sourceURL, const TextPosition0& position, const WorldContextHandle& worldContext) argument
51 return adoptRef(new V8LazyEventListener(functionName, isSVGEvent, code, sourceURL, position, worldContext));
60 V8LazyEventListener(const String& functionName, bool isSVGEvent, const String& code, const String sourceURL, const TextPosition0& position, const WorldContextHandle& worldContext);
H A DScriptProfileNode.h54 String functionName() const;
H A DScriptCallStackFactory.cpp53 String functionName; local
56 functionName = toWebCoreString(functionNameValue);
60 return ScriptCallFrame(functionName, sourceName, sourceLineNumber, sourceColumn);
/external/webkit/Source/WebCore/bindings/scripts/
H A DCodeGenerator.pm512 my $functionName;
515 $functionName = "getNonEmptyURLAttribute";
517 $functionName = "getURLAttribute";
520 $functionName = "hasAttribute";
522 $functionName = "getIntegralAttribute";
524 $functionName = "getUnsignedIntegralAttribute";
526 $functionName = "getAttribute";
529 return "$functionName($contentAttributeName"
542 my $functionName;
544 $functionName
[all...]
/external/webkit/Source/JavaScriptCore/debugger/
H A DDebuggerCallFrame.h53 const UString* functionName() const;
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Function/
H A Dregress-131964.js164 function wasDeleted(functionName)
166 return functionName + ' was deleted...';

Completed in 748 milliseconds

1234