/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
NotificationHeaderViewWrapper.java | 43 import java.util.Stack; 130 Stack<View> stack = new Stack<>(); local 131 stack.push(mView); 132 while (!stack.isEmpty()) { 133 View child = stack.pop(); 139 stack.push(group.getChildAt(i));
|
/frameworks/base/services/core/java/com/android/server/audio/ |
MediaFocusControl.java | 36 import java.util.Stack; 70 * Notify top of audio focus stack that it lost focus (regardless of possibility to reassign 71 * focus), remove it from the stack, and clear the remote control display. 76 // notify the current focus owner it lost focus after removing it from stack 88 // notify the top of the stack it gained focus 97 * Focus is requested, propagate the associated loss throughout the stack. 98 * @param focusGain the new focus gain that will later be added at the top of the stack 101 // going through the audio focus stack to signal new focus, traversing order doesn't 109 private final Stack<FocusRequester> mFocusStack = new Stack<FocusRequester>() [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
StateManager.java | 31 import java.util.Stack; 44 private Stack<StateEntry> mStack = new Stack<StateEntry>(); 199 + " is not at the top of the stack: " + state + ", " 230 + " is not at the top of the stack: " + oldState + ", "
|
/cts/tools/dasm/src/java_cup/runtime/ |
lr_parser.java | 4 import java.util.Stack; 8 * parsers act by shifting input onto a parse stack until the symbols 10 * stack. Once this occurs, a reduce is performed. This involves removing 18 * on top of the parse stack (stored as part of a symbol object representing 23 * onto the stack. When the parser reduces, it pops the handle (right hand 24 * side of a production) off the stack. This leaves the parser in the state 29 * (also containing the new state) onto the stack.<p> 68 * pushed onto the stack for the reduce. 158 * is on top of the stack) and the given terminal is next on the input. 180 * the stack. The new top of stack indicates a state. This table is 242 protected Stack stack = new Stack(); field in class:lr_parser [all...] |
/external/llvm/lib/CodeGen/ |
PseudoSourceValue.cpp | 27 "Stack", "GOT", "JumpTable", "ConstantPool", "FixedStack", 101 : StackPSV(PseudoSourceValue::Stack), GOTPSV(PseudoSourceValue::GOT),
|
MachineTraceMetrics.cpp | 779 SmallVector<const MachineBasicBlock*, 8> Stack; 785 Stack.push_back(MBB); 798 while (!Stack.empty()) { 799 MBB = Stack.pop_back_val(); [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/compiler/ |
misc.py | 31 class Stack: 33 self.stack = [] 34 self.pop = self.stack.pop 36 return len(self.stack) 38 self.stack.append(elt) 40 return self.stack[-1] 42 return self.stack[index]
|
/prebuilts/gdb/linux-x86/lib/python2.7/compiler/ |
misc.py | 31 class Stack: 33 self.stack = [] 34 self.pop = self.stack.pop 36 return len(self.stack) 38 self.stack.append(elt) 40 return self.stack[-1] 42 return self.stack[index]
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/ |
misc.py | 31 class Stack: 33 self.stack = [] 34 self.pop = self.stack.pop 36 return len(self.stack) 38 self.stack.append(elt) 40 return self.stack[-1] 42 return self.stack[index]
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/ |
misc.py | 31 class Stack: 33 self.stack = [] 34 self.pop = self.stack.pop 36 return len(self.stack) 38 self.stack.append(elt) 40 return self.stack[-1] 42 return self.stack[index]
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-m68hc11/ |
far-hc11.s | 11 lds #stack 22 cpx #0xabcd ; Stack parameter preserved 104 stack: label
|
/external/giflib/ |
dgif_lib.c | 773 Private->StackPtr = 0; /* No pixels on the pixel stack. */ 796 GifByteType *Stack, *Suffix; 803 Stack = Private->Stack; 813 /* Let pop the stack off before continueing to read the GIF file: */ 815 Line[i++] = Stack[--StackPtr]; 846 * pixels on our stack. If we done, pop the stack in reverse 847 * (thats what stack is good for!) order to output. */ 857 Stack[StackPtr++] = DGifGetPrefixChar(Prefix [all...] |
/packages/apps/Launcher3/src/com/android/launcher3/ |
IconCache.java | 60 import java.util.Stack; 286 Stack<LauncherActivityInfoCompat> appsToUpdate = new Stack<>(); 349 Stack<LauncherActivityInfoCompat> appsToAdd = new Stack<>(); 758 private final Stack<LauncherActivityInfoCompat> mAppsToAdd; 759 private final Stack<LauncherActivityInfoCompat> mAppsToUpdate; 763 Stack<LauncherActivityInfoCompat> appsToAdd [all...] |
/external/llvm/lib/Object/ |
MachOObjectFile.cpp | [all...] |
/external/bison/data/ |
stack.hh | 21 b4_output_begin([b4_dir_prefix[]stack.hh]) 22 b4_copyright([Stack handling for Bison parsers in C++], 26 ** \file ]b4_dir_prefix[stack.hh 27 ** Define the ]b4_namespace_ref[::stack class. 30 ]b4_cpp_guard_open([b4_dir_prefix[]stack.hh])[ 36 class stack 43 stack () : seq_ () 47 stack (unsigned int n) : seq_ (n) 94 /// Present a slice of the top of a stack. 95 template <class T, class S = stack<T> [all...] |
glr.c | 30 # Stack parameters. 547 if the built-in stack extension method is used). 557 /* Minimum number of free items on the stack allowed after an 560 stack is expanded, thus insuring that all necessary pointers get 687 /** Preceding state in this stack */ 729 /** Type of the items in the GLR stack. The yyisState field 826 * and top stack item YYVSP. YYLVALP points to place to put semantic 1043 * stack #K of *STACKP. */ 1068 /** Initialize SET to a singleton set containing an empty stack. */ 1094 /** Initialize STACK to a single empty stack, with total maximu [all...] |
/external/proguard/src/proguard/evaluation/ |
BasicInvocationUnit.java | 34 * and it updates the stack for the invocation of a class member, 50 private Stack stack; field in class:BasicInvocationUnit 138 public void invokeMember(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction, Stack stack) 177 this.stack = stack; 179 this.stack = null; 190 setFieldValue(clazz, fieldrefConstant, stack.pop()); 196 setFieldClassValue(clazz, fieldrefConstant, stack.apop()) [all...] |
/external/v8/test/mjsunit/es6/ |
debug-evaluate-arrow-function-receiver.js | 28 print(e + e.stack); 57 // Stack-allocated receiver.
|
/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/ |
CollectionAndMapModifyStreamTest.java | 69 Stack<Integer> stack = new Stack<>(); local 70 stack.addAll(content); 71 collections.add(stack);
|
/dalvik/dx/src/com/android/dx/ssa/ |
SsaMethod.java | 35 import java.util.Stack; 757 // We push the parent first, then the child on the stack. 758 Stack<SsaBasicBlock> stack = new Stack<SsaBasicBlock>(); local 767 stack.add(null); // Start with null parent. 768 stack.add(rootBlock); 770 while (stack.size() > 0) { 771 SsaBasicBlock cur = stack.pop(); 772 SsaBasicBlock parent = stack.pop() 797 Stack<SsaBasicBlock> stack = new Stack<SsaBasicBlock>(); local [all...] |
/external/clang/lib/AST/ |
CXXInheritance.cpp | 561 SmallVector<OverriddenMethods, 4> Stack; 562 Stack.push_back(llvm::make_range(CanonM->begin_overridden_methods(), 564 while (!Stack.empty()) { 565 for (const CXXMethodDecl *OM : Stack.pop_back_val()) { 587 Stack.push_back(llvm::make_range(CanonOM->begin_overridden_methods(),
|
NestedNameSpecifier.cpp | 611 SmallVector<NestedNameSpecifier *, 4> Stack; 613 Stack.push_back(NNS); 614 while (!Stack.empty()) { 615 NestedNameSpecifier *NNS = Stack.pop_back_val(); 639 SaveSourceLocation(Stack.empty()? R.getEnd() : R.getBegin(),
|
/external/clang/lib/Frontend/ |
DiagnosticRenderer.cpp | 197 /// \brief Prints an include stack when appropriate for a particular 203 /// of customizing the formatting and display of the include stack. 207 /// \param Level The diagnostic level of the message this stack pertains to. 231 /// \brief Helper to recursivly walk up the include stack and print each layer 245 // import stack rather than the 249 // This location was imported by a module. Emit the module import stack. 261 /// \brief Emit the module import stack associated with the current location. 274 /// \brief Helper to recursivly walk up the import stack and print each layer 294 /// \brief Emit the module build stack, for cases where a module is (re-)built 297 ModuleBuildStack Stack = SM.getModuleBuildStack() [all...] |
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
SsaMethod.java | 36 import java.util.Stack; 758 // We push the parent first, then the child on the stack. 759 Stack<SsaBasicBlock> stack = new Stack<SsaBasicBlock>(); local 768 stack.add(null); // Start with null parent. 769 stack.add(rootBlock); 771 while (stack.size() > 0) { 772 SsaBasicBlock cur = stack.pop(); 773 SsaBasicBlock parent = stack.pop() 798 Stack<SsaBasicBlock> stack = new Stack<SsaBasicBlock>(); local [all...] |
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
nv50_ir_util.h | 232 class Stack 248 Stack() : size(0), limit(0), array(0) { } 249 ~Stack() { if (array) FREE(array); } 284 void moveTo(Stack&); // move all items to target (not like push(pop())) 414 Stack ids;
|