HomeSort by relevance Sort by last modified time
    Searched full:functionname (Results 1 - 25 of 172) sorted by null

1 2 3 4 5 6 7

  /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/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/skia/experimental/LightSymbolsUtil/lightsymbols/
lightsymbols.h 3 #define LS_TRACE(functionName,fileId,lineNumber) LightSymbol __lstr(functionName,fileId,lineNumber);
  /art/runtime/
jni_internal.h 24 #define NATIVE_METHOD(className, functionName, signature) \
25 { #functionName, signature, reinterpret_cast<void*>(className ## _ ## functionName) }
  /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...]
  /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...]
  /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/clang/test/CodeGenObjC/
blocks-5.m 15 extern void DVT (volatile const void * object, volatile const void * selector, const char * functionName);
  /external/wpa_supplicant_8/src/common/
tnc.h 33 char *functionName,
56 char *functionName,
  /external/llvm/include/llvm/ProfileData/
CoverageMappingReader.h 35 StringRef FunctionName;
150 StringRef FunctionName;
156 ProfileMappingRecord(CoverageMappingVersion Version, StringRef FunctionName,
159 : Version(Version), FunctionName(FunctionName),
  /libnativehelper/include/nativehelper/
JniConstants.h 99 #define NATIVE_METHOD(className, functionName, signature) \
100 { #functionName, signature, reinterpret_cast<void*>(className ## _ ## functionName) }
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
UnwindLevel1.c 63 char functionName[512];
65 if ((unw_get_proc_name(&cursor1, functionName, 512, &offset) !=
67 strcpy(functionName, ".anonymous.");
73 exception_object, (long long)pc, (long long)frameInfo.start_ip, functionName,
157 char functionName[512];
159 if ((unw_get_proc_name(&cursor2, functionName, 512, &offset) !=
161 strcpy(functionName, ".anonymous.");
165 exception_object, (long long)frameInfo.start_ip, functionName,
248 char functionName[512];
250 if ((unw_get_proc_name(&cursor2, functionName, 512, &offset) !
    [all...]
  /art/runtime/native/
java_lang_Object.cc 25 #define NATIVE_METHOD(className, functionName, signature, identifier) \
26 { #functionName, signature, reinterpret_cast<void*>(className ## _ ## identifier) }
  /external/clang/lib/Basic/
SanitizerBlacklist.cpp 32 bool SanitizerBlacklist::isBlacklistedFunction(StringRef FunctionName) const {
33 return SCL->inSection("fun", FunctionName);
  /external/llvm/test/tools/llvm-readobj/ARM/
unwind.s 154 @ CHECK: FunctionName: __personality
170 @ CHECK: FunctionName: personality0
186 @ CHECK: FunctionName: personality1
206 @ CHECK: FunctionName: custom_personality
219 @ CHECK: FunctionName: opcodes
234 @ CHECK: FunctionName: function0
245 @ CHECK: FunctionName: function1
252 @ CHECK: FunctionName: function2
  /external/skia/src/core/
SkFlattenable.cpp 81 static void report_no_entries(const char* functionName) {
85 functionName);
  /external/llvm/test/tools/llvm-readobj/
codeview-linetables.test 53 MFUN32: FunctionName: _x
72 MFUN32: FunctionName: _y
91 MFUN32: FunctionName: _f
106 MFUN32-NEXT: FunctionName: _x
116 MFUN32-NEXT: FunctionName: _y
126 MFUN32-NEXT: FunctionName: _f
158 MFUN64: FunctionName: x
173 MFUN64: FunctionName: y
188 MFUN64: FunctionName: f
203 MFUN64-NEXT: FunctionName:
    [all...]
  /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/clang/test/Index/
fix-its.m 5 void _rdar_12584554_A (volatile const void * object, volatile const void * selector, const char * functionName, const char * fileName, unsigned int lineNumber, NSString * msgFormat, ...);
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/
FunctionExecutor.java 31 Value executeFunction(String functionName, Value... args);
  /external/llvm/include/llvm/DebugInfo/DWARF/
DIContext.h 33 std::string FunctionName;
38 : FileName("<invalid>"), FunctionName("<invalid>"), Line(0), Column(0) {}
42 FileName == RHS.FileName && FunctionName == RHS.FunctionName;

Completed in 2788 milliseconds

1 2 3 4 5 6 7