HomeSort by relevance Sort by last modified time
    Searched refs:functionName (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/webkit/WebCore/platform/win/
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 parameterDeclarations
    [all...]
  /frameworks/base/opengl/tools/glgen/src/
ParameterChecker.java 32 public String[] getChecks(String functionName) {
33 String[] checks = map.get(functionName);
35 (functionName.endsWith("fv") ||
36 functionName.endsWith("xv") ||
37 functionName.endsWith("iv"))) {
38 functionName = functionName.substring(0, functionName.length() - 2);
39 checks = map.get(functionName);
  /libcore/luni/src/main/java/javax/xml/xpath/
XPathFunctionResolver.java 50 * <p>If <code>functionName</code> or <code>arity</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p>
52 * @param functionName The function name.
55 * @return The function or <code>null</code> if no function named <code>functionName</code> with <code>arity</code> arguments exists.
57 * @throws NullPointerException If <code>functionName</code> or <code>arity</code> is <code>null</code>.
59 public XPathFunction resolveFunction(QName functionName, int arity);
  /external/webkit/WebCore/platform/mac/
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 parameterDeclarations
    [all...]
  /external/webkit/WebCore/bindings/v8/
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; }
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)
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);
ScriptCallFrame.cpp 43 ScriptCallFrame::ScriptCallFrame(const String& functionName, const String& urlString, int lineNumber, const v8::Arguments& arguments, unsigned skipArgumentCount)
44 : m_functionName(functionName)
  /external/webkit/WebCore/bindings/js/
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)
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);
ScriptCallFrame.cpp 41 ScriptCallFrame::ScriptCallFrame(const UString& functionName, const UString& urlString, int lineNumber, const ArgList& args, unsigned skipArgumentCount)
42 : m_functionName(functionName)
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; }
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)
40 , m_functionName(functionName)
  /libcore/luni/src/main/native/
JniConstants.h 72 #define NATIVE_METHOD(className, functionName, signature) \
73 { #functionName, signature, reinterpret_cast<void*>(className ## _ ## functionName) }
  /external/webkit/JavaScriptCore/runtime/
FunctionConstructor.h 39 JSObject* constructFunction(ExecState*, const ArgList&, const Identifier& functionName, const UString& sourceURL, int lineNumber);
FunctionConstructor.cpp 71 JSObject* constructFunction(ExecState* exec, const ArgList& args, const Identifier& functionName, const UString& sourceURL, int lineNumber)
98 RefPtr<FunctionExecutable> function = FunctionExecutable::fromGlobalCode(functionName, exec, exec->dynamicGlobalObject()->debugger(), source, &errLine, &errMsg);
  /external/webkit/WebCore/inspector/
JavaScriptCallFrame.cpp 74 String JavaScriptCallFrame::functionName() const
79 UString functionName = m_debuggerCallFrame.calculatedFunctionName();
80 if (functionName.isEmpty())
82 return functionName;
JavaScriptCallFrame.idl 36 readonly attribute DOMString functionName;
  /external/webkit/WebKit/chromium/src/js/
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/debugger/
DebuggerCallFrame.h 53 const UString* functionName() const;
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Function/
regress-131964.js 164 function wasDeleted(functionName)
166 return functionName + ' was deleted...';
  /external/webkit/WebKit/android/
TimeCounter.h 67 static void record(enum Type type, const char* functionName);
68 static void recordNoCounter(enum Type type, const char* functionName);
TimeCounter.cpp 108 void TimeCounter::record(enum Type type, const char* functionName)
110 recordNoCounter(type, functionName);
114 void TimeCounter::recordNoCounter(enum Type type, const char* functionName)
120 LOGW("***** %s() used %d ms\n", functionName, elapsed);
  /external/webkit/WebKit/mac/WebView/
WebScriptDebugDelegate.mm 201 - (NSString *)functionName
206 const UString* functionName = _private->debuggerCallFrame->functionName();
207 return functionName ? toNSString(*functionName) : nil;
  /external/webkit/JavaScriptCore/profiler/
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());
ProfileNode.h 64 const UString& functionName() const { return m_callIdentifier.m_name; }
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/
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);

Completed in 991 milliseconds

1 2 3