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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/platform/
TraceLocation.h 18 TraceLocation(const char* functionName, const char* fileName)
19 : m_functionName(functionName)
28 const char* functionName() const { return m_functionName; }
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ScriptCallFrame.h 42 ScriptCallFrame(const String& functionName, const String& scriptId, const String& scriptName, unsigned lineNumber, unsigned column = 0);
45 const String& functionName() const { return m_functionName; }
InjectedScriptCanvasModule.cpp 74 ScriptValue InjectedScriptCanvasModule::callWrapContextFunction(const String& functionName, const ScriptValue& context)
76 ScriptFunctionCall function(injectedScriptObject(), functionName);
105 void InjectedScriptCanvasModule::callStartCapturingFunction(const String& functionName, ErrorString* errorString, TraceLogId* traceLogId)
107 ScriptFunctionCall function(injectedScriptObject(), functionName);
111 *errorString = "Internal error: " + functionName;
124 void InjectedScriptCanvasModule::callVoidFunctionWithTraceLogIdArgument(const String& functionName, ErrorString* errorString, const TraceLogId& traceLogId)
126 ScriptFunctionCall function(injectedScriptObject(), functionName);
132 *errorString = "Internal error: " + functionName;
JavaScriptCallFrame.cpp 101 String JavaScriptCallFrame::functionName() const
103 return callV8FunctionReturnString("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/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptCallStackFactory.cpp 59 String functionName;
62 functionName = toCoreString(functionNameValue);
66 return ScriptCallFrame(functionName, scriptId, sourceName, sourceLineNumber, sourceColumn);
V8NPObject.cpp 120 v8::Handle<v8::String> functionName = v8::Handle<v8::String>::Cast(info.Data());
121 NPIdentifier identifier = getStringIdentifier(functionName);
  /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();
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
JAXPExtensionsProvider.java 165 String functionName = extFunction.getFunctionName();
168 new javax.xml.namespace.QName( namespace, functionName );
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/
ReturnAnnotationChecker.java 74 String functionName = getFunctionName(function.functionNode);
75 if (functionName == null) {
78 boolean isApiFunction = !functionName.startsWith("_")
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)) &&
119 String functionName, List<AstNode> argumentNodes, List<String> arguments) {
122 if (FUNCTIONS_WITH_CALLBACK_RECEIVER_AS_SECOND_ARGUMENT.contains(functionName)) {
126 } else if ("addEventListener".equals(functionName) ||
127 "removeEventListener".equals(functionName)) {
MethodAnnotationChecker.java 128 String functionName = getFunctionName(function.functionNode);
129 if (functionName == null) {
132 boolean isApiFunction = !functionName.startsWith("_")
ContextTrackingValidationCheck.java 92 String functionName = nameNode == null ? null : getNodeText(nameNode);
93 boolean isConstructor = rememberTypeRecordIfNeeded(functionName, jsDocNode);
101 functionName,
  /external/chromium_org/tools/cygprofile/
patch_orderfile.py 68 functionName = line.replace('.text.', '').split('.clone.')[0].strip()
69 profiled_list.append (functionName)
79 functionName = line.split()[3]
81 functionName = line.split()[2]
82 functionName = functionName.split('.clone.')[0]
85 functionAddressMap[functionName].append(functionAddress)
87 functionAddressMap[functionName] = [functionAddress]
88 functions.append(functionName)
  /external/libcxxabi/src/Unwind/
UnwindLevel1-gcc-ext.c 147 char functionName[512];
150 unw_get_proc_name(&cursor, functionName, 512, &offset);
154 (long long)frameInfo.start_ip, functionName, (long long)frameInfo.lsda,
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...]
  /external/srec/srec/Semproc/include/
SR_ExpressionParser.h 158 LCHAR functionName[MAX_STRING_LEN];
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
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,
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...]
  /external/jsilver/src/com/google/clearsilver/jsilver/autoescape/
AutoEscapeContext.java 489 private final String functionName;
492 private AutoEscapeState(String functionName, EscapeMode mode) {
493 this.functionName = functionName;
498 return functionName;
  /external/chromium_org/third_party/skia/experimental/LightSymbolsUtil/Callstacker/Callstacker/
Callstacker.cpp 419 const char* functionName() {
624 emit("LS_TRACE(\"%s\", %i, %i);", state.functionName(), fileId, state.lineNumber()); // light symbol traces, create a macro to define it
  /external/skia/experimental/LightSymbolsUtil/Callstacker/Callstacker/
Callstacker.cpp 419 const char* functionName() {
624 emit("LS_TRACE(\"%s\", %i, %i);", state.functionName(), fileId, state.lineNumber()); // light symbol traces, create a macro to define it
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/console/
ConsoleViewMessage.js     [all...]
  /external/deqp/modules/gles3/functional/
es3fPrimitiveRestartTests.cpp 688 const char* functionName = function == (int)PrimitiveRestartCase::FUNCTION_DRAW_ELEMENTS ? "draw_elements"
693 DE_ASSERT(functionName != DE_NULL);
696 functionName,

Completed in 1454 milliseconds

1 2 3