HomeSort by relevance Sort by last modified time
    Searched refs:callStack (Results 1 - 25 of 32) sorted by null

1 2

  /external/webkit/Source/WebCore/page/
Console.cpp 140 void Console::addMessage(MessageSource source, MessageType type, MessageLevel level, const String& message, unsigned lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack> callStack)
148 if (callStack)
149 InspectorInstrumentation::addMessageToConsole(page, source, type, level, message, 0, callStack);
165 RefPtr<ScriptCallStack> callStack = prpCallStack;
171 const ScriptCallFrame& lastCaller = callStack->at(0);
192 InspectorInstrumentation::addMessageToConsole(page, JSMessageSource, type, level, message, arguments, callStack);
195 void Console::debug(PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack)
198 log(arguments, callStack);
201 void Console::error(PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack)
203 addMessage(LogMessageType, ErrorMessageLevel, arguments, callStack);
    [all...]
Console.h 90 void addMessage(MessageSource, MessageType, MessageLevel, const String& message, unsigned lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack> callStack);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
ParseTreeBuilder.cs 45 Stack<ParseTree> callStack = new Stack<ParseTree>();
51 callStack.Push(root);
55 var enumerator = callStack.GetEnumerator();
84 ParseTree parentRuleNode = callStack.Peek();
87 callStack.Push(ruleNode);
93 ParseTree ruleNode = callStack.Peek();
97 callStack.Pop();
103 ParseTree ruleNode = callStack.Peek();
119 ParseTree ruleNode = callStack.Peek();
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
ParseTreeBuilder.cs 47 Stack<ParseTree> callStack = new Stack<ParseTree>();
54 callStack.Push( root );
61 return callStack.Peek();
94 ParseTree parentRuleNode = callStack.Peek();
97 callStack.Push( ruleNode );
104 ParseTree ruleNode = callStack.Peek();
109 callStack.Pop();
116 ParseTree ruleNode = callStack.Peek();
134 ParseTree ruleNode = callStack.Peek();
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
ParseTreeBuilder.java 44 Stack callStack = new Stack();
50 callStack.push(root);
54 return (ParseTree)callStack.elementAt(0);
74 ParseTree parentRuleNode = (ParseTree)callStack.peek();
77 callStack.push(ruleNode);
82 ParseTree ruleNode = (ParseTree)callStack.peek();
86 callStack.pop();
91 ParseTree ruleNode = (ParseTree)callStack.peek();
105 ParseTree ruleNode = (ParseTree)callStack.peek();
  /external/webkit/Source/WebCore/bindings/js/
JSConsoleCustom.cpp 60 RefPtr<ScriptCallStack> callStack(createScriptCallStack(exec, 1));
65 impl()->profile(title, exec, callStack);
71 RefPtr<ScriptCallStack> callStack(createScriptCallStack(exec, 1));
76 impl()->profileEnd(title, exec, callStack);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8ConsoleCustom.cpp 69 RefPtr<ScriptCallStack> callStack(createScriptCallStack(ScriptCallStack::maxCallStackSizeToCapture));
71 imp->trace(scriptArguments.release(), callStack);
79 RefPtr<ScriptCallStack> callStack(createScriptCallStack(ScriptCallStack::maxCallStackSizeToCapture));
82 imp->assertCondition(condition, scriptArguments.release(), callStack);
91 RefPtr<ScriptCallStack> callStack(createScriptCallStack(1));
92 if (!callStack)
95 imp->profile(title, ScriptState::current(), callStack);
103 RefPtr<ScriptCallStack> callStack(createScriptCallStack(1));
104 if (!callStack)
107 imp->profileEnd(title, ScriptState::current(), callStack);
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/
shell.js 31 var callStack = new Array();
147 callStack.push(funcName);
157 var lastFunc = callStack.pop();
178 return callStack[callStack.length - 1];
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/
shell.js 31 var callStack = new Array();
147 callStack.push(funcName);
157 var lastFunc = callStack.pop();
178 return callStack[callStack.length - 1];
  /external/apache-harmony/support/src/test/java/tests/util/
CallVerificationStack.java 46 private final Stack<StackTraceElement> callStack = new Stack<StackTraceElement>();
87 this.callStack.push(eles[i]);
96 return this.callStack.peek().getClassName();
105 return this.callStack.peek().getMethodName();
114 this.callStack.clear();
201 this.callStack.pop();
  /libcore/support/src/test/java/tests/util/
CallVerificationStack.java 46 private final Stack<StackTraceElement> callStack = new Stack<StackTraceElement>();
87 this.callStack.push(eles[i]);
96 return this.callStack.peek().getClassName();
105 return this.callStack.peek().getMethodName();
114 this.callStack.clear();
201 this.callStack.pop();
  /external/webkit/Source/WebCore/inspector/
