/external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/ |
jstemplate.js | 323 * functions in the stack.
328 * stack[depth][index]. Here [depth] indexes into the call stack, and
339 * A stack of queues of pre-order calls.
345 * The outer array is a stack of such queues.
390 * Pushes one or more functions onto the stack. These will be run in sequence,
[all...] |
/external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/ |
jstemplate.js | 323 * functions in the stack. 328 * stack[depth][index]. Here [depth] indexes into the call stack, and 339 * A stack of queues of pre-order calls. 345 * The outer array is a stack of such queues. 390 * Pushes one or more functions onto the stack. These will be run in sequence, [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/jst/ |
jstemplate.js | 323 * functions in the stack.
328 * stack[depth][index]. Here [depth] indexes into the call stack, and
339 * A stack of queues of pre-order calls.
345 * The outer array is a stack of such queues.
390 * Pushes one or more functions onto the stack. These will be run in sequence,
[all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/ |
jstemplate.js | 323 * functions in the stack. 328 * stack[depth][index]. Here [depth] indexes into the call stack, and 339 * A stack of queues of pre-order calls. 345 * The outer array is a stack of such queues. 390 * Pushes one or more functions onto the stack. These will be run in sequence, [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/UglifyJS/ |
parse-js.js | 237 this.stack = ex.stack; 242 return this.message + " (line: " + this.line + ", col: " + this.col + ", pos: " + this.pos + ")" + "\n\n" + this.stack; [all...] |
/external/chromium_org/third_party/jinja2/ |
parser.py | 93 stack = list(self._end_token_stack) 95 stack.append(end_tokens) 96 return self._fail_ut_eof(None, stack, lineno) 132 # from the stack so that the unknown tag fail function can [all...] |
/external/chromium_org/third_party/jstemplate/ |
jstemplate.js | 305 * functions in the stack. 310 * stack[depth][index]. Here [depth] indexes into the call stack, and 321 * A stack of queues of pre-order calls. 327 * The outer array is a stack of such queues. 372 * Pushes one or more functions onto the stack. These will be run in sequence,
|
/external/chromium_org/webkit/browser/fileapi/ |
sandbox_directory_database.cc | 10 #include <stack> 279 std::stack<base::FilePath> pending_directories; 328 std::stack<FileId> directories;
|
/external/clang/include/clang/Basic/ |
SourceManager.h | 228 /// that it represents and include stack information. 230 /// Each FileInfo has include stack information, indicating where it came 521 /// \brief The stack used when building modules on demand, which is used 683 /// \brief The stack of modules being built, which is used to detect 716 /// \brief Retrieve the module build stack. 721 /// \brief Set the module build stack. 722 void setModuleBuildStack(ModuleBuildStack stack) { 724 StoredModuleBuildStack.append(stack.begin(), stack.end()); 727 /// \brief Push an entry to the module build stack [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/scene/ |
Spatial.java | 475 Spatial[] stack = vars.spatialStack; local 487 stack[i] = rootNode; 500 rootNode = stack[j]; [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_sys.py | 358 # threading.py are also in the thread's call stack. 360 stack = traceback.extract_stack(frame) 361 for i, (filename, lineno, funcname, sourceline) in enumerate(stack): 365 self.fail("didn't find f123() on thread's call stack") 370 filename, lineno, funcname, sourceline = stack[i+1]
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_sys.py | 358 # threading.py are also in the thread's call stack. 360 stack = traceback.extract_stack(frame) 361 for i, (filename, lineno, funcname, sourceline) in enumerate(stack): 365 self.fail("didn't find f123() on thread's call stack") 370 filename, lineno, funcname, sourceline = stack[i+1]
|
/external/chromium_org/v8/src/ |
parser.cc | 49 // PositionStack is used for on-stack allocation of token positions for 62 Element(PositionStack* stack, int value) { 63 previous_ = stack->top(); 65 stack->set_top(this); 423 // Parser's target_stack_ (the stack of potential 'break' and 466 // FunctionState and BlockState together implement the parser's scope stack. 468 // FunctionState constructors push on the scope stack and the destructors 690 // Make sure the target stack is empty. 774 // Make sure the target stack is empty. 851 // Allocate a target stack to use for this set of sourc [all...] |
runtime.js | 33 // it does not push the function onto the stack. This means that you 447 // We can handle any number of apply arguments if the stack is 465 // stack. It is guaranteed to be a small integer at this point.
|
/external/v8/src/ |
parser.cc | 49 // PositionStack is used for on-stack allocation of token positions for 59 Element(PositionStack* stack, int value) { 60 previous_ = stack->top(); 62 stack->set_top(this); 419 // Parser's target_stack_ (the stack of potential 'break' and 462 // FunctionState and BlockState together implement the parser's scope stack. 464 // FunctionState constructors push on the scope stack and the destructors 652 // Make sure the target stack is empty. 733 // Make sure the target stack is empty. 736 // If there was a stack overflow we have to get rid of AST and it i [all...] |
profile-generator.cc | 406 List<Position> stack(10); 407 stack.Add(Position(root_)); 408 while (stack.length() > 0) { 409 Position& current = stack.last(); 412 stack.Add(Position(current.current_child())); 415 if (stack.length() > 1) { 416 Position& parent = stack[stack.length() - 2]; 420 // Remove child from the stack. 421 stack.RemoveLast() [all...] |
runtime.js | 33 // it does not push the function onto the stack. This means that you 453 // We can handle any number of apply arguments if the stack is 471 // stack. It is guaranteed to be a small integer at this point.
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
StyleResolver.cpp | 245 // Reset the stack in this case, or if we see a new root element. 252 // Note: We mustn't skip ShadowRoot nodes for the scope stack. 259 // Pause maintaining the stack in this case. 737 Vector<ScopedStyleResolver*, 8> stack; 738 m_styleTree.resolveScopedKeyframesRules(e, stack); 739 if (stack.isEmpty()) 742 for (size_t i = 0; i < stack.size(); ++i) { 743 if (const StyleRuleKeyframes* keyframesRule = stack.at(i)->keyframeStylesForAnimation(animationName)) [all...] |
/art/runtime/ |
debugger.cc | 75 AllocRecordStackTraceElement stack[kMaxAllocRecordStackDepth]; // Unused entries have NULL method. member in struct:art::AllocRecord 79 while (depth < kMaxAllocRecordStackDepth && stack[depth].method != NULL) { [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
pprof | 37 # <count> <stack trace> 625 # Remove uniniteresting stack items 641 # each stack trace so a given entry exists at most once. [all...] |
/external/chromium/chrome/browser/resources/ |
new_new_tab.js | 199 // Vertically stack the windows in a client. 200 var stack = document.createElement('div'); 201 stack.className = 'foreign-session-client item link'; 202 stack.textContent = name; 203 stack.sessionTag = client[0].sessionTag; 245 stack.appendChild(winSpan); 247 return stack; [all...] |
/bionic/libc/ |
Android.mk | 688 # libbionic_ssp.a - stack protector code 691 # The stack protector code needs to be compiled 692 # with -fno-stack-protector, since it modifies the 693 # stack canary. 698 LOCAL_CFLAGS := $(libc_common_cflags) -fno-stack-protector -Werror
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
BaseRecognizer.as | 190 * more information such as the stack frame with 355 * follow that rule reference on the stack; this amounts to 382 * that rule is pushed on a stack. Here are the various "local" 393 * and, hence, the follow context stack is: 662 /** Push a rule's follow set using our own hardcoded stack */
|
/external/ipsec-tools/src/racoon/ |
crypto_openssl.c | 479 STACK_OF(X509_INFO) *stack; 486 stack = PEM_X509_INFO_read_bio(bio, NULL, NULL, NULL); 488 if (!stack) { 491 for (i = 0; i < sk_X509_INFO_num(stack); ++i) { 492 info = sk_X509_INFO_value(stack, i); 500 sk_X509_INFO_pop_free(stack, X509_INFO_free); 781 /* free the whole stack. */ [all...] |
/external/sonivox/arm-wt-22k/lib_src/ |
eas_mdls.c | 2170 EAS_U32 stack[CDL_STACK_SIZE]; local [all...] |