/external/v8/src/ |
log.cc | 177 sample->stack[i++] = it.frame()->pc(); [all...] |
mirror-debugger.js | 363 * Check whether the mirror reflects a stack frame. 364 * @returns {boolean} True if the mirror reflects a stack frame 793 * only originate as functions from stack frames [all...] |
/external/valgrind/main/ |
Android.mk | 24 -fno-strict-aliasing -fno-stack-protector \
|
/external/valgrind/main/memcheck/tests/ |
deep-backtrace.stderr.exp | 501 Address 0x........ is not stack'd, malloc'd or (recently) free'd [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/pydoc_data/ |
topics.py | 2 topics = {'assert': '\nThe ``assert`` statement\n************************\n\nAssert statements are a convenient way to insert debugging assertions\ninto a program:\n\n assert_stmt ::= "assert" expression ["," expression]\n\nThe simple form, ``assert expression``, is equivalent to\n\n if __debug__:\n if not expression: raise AssertionError\n\nThe extended form, ``assert expression1, expression2``, is equivalent\nto\n\n if __debug__:\n if not expression1: raise AssertionError(expression2)\n\nThese equivalences assume that ``__debug__`` and ``AssertionError``\nrefer to the built-in variables with those names. In the current\nimplementation, the built-in variable ``__debug__`` is ``True`` under\nnormal circumstances, ``False`` when optimization is requested\n(command line option -O). The current code generator emits no code\nfor an assert statement when optimization is requested at compile\ntime. Note that it is unnecessary to include the source code for the\nexpression that failed in the error message; it will be displayed as\npart of the stack trace.\n\nAssignments to ``__debug__`` are illegal. The value for the built-in\nvariable is determined when the interpreter starts.\n', [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/pydoc_data/ |
topics.py | 2 topics = {'assert': '\nThe ``assert`` statement\n************************\n\nAssert statements are a convenient way to insert debugging assertions\ninto a program:\n\n assert_stmt ::= "assert" expression ["," expression]\n\nThe simple form, ``assert expression``, is equivalent to\n\n if __debug__:\n if not expression: raise AssertionError\n\nThe extended form, ``assert expression1, expression2``, is equivalent\nto\n\n if __debug__:\n if not expression1: raise AssertionError(expression2)\n\nThese equivalences assume that ``__debug__`` and ``AssertionError``\nrefer to the built-in variables with those names. In the current\nimplementation, the built-in variable ``__debug__`` is ``True`` under\nnormal circumstances, ``False`` when optimization is requested\n(command line option -O). The current code generator emits no code\nfor an assert statement when optimization is requested at compile\ntime. Note that it is unnecessary to include the source code for the\nexpression that failed in the error message; it will be displayed as\npart of the stack trace.\n\nAssignments to ``__debug__`` are illegal. The value for the built-in\nvariable is determined when the interpreter starts.\n', [all...] |
/prebuilts/tools/common/asm-tools/ |
asm-xml-4.0.jar | |
/external/chromium-trace/ |
script.js | 18 setTimeout(function(){document.body.appendChild(g)},150);throw Error(f);}base.addModuleDependency=b;base.addModuleRawScriptDependency=a;base.addModuleStylesheet=c;try{eval(e.responseText)}catch(d){throw Error("When loading deps, got "+d.stack?d.stack:d.message);}delete base.addModuleStylesheet;delete base.addModuleRawScriptDependency;delete base.addModuleDependency}}function f(){if(!t&&!window.FLATTENED){t=!0;var a=new XMLHttpRequest;a.open("GET","/templates",!1);a.send(null);var c=document.createElement("div"); 23 !r[a]){r[a]=!0;a=a.replace(/\./g,"/")+".html";a=l+"/"+a;var c=document.createElement("link");c.setAttribute("rel","import");c.setAttribute("href",a)}},exportTo:function(a,c){var e;e=a.split(".");for(var b=global,f;e.length&&(f=e.shift());)b=f in b?b[f]:b[f]={};e=b;try{var g=c()}catch(h){console.log("While running exports for ",a,":");console.log(h.stack||h);return}for(var d in g)(b=Object.getOwnPropertyDescriptor(g,d))&&Object.defineProperty(e,d,b)}}}();base.initialize();"use strict"; [all...] |
/prebuilts/tools/common/m2/internal/net/sf/proguard/proguard-base/4.9/ |
proguard-base-4.9.jar | |
/dalvik/vm/mterp/x86/ |
footer.S | 150 ## TODO, need to clean up stack manipulation ... this isn't signal safe and 194 ## TODO, need to clean up stack manipulation ... this isn't signal safe and 229 ## TODO, need to clean up stack manipulation ... this isn't signal safe and 495 * find space for the new stack frame, check for overflow 507 subl $$sizeofStackSaveArea, %eax # %eax<- newSaveArea (stack save area using newFP) [all...] |
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
recognizers.py | 60 # Stack grows upwards. 313 more information such as the stack frame with 498 follow that rule reference on the stack; this amounts to 525 that rule is pushed on a stack. Here are the various "local" 536 and, hence, the follow context stack is: 846 stack trace. This routine is shared with all recognizers, hence, 858 for frame in reversed(inspect.stack()): [all...] |
/external/chromium/base/ |
file_util_posix.cc | 162 std::stack<std::string> directories;
|
/external/chromium_org/base/ |
file_util_posix.cc | 179 std::stack<std::string> directories;
|
/external/chromium_org/chrome/browser/sync/test/integration/ |
bookmarks_helper.cc | 359 std::stack<int> path;
|
/external/chromium_org/chrome/browser/ui/panels/ |
panel.cc | 461 // panel has been expanded. If the panel is in a stack, the titlebar click 493 StackedPanelCollection* Panel::stack() const { function in class:Panel
|
stacked_panel_collection.cc | 40 // If the height of the whole stack is bigger than the height of the new work 41 // area, try to reduce the stack height by collapsing panels. In rare case, 43 // let the stack go beyond the work area limit. 83 // If only one panel is left in the stack, we only need to check if it should 109 // the stack. 161 // Move all panels from secondary stack window to primary stack window. 229 // The secondary stack window should be used when one of the following occurs: 283 // panel in the stack that is not minimized. 304 // Remove the panel from the corresponding stack window [all...] |
/external/chromium_org/content/ |
content_browser.target.darwin-x86.mk | 450 -fno-stack-protector \ 565 -fno-stack-protector \
|
content_browser.target.linux-x86.mk | 450 -fno-stack-protector \ 565 -fno-stack-protector \
|
content_jni_headers.target.darwin-x86.mk | [all...] |
content_jni_headers.target.linux-x86.mk | [all...] |
/external/chromium_org/ppapi/native_client/tools/browser_tester/browserdata/ |
nacltest.js | 69 if (typeof e == 'object' && 'message' in e && 'stack' in e) { 70 return e.message + '\n' + e.stack.toString();
|
/external/chromium_org/third_party/WebKit/Source/core/ |
webcore_derived.target.darwin-x86.mk | 378 -fno-stack-protector \ 531 -fno-stack-protector \
|
webcore_derived.target.linux-x86.mk | 378 -fno-stack-protector \ 531 -fno-stack-protector \
|
webcore_html.target.darwin-x86.mk | 322 -fno-stack-protector \ 466 -fno-stack-protector \
|
webcore_html.target.linux-x86.mk | 322 -fno-stack-protector \ 466 -fno-stack-protector \
|