InspectorConsoleInstrumentation.h 41 inline void InspectorInstrumentation::addMessageToConsole(Page* page, MessageSource source, MessageType type, MessageLevel level, const String& message, PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack)
45 addMessageToConsoleImpl(inspectorAgent, source, type, level, message, arguments, callStack);
98 inline void InspectorInstrumentation::addProfile(Page* page, RefPtr<ScriptProfile> profile, PassRefPtr<ScriptCallStack> callStack)
102 addProfileImpl(inspectorAgent, profile, callStack);
InspectorConsoleAgent.cpp 127 void InspectorConsoleAgent::addMessageToConsole(MessageSource source, MessageType type, MessageLevel level, const String& message, PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack)
131 addConsoleMessage(new ConsoleMessage(source, type, level, message, arguments, callStack));
151 void InspectorConsoleAgent::stopTiming(const String& title, PassRefPtr<ScriptCallStack> callStack)
167 const ScriptCallFrame& lastCaller = callStack->at(0);
171 void InspectorConsoleAgent::count(PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack)
173 const ScriptCallFrame& lastCaller = callStack->at(0);
ConsoleMessage.cpp 59 ConsoleMessage::ConsoleMessage(MessageSource s, MessageType t, MessageLevel l, const String& m, PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack)
65 , m_callStack(callStack)
InspectorResourceAgent.cpp 325 RefPtr<ScriptCallStack> callStack = createScriptCallStack(ScriptCallStack::maxCallStackSizeToCapture, true);
327 if (callStack)
328 callStackValue = callStack->buildInspectorArray();
InspectorInstrumentation.cpp 630 void InspectorInstrumentation::addMessageToConsoleImpl(InspectorAgent* inspectorAgent, MessageSource source, MessageType type, MessageLevel level, const String& message, PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack)
632 inspectorAgent->consoleAgent()->addMessageToConsole(source, type, level, message, arguments, callStack);
671 void InspectorInstrumentation::addProfileImpl(InspectorAgent* inspectorAgent, RefPtr<ScriptProfile> profile, PassRefPtr<ScriptCallStack> callStack)
674 const ScriptCallFrame& lastCaller = callStack->at(0);
    [all...]
  /dalvik/tools/dmtracedump/
CreateTestTrace.c 126 stack *callStack;
163 callStack = (stack *) malloc(sizeof(stack) * numThreads);
166 callStack[ii].frames = NULL;
167 callStack[ii].indentLevel = 0;
199 if (callStack[threadId].frames == NULL) {
202 callStack[threadId].frames = stk;
204 indentLevel = callStack[threadId].indentLevel;
261 callStack[threadId].frames[indentLevel] = &records[nextRecord];
264 if (callStack[threadId].frames[indentLevel - 1] == NULL) {
267 callStack[threadId].frames[indentLevel - 1] = &records[nextRecord]
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_6/
shell.js 48 var callStack = new Array();
169 callStack.push(funcName);
179 var lastFunc = callStack.pop();
200 return callStack[callStack.length - 1];
  /external/webkit/Source/WebCore/dom/
ScriptExecutionContext.cpp 75 PendingException(const String& errorMessage, int lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack> callStack)
79 , m_callStack(callStack)
321 void ScriptExecutionContext::reportException(const String& errorMessage, int lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack> callStack)
326 m_pendingExceptions->append(adoptPtr(new PendingException(errorMessage, lineNumber, sourceURL, callStack)));
332 logExceptionToConsole(errorMessage, lineNumber, sourceURL, callStack);
Document.cpp     [all...]
  /frameworks/base/core/java/android/os/
Debug.java     [all...]
  /external/freetype/src/truetype/
ttinterp.h 173 TT_CallStack callStack; /* call stack */
ttinterp.c 418 FT_FREE( exec->callStack );
464 if ( FT_NEW_ARRAY( exec->callStack, exec->callSize ) )
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
V8DOMWindowShell.cpp 113 RefPtr<ScriptCallStack> callStack;
116 callStack = createScriptCallStack(stackTrace, ScriptCallStack::maxCallStackSizeToCapture);
122 document->reportException(errorMessage, message->GetLineNumber(), resourceNameString, callStack);
  /external/webkit/Source/WebCore/bindings/scripts/test/V8/
V8TestObj.cpp 785 RefPtr<ScriptCallStack> callStack(createScriptCallStack(maxStackSize));
786 if (!callStack)
789 imp->customArgsAndException(intArg, scriptArguments, callStack, ec);
    [all...]

Completed in 1066 milliseconds

1 2