| /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 + ")";
|
| /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/platform/graphics/cairo/ |
| OpenGLShims.cpp | 29 #define ASSIGN_FUNCTION_TABLE_ENTRY(FunctionName, success) \ 30 openGLFunctionTable()->FunctionName = reinterpret_cast<FunctionName##Type>(lookupOpenGLFunctionAddress(#FunctionName, success)) 51 static void* lookupOpenGLFunctionAddress(const char* functionName, bool& success) 56 void* target = getProcAddress(functionName); 60 String fullFunctionName(functionName); 66 fullFunctionName = 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/llvm/include/llvm/DebugInfo/ |
| DIContext.h | 33 SmallString<16> FunctionName; 38 : FileName("<invalid>"), FunctionName("<invalid>"), 41 const SmallString<16> &functionName, 43 : FileName(fileName), FunctionName(functionName), 47 const char *getFunctionName() { return FunctionName.c_str(); } 54 FunctionName.equals(RHS.FunctionName); 88 FunctionName = 1 << 2
|
| /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/qemu/android/utils/ |
| assert.c | 33 const char* functionName ) 39 loc->function = 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);
|
| /cts/suite/audio_quality/test_description/ |
| processing_main.py | 81 self.functionName = self.readRaw(nameLen) 82 print "Processing function:", self.functionName 112 if not self.functionName in builtinFunctions: 113 mod = __import__(self.functionName) 114 output = getattr(mod, self.functionName)(inputData, inputTypes) 116 output = globals()[self.functionName](inputData, inputTypes) 142 " returned from funcion ", self.functionName
|
| /cts/suite/audio_quality/test/ |
| SignalProcessingInterfaceTest.cpp | 47 android::String8 functionName("echo"); 81 ASSERT_TRUE(mSp->run( functionName, 91 android::String8 functionName("intsum"); 104 ASSERT_TRUE(mSp->run( functionName, 116 android::String8 functionName("intsum"); 129 ASSERT_TRUE(mSp->run( functionName, 134 ASSERT_TRUE(sp2->run( functionName, 143 android::String8 functionName("example"); 189 ASSERT_TRUE(mSp->run( functionName,
|
| /external/llvm/tools/llvm-symbolizer/ |
| LLVMSymbolize.cpp | 36 Flags |= llvm::DILineInfoSpecifier::FunctionName; 103 std::string FunctionName; 106 FunctionName, Start, Size)) { 107 patchFunctionNameInDILineInfo(FunctionName, LineInfo); 130 std::string FunctionName; 133 FunctionName, Start, Size)) { 134 patchFunctionNameInDILineInfo(FunctionName, LineInfo); 253 std::string FunctionName = LineInfo.getFunctionName(); 254 if (FunctionName == kDILineInfoBadString) 255 FunctionName = kBadString [all...] |
| /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/webkit/Source/WebCore/inspector/ |
| 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);
|
| ScriptCallFrame.h | 43 ScriptCallFrame(const String& functionName, const String& scriptName, unsigned lineNumber, unsigned column = 0); 46 const String& functionName() const { return m_functionName; }
|
| /external/clang/test/CodeGenObjC/ |
| blocks-5.m | 15 extern void DVT (volatile const void * object, volatile const void * selector, const char * functionName);
|
| /external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/ |
| LeaksParserWorker.js | 54 _createNode: function(functionName) { 56 functionName: functionName, 63 callUID: functionName,
|
| /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/JavaScriptCore/profiler/ |
| ProfileNode.h | 67 const UString& functionName() const { return m_callIdentifier.m_name; } 149 static inline bool functionNameDescendingComparator(const RefPtr<ProfileNode>& a, const RefPtr<ProfileNode>& b) { return a->functionName() > b->functionName(); } 150 static inline bool functionNameAscendingComparator(const RefPtr<ProfileNode>& a, const RefPtr<ProfileNode>& b) { return a->functionName() < b->functionName(); }
|