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

1 2 3 4 5

  /external/webkit/Source/WebCore/platform/win/
SoftLinking.h 51 #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 parameterDeclarations
    [all...]
  /frameworks/native/opengl/tools/glgen/src/
ParameterChecker.java 45 public String[] getChecks(String functionName) {
46 String[] checks = map.get(functionName);
48 (functionName.endsWith("fv") ||
49 functionName.endsWith("xv") ||
50 functionName.endsWith("iv"))) {
51 functionName = functionName.substring(0, functionName.length() - 2);
52 checks = map.get(functionName);
  /libcore/luni/src/main/java/libcore/io/
ErrnoException.java 28 private final String functionName;
31 public ErrnoException(String functionName, int errno) {
32 this.functionName = functionName;
36 public ErrnoException(String functionName, int errno, Throwable cause) {
38 this.functionName = functionName;
53 return functionName + " failed: " + errnoName + " (" + description + ")";
GaiException.java 29 private final String functionName;
32 public GaiException(String functionName, int error) {
33 this.functionName = functionName;
37 public GaiException(String functionName, int error, Throwable cause) {
39 this.functionName = functionName;
54 return functionName + " failed: " + gaiName + " (" + description + ")";
  /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/Source/WebKit2/Platform/gtk/
ModuleGtk.cpp 47 void* Module::platformFunctionPointer(const char* functionName) const
50 g_module_symbol(m_handle, functionName, &symbol);
  /external/webkit/Source/WebKit2/Platform/qt/
ModuleQt.cpp 44 void* Module::platformFunctionPointer(const char* functionName) const
47 return const_cast<QLibrary*>(&m_lib)->resolve(functionName);
  /external/webkit/Source/WebKit2/Platform/win/
ModuleWin.cpp 48 void* Module::platformFunctionPointer(const char* functionName) const
53 return ::GetProcAddress(m_module, functionName);
  /external/webkit/Source/WebKit2/Platform/
Module.h 57 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/webkit/Source/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/Source/WebCore/inspector/
ScriptCallFrame.h 43 ScriptCallFrame(const String& functionName, const String& scriptName, unsigned lineNumber, unsigned column = 0);
46 const String& functionName() const { return m_functionName; }
ScriptCallFrame.cpp 39 ScriptCallFrame::ScriptCallFrame(const String& functionName, const String& scriptName, unsigned lineNumber, unsigned column)
40 : m_functionName(functionName)
62 frame->setString("functionName", m_functionName);
  /external/webkit/Source/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);
JavaScriptCallFrame.cpp 75 String JavaScriptCallFrame::functionName() const
80 UString functionName = m_debuggerCallFrame.calculatedFunctionName();
81 if (functionName.isEmpty())
83 return ustringToString(functionName);
ScriptCallStackFactory.cpp 68 UString functionName;
70 functionName = asFunction(function)->name(exec);
78 frames.append(ScriptCallFrame(ustringToString(functionName), ustringToString(urlString), lineNumber));
  /external/webkit/Source/WebCore/bindings/v8/
V8LazyEventListener.h 49 static PassRefPtr<V8LazyEventListener> create(const String& functionName, bool isSVGEvent, const String& code, const String& sourceURL, const TextPosition0& position, const WorldContextHandle& worldContext)
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);
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/
FunctionExecutor.java 31 Value executeFunction(String functionName, Value... args);
  /external/webkit/Source/JavaScriptCore/runtime/
FunctionConstructor.h 39 JSObject* constructFunction(ExecState*, JSGlobalObject*, const ArgList&, const Identifier& functionName, const UString& sourceURL, int lineNumber);
  /external/qemu/android/utils/
assert.c 33 const char* functionName )
39 loc->function = functionName;
  /external/clang/lib/Analysis/
CocoaConventions.cpp 96 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/WebKit2/Platform/mac/
ModuleMac.mm 62 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/
LeaksParserWorker.js 54 _createNode: function(functionName) {
56 functionName: functionName,
63 callUID: functionName,
  /libcore/luni/src/main/native/
JniConstants.h 92 #define NATIVE_METHOD(className, functionName, signature) \
93 { #functionName, signature, reinterpret_cast<void*>(className ## _ ## functionName) }
  /external/webkit/Source/WebCore/bindings/scripts/
CodeGenerator.pm 512 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 = "setBooleanAttribute"
    [all...]
  /external/webkit/Source/JavaScriptCore/debugger/
DebuggerCallFrame.h 53 const UString* functionName() const;

Completed in 710 milliseconds

1 2 3 4 5