/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);
|
/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/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)
|
/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;
|
JavaScriptProfileNode.cpp | 62 JSRetainPtr<JSStringRef> functionNameString(Adopt, JSStringCreateWithCharacters(profileNode->functionName().data(), profileNode->functionName().size())); 197 { "functionName", getFunctionName, 0, kJSPropertyAttributeNone },
|
/dalvik/libcore/xml/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/bindings/v8/ |
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)
|
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; }
|
/external/webkit/JavaScriptCore/profiler/ |
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(); }
|
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());
|
/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);
|
ProfilerProcessor.js | 94 * Inits "functionName", "url", and "lineNumber" fields using "internalFuncName" 101 this.functionName = this.internalFuncName; 103 var strippedName = nodeAlias.FUNC_NAME_STRIP_RE.exec(this.functionName); 105 this.functionName = strippedName[1]; 107 var parsedName = nodeAlias.FUNC_NAME_PARSE_RE.exec(this.functionName); 109 this.functionName = parsedName[1]; 111 this.functionName += parsedName[4];
|
/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/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/WebKit/mac/WebView/ |
WebScriptDebugDelegate.mm | 201 - (NSString *)functionName 206 const UString* functionName = _private->debuggerCallFrame->functionName(); 207 return functionName ? toNSString(*functionName) : nil;
|
/external/webkit/JavaScriptCore/debugger/ |
DebuggerCallFrame.h | 53 const UString* functionName() const;
|
/external/wpa_supplicant_6/wpa_supplicant/src/eap_server/ |
tncs.c | 59 char *functionName, 364 char *functionName, 368 "functionName='%s')", (unsigned long) imvID, functionName); 376 if (os_strcmp(functionName, "TNC_TNCS_ReportMessageTypes") == 0) 378 else if (os_strcmp(functionName, "TNC_TNCS_SendMessage") == 0) 380 else if (os_strcmp(functionName, "TNC_TNCS_RequestHandshakeRetry") == 383 else if (os_strcmp(functionName, "TNC_TNCS_ProvideRecommendation") == 386 else if (os_strcmp(functionName, "TNC_TNCS_GetAttribute") == 0) 388 else if (os_strcmp(functionName, "TNC_TNCS_SetAttribute") == 0 [all...] |