HomeSort by relevance Sort by last modified time
    Searched refs:functionName (Results 26 - 50 of 156) sorted by null

12 3 4 5 6 7

  /external/libcxxabi/src/Unwind/
UnwindLevel1.c 62 char functionName[512];
64 if ((unw_get_proc_name(&cursor1, functionName, 512, &offset) !=
66 strcpy(functionName, ".anonymous.");
72 exception_object, pc, 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, frameInfo.start_ip, functionName, sp,
245 char functionName[512];
247 if ((unw_get_proc_name(&cursor2, functionName, 512, &offset) !
    [all...]
  /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...]
UnwindLevel1-gcc-ext.c 124 char functionName[512];
127 unw_get_proc_name(&cursor, functionName, 512, &offset);
131 (long long)frameInfo.start_ip, functionName, (long long)frameInfo.lsda,
  /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/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
keyboard_handler.js 87 var functionName;
89 functionName =
92 functionName = null;
99 if (!functionName) {
105 if (!cvox.ChromeVox.isActive && functionName != 'toggleChromeVox') {
114 var func = cvox.ChromeVoxUserCommands.commands[functionName];
117 history.enterUserCommand(functionName);
119 history.exitUserCommand(functionName);
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptPreprocessor.cpp 83 String ScriptPreprocessor::preprocessSourceCode(const String& sourceCode, const String& sourceName, const String& functionName)
88 v8::Handle<v8::String> functionNameString = v8String(m_scriptState->isolate(), functionName);
92 String ScriptPreprocessor::preprocessSourceCode(const String& sourceCode, const String& sourceName, v8::Handle<v8::Value> functionName)
102 v8::Handle<v8::Value> argv[] = { sourceCodeString, sourceNameString, functionName};
ScriptCallStackFactory.cpp 59 String functionName;
62 functionName = toCoreString(functionNameValue);
66 return ScriptCallFrame(functionName, scriptId, sourceName, sourceLineNumber, sourceColumn);
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLRenderingContextBase.cpp     [all...]
WebGLRenderingContextBase.h 431 PassRefPtr<Image> drawImageIntoBuffer(Image*, int width, int height, const char* functionName);
739 bool validateLocationLength(const char* functionName, const String&);
743 bool validateSize(const char* functionName, GLint x, GLint y);
747 bool validateString(const char* functionName, const String&);
752 WebGLTexture* validateTextureBinding(const char* functionName, GLenum target, bool useSixEnumsForCubeMap);
756 bool validateTexFuncFormatAndType(const char* functionName, GLenum format, GLenum type, GLint level);
760 bool validateTexFuncLevel(const char* functionName, GLenum target, GLint level);
764 bool validateValueFitNonNegInt32(const char* functionName, const char* paramName, long long value);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptCanvasModule.cpp 76 ScriptValue InjectedScriptCanvasModule::callWrapContextFunction(const String& functionName, const ScriptValue& context)
78 ScriptFunctionCall function(injectedScriptObject(), functionName);
107 void InjectedScriptCanvasModule::callStartCapturingFunction(const String& functionName, ErrorString* errorString, TraceLogId* traceLogId)
109 ScriptFunctionCall function(injectedScriptObject(), functionName);
113 *errorString = "Internal error: " + functionName;
126 void InjectedScriptCanvasModule::callVoidFunctionWithTraceLogIdArgument(const String& functionName, ErrorString* errorString, const TraceLogId& traceLogId)
128 ScriptFunctionCall function(injectedScriptObject(), functionName);
134 *errorString = "Internal error: " + functionName;
InjectedScriptHost.cpp 130 void InjectedScriptHost::monitorFunction(const String& scriptId, int lineNumber, int columnNumber, const String& functionName)
134 if (functionName.isEmpty())
137 builder.append(functionName);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
HeapSnapshotCommon.js 55 * @param {string} functionName
67 WebInspector.HeapSnapshotCommon.SerializedAllocationNode = function(nodeId, functionName, scriptName, scriptId, line, column, count, size, liveCount, liveSize, hasChildren)
72 this.name = functionName;
94 * @param {string} functionName
101 WebInspector.HeapSnapshotCommon.AllocationStackFrame = function(functionName, scriptName, scriptId, line, column)
104 this.functionName = functionName;
CPUProfileDataGrid.js 47 this.functionName = WebInspector.CPUProfileDataModel.beautifyFunctionName(profileNode.functionName);
126 var functionName;
131 content.createTextChild(this.functionName);
132 functionName = content;
134 functionName = this.functionName;
138 "function": functionName,
  /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
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/
FunctionReceiverChecker.java 60 String functionName = callParts[partCount - 1];
62 saveSymbolicArguments(functionName, argumentNodes, actualArguments);
64 boolean isBindCall = partCount > 1 && "bind".equals(functionName);
76 ("call".equals(functionName) || "apply".equals(functionName)) &&
120 String functionName, List<Node> argumentNodes, List<String> arguments) {
123 if (FUNCTIONS_WITH_CALLBACK_RECEIVER_AS_SECOND_ARGUMENT.contains(functionName)) {
127 } else if ("addEventListener".equals(functionName) ||
128 "removeEventListener".equals(functionName)) {
MethodAnnotationChecker.java 128 String functionName = getFunctionName(function.functionNode);
129 if (functionName == null) {
132 String[] parts = functionName.split("\\.");
133 functionName = parts[parts.length - 1];
134 boolean isApiFunction = !functionName.startsWith("_")
ContextTrackingValidationCheck.java 82 String functionName = nameNode == null ? null : state.getNodeText(nameNode);
85 functionName,
89 rememberTypeRecordIfNeeded(functionName, functionRecord.info);
  /art/runtime/native/
java_lang_Object.cc 23 #define NATIVE_METHOD(className, functionName, signature, identifier) \
24 { #functionName, signature, reinterpret_cast<void*>(className ## _ ## identifier) }
  /external/chromium_org/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/wpa_supplicant_8/src/common/
tnc.h 33 char *functionName,
56 char *functionName,
  /art/runtime/
jni_internal.h 32 #define NATIVE_METHOD(className, functionName, signature) \
33 { #functionName, signature, reinterpret_cast<void*>(className ## _ ## functionName) }
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
memoize.js 103 * @param {string} functionName The name of the function you're calling.
112 cvox.Memoize.memoize = function(functionClosure, functionName, node) {
114 cvox.Memoize.nodeMap_[functionName] === undefined) {
115 cvox.Memoize.nodeMap_[functionName] = new WeakMap();
123 var result = cvox.Memoize.nodeMap_[functionName].get(node);
129 cvox.Memoize.nodeMap_[functionName].set(node, result);
  /external/chromium_org/chrome/renderer/resources/extensions/
file_entry_binding_util.js 29 var bindFileEntryCallback = function(functionName, apiFunctions) {
30 apiFunctions.setCustomCallback(functionName,
43 apiName + '.' + functionName,
74 apiName + '.' + functionName, request, callback,
78 apiName + '.' + functionName, request, callback,
95 lastError.run(apiName + '.' + functionName,
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
ObjectPopoverHelper.js 80 var functionName = title.createChild("span", "function-name");
81 functionName.textContent = response.functionName || WebInspector.UIString("(anonymous function)");
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
TypeResolver.java 131 PVariable functionName = ((AFunctionExpression) node).getName();
132 if (functionName instanceof ANameVariable) {
133 String name = ((ANameVariable) functionName).getWord().getText();

Completed in 1762 milliseconds

12 3 4 5 6 7