/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);
|
/external/skia/src/ports/ |
SkOSLibrary_posix.cpp | 19 void* GetProcedureAddress(void* library, const char* functionName) { 20 return dlsym(library, functionName);
|
SkOSLibrary_win.cpp | 18 void* GetProcedureAddress(void* library, const char* functionName) { 19 return reinterpret_cast<void*>(::GetProcAddress((HMODULE)library, functionName));
|
SkOSLibrary.h | 13 void* GetProcedureAddress(void* library, const char* functionName);
|
/external/v8/test/mjsunit/ |
debug-stepin-property-function-call.js | 89 var functionName = "fun"; 91 obj[functionName](); 101 var functionName = "fu" + "n"; 103 obj[cache[functionName]](); 107 var functionName = "fu" + "n"; 108 var funRef = obj[functionName]; 115 var functionName = "fu" + "n"; 117 obj[functionName](); 122 var functionName = "un".replace(/u/, "fu"); 124 obj[functionName](); [all...] |
/art/runtime/ |
jni_internal.h | 24 #define NATIVE_METHOD(className, functionName, signature) \ 25 { #functionName, signature, reinterpret_cast<void*>(className ## _ ## functionName) } 30 #define OVERLOADED_NATIVE_METHOD(className, functionName, signature, identifier) \ 31 { #functionName, signature, reinterpret_cast<void*>(className ## _ ## identifier) }
|
/libcore/luni/src/main/java/android/system/ |
ErrnoException.java | 29 private final String functionName; 39 public ErrnoException(String functionName, int errno) { 40 this.functionName = functionName; 47 public ErrnoException(String functionName, int errno, Throwable cause) { 49 this.functionName = functionName; 64 return functionName + " failed: " + errnoName + " (" + description + ")";
|
GaiException.java | 30 private final String functionName; 40 public GaiException(String functionName, int error) { 41 this.functionName = functionName; 48 public GaiException(String functionName, int error, Throwable cause) { 50 this.functionName = functionName; 65 return functionName + " failed: " + gaiName + " (" + description + ")";
|
/external/chromium-trace/catapult/tracing/tracing/base/ |
timing.html | 17 function computeUserTimingMarkName(groupName, functionName, opt_args) { 20 if (functionName === undefined) 22 var userTimingMarkName = groupName + ':' + functionName; 35 Timing.mark = function(groupName, functionName, opt_args) { 42 groupName, functionName, opt_args); 65 Timing.wrapNamedFunction = function(groupName, functionName, callback, 68 var markedTime = Timing.mark(groupName, functionName, opt_args);
|
/external/chromium-trace/catapult/perf_insights/perf_insights/ |
function_handle.html | 62 function FunctionHandle(modulesToLoad, functionName, opt_options) { 65 if (typeof(functionName) !== 'string') 66 throw new Error('functionName in FunctionHandle must be a string'); 68 this.functionName = functionName; 81 'function_name': this.functionName, 88 parts.push(this.functionName); 105 'FunctionHandle named ' + this.functionName + 121 var func = FunctionRegistry.getFunction(this.functionName); 124 'No registered function named ' + this.functionName); [all...] |
/external/llvm/tools/llvm-cov/ |
SourceCoverageView.h | 53 StringRef FunctionName; 57 InstantiationView(StringRef FunctionName, unsigned Line, 59 : FunctionName(FunctionName), Line(Line), View(std::move(View)) {} 61 : FunctionName(std::move(RHS.FunctionName)), Line(std::move(RHS.Line)), 64 FunctionName = std::move(RHS.FunctionName); 149 void addInstantiation(StringRef FunctionName, unsigned Line, 151 InstantiationSubViews.emplace_back(FunctionName, Line, std::move(View)) [all...] |
/libcore/ojluni/src/main/native/ |
FileSystem_md.c | 30 #define NATIVE_METHOD(className, functionName, signature) \ 31 { #functionName, signature, (void*)(className ## _ ## functionName) }
|
Float.c | 31 #define NATIVE_METHOD(className, functionName, signature) \ 32 { #functionName, signature, (void*)(className ## _ ## functionName) }
|
Inet4Address.c | 31 #define NATIVE_METHOD(className, functionName, signature) \ 32 { #functionName, signature, (void*)(className ## _ ## functionName) }
|
Shutdown.c | 32 #define NATIVE_METHOD(className, functionName, signature) \ 33 { #functionName, signature, (void*)(className ## _ ## functionName) }
|
String.c | 29 #define NATIVE_METHOD(className, functionName, signature) \ 30 { #functionName, signature, (void*)(className ## _ ## functionName) }
|
Adler32.c | 37 #define NATIVE_METHOD(className, functionName, signature) \ 38 { #functionName, signature, (void*)(Java_java_util_zip_ ## className ## _ ## functionName) }
|
Console_md.c | 36 #define NATIVE_METHOD(className, functionName, signature) \ 37 { #functionName, signature, (void*)(Java_java_io_ ## className ## _ ## functionName) }
|
/external/v8/test/mjsunit/regress/ |
regress-2374.js | 28 var msg = '{"result":{"profile":{"head":{"functionName":"(root)","url":"","lineNumber":0,"totalTime":495.7243772462511,"selfTime":0,"numberOfCalls":0,"visible":true,"callUID":2771605942,"children":[{"functionName":"(program)","url":"","lineNumber":0,"totalTime":495.7243772462511,"selfTime":495.7243772462511,"numberOfCalls":0,"visible":true,"callUID":1902715303,"children":[]}]},"bottomUpHead":{"functionName":"(root)","url":"","lineNumber":0,"totalTime":495.7243772462511,"selfTime":0,"numberOfCalls":0,"visible":true,"callUID":2771605942,"children":[{"functionName":"(program)","url":"","lineNumber":0,"totalTime":495.7243772462511,"selfTime":495.7243772462511,"numberOfCalls":0,"visible":true,"callUID":1902715303,"children":[]}]}}},"id":41}';
|
/external/v8/test/webkit/ |
array-enumerators-functions.js | 84 var functionName = functions[f]; 86 if (arrays[a] === "largeEmptyArray" && functionName === "map") 88 if (currentFunc === returnIndex && functionName === "reduceRight") 90 shouldBe("count=0;lastIndex=-1;copyArray("+arrays[a]+")."+functionName+"(forwarders[f], "+testFunctions[t]+", 0)", 91 "count=0;lastIndex=-1;Array.prototype."+functionName+".call(toObject("+arrays[a]+"), forwarders[f], "+testFunctions[t]+", 0)"); 100 var functionName = functions[f]; 102 if (arrays[a] === "largeEmptyArray" && functionName === "map") 104 if (currentFunc === returnIndex && functionName === "reduceRight") 106 shouldBe("count=0;lastIndex=-1;copyArray("+arrays[a]+")."+functionName+"(forwarders[f], "+testFunctions[t]+", 0)", 107 "count=0;lastIndex=-1;Array.prototype."+functionName+".call(toUnorderedObject("+arrays[a]+"), forwarders[f], "+testFunctions[t]+", 0)") [all...] |
/external/llvm/lib/DebugInfo/Symbolize/ |
DIPrinter.cpp | 29 std::string FunctionName = Info.FunctionName; 30 if (FunctionName == kDILineInfoBadString) 31 FunctionName = kBadString; 35 OS << Prefix << FunctionName << Delimiter;
|
/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/autotest/client/deps/webgl_mpd/src/debug/ |
webgl-debug.js | 210 * @param {string} functionName the name of the WebGL function. 216 function glFunctionArgToString(functionName, numArgs, argumentIndex, value) { 217 var funcInfo = glValidEnumContexts[functionName]; 239 * @param {string} functionName the name of the WebGL function. 243 function glFunctionArgsToString(functionName, args) { 249 glFunctionArgToString(functionName, numArgs, ii, args[ii]); 269 function makeFunctionWrapper(original, functionName) { 270 //log("wrap fn: " + functionName); 271 var f = original[functionName]; 273 //log("call: " + functionName); [all...] |
/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,
|