/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
CommonTreeNodeStream.cs | 58 /** <summary>Stack of indexes used for push/pop calls</summary> */ 59 Stack<int> _calls; 173 _calls = new Stack<int>(); 180 * Return top of stack (return index).
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
CommonTreeNodeStream.cs | 60 /** <summary>Stack of indexes used for push/pop calls</summary> */ 61 Stack<int> _calls; 201 _calls = new Stack<int>(); 208 * Return top of stack (return index).
|
/external/clang/include/clang/Serialization/ |
ModuleManager.h | 85 Stack.reserve(N); 92 /// \brief The stack used when marking the imports of a particular module 94 SmallVector<ModuleFile *, 4> Stack;
|
/frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/settings/ |
SettingsExampleFragment.java | 31 import java.util.Stack;
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-m68hc11/ |
far-hc12.s | 11 lds #stack-1 22 cpx #0xabcd ; Stack parameter preserved 75 jmp 0,y ; We have a 'call/rtc' stack layout now 82 stack: label
|
/development/samples/Wiktionary/src/com/example/android/wiktionary/ |
LookupActivity.java | 45 import java.util.Stack; 64 * History stack of previous words browsed in this session. This is 68 private Stack<String> mHistory = new Stack<String>(); 115 * stack. If we don't have any remaining history, the key behaves normally 120 // Handle back key as long we have a history stack 131 // Pop last entry off stack and start loading 144 * history stack if requested. The navigation happens on a background thread 148 * @param pushHistory If true, push the current word onto history stack. 151 // Push any current word onto the history stack [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
RandomPhrase.java | 43 import java.util.Stack; 73 Stack ruleInvocationStack = new Stack(); 101 //System.out.println("stack depth="+ruleInvocationStack.size());
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
ViewTransformationHelper.java | 30 import com.android.systemui.statusbar.stack.StackStateAnimator; 32 import java.util.Stack; 221 Stack<View> stack = new Stack<>(); local 223 stack.push(viewRoot); 224 while (!stack.isEmpty()) { 225 View child = stack.pop(); 243 stack.push(group.getChildAt(i));
|
/packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/ |
MtpDeviceIndexRunnable.java | 15 import java.util.Stack; 162 Stack<Integer> pendingDirectories = new Stack<Integer>();
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/ |
BinaryDictIOUtils.java | 28 import java.util.Stack; 83 Stack<Position> stack = new Stack<>(); local 87 stack.push(initPos); 89 while (!stack.empty()) { 90 Position p = stack.peek(); 106 stack.pop(); 124 stack.pop(); 132 stack.push(childrenPos) [all...] |
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/ |
ViewHierarchyLoader.java | 34 import java.util.Stack; 64 Stack<ViewNode> stack = new Stack<ViewNode>(); local 77 stack.push(lastNode); 78 } else if (!stack.isEmpty()) { 81 stack.pop(); 102 if (!stack.isEmpty()) { 103 final ViewNode parent = stack.peek();
|
/external/clang/lib/Sema/ |
SemaOpenMP.cpp | 35 // Stack of data-sharing attributes for variables 66 /// \brief Stack for tracking declarations used in OpenMP directives and 131 /// \brief Stack of used declaration and their data-sharing attributes. 132 StackTy Stack; 149 : Stack(1), ClauseKindMode(OMPC_unknown), SemaRef(S), 160 Stack.push_back(SharingMapTy(DKind, DirName, CurScope, Loc)); 161 Stack.back().DefaultAttrLoc = Loc; 165 assert(Stack.size() > 1 && "Data-sharing attributes stack is empty!"); 166 Stack.pop_back() [all...] |
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/ |
HtmlTree.java | 31 import java.util.Stack; 105 private final Stack<Integer> begins = new Stack<Integer>(); 106 private final Stack<Integer> ends = new Stack<Integer>(); 268 int stack = 0; local 279 stack++; 285 if (stack == 0) { 288 stack--; 293 if (stack == 0 && sb.length() >= chunkSize) 979 private Stack<Integer> stack; typedefs [all...] |
/packages/services/Car/car-ui-provider/src/android/car/ui/provider/ |
DrawerController.java | 38 import java.util.Stack; 73 private final Stack<String> mSubscriptionIds = new Stack<>(); 74 private final Stack<CharSequence> mTitles = new Stack<>(); 85 private final Stack<Integer> mClickCountStack = new Stack<>(); 348 // subscription stack.
|
/external/llvm/lib/Target/X86/ |
X86FloatingPoint.cpp | 1 //===-- X86FloatingPoint.cpp - Floating point Reg -> Stack converter ------===// 11 // pseudo registers into register stack instructions. This pass uses live 15 // The x87 hardware tracks liveness of the stack registers, so it is necessary 18 // identical stack positions. Instructions are inserted at the end of each basic 65 memset(Stack, 0, sizeof(Stack)); 86 // LiveBundle. It represents a set of CFG edges where the live FP stack 87 // registers must be allocated identically in the x87 stack. 94 // but the exact mapping of FP registers to stack slots is fixed later. 100 // stack order has not yet been fixed [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/ |
Delphi.stg | 748 <ruleDescriptor.useScopes:{<it>Stack.Push(T<it>Scope.Create);}; separator="\n"> 749 <ruleDescriptor.ruleScope:{<it.name>Stack.Push(T<it.name>Scope.Create);}; separator="\n"> 753 <ruleDescriptor.useScopes:{<it>Stack.Pop();}; separator="\n"> 754 <ruleDescriptor.ruleScope:{<it.name>Stack.Pop;}; separator="\n"> [all...] |
/external/e2fsprogs/intl/ |
plural.c | 374 /* A type that is properly aligned for any stack member. */ 384 /* The size of the maximum gap between one aligned stack and the next. */ 417 /* Relocate STACK from its old location to the new one. The 419 elements in the stack, and YYPTR gives the new location of the 420 stack. Advance YYPTR to a properly aligned location for the next 421 stack. */ 422 # define YYSTACK_RELOCATE(Stack) \ 426 YYCOPY (&yyptr->Stack, Stack, yysize); \ 427 Stack = &yyptr->Stack; [all...] |
/toolchain/binutils/binutils-2.25/intl/ |
plural.c | 398 /* A type that is properly aligned for any stack member. */ 408 /* The size of the maximum gap between one aligned stack and the next. */ 441 /* Relocate STACK from its old location to the new one. The 443 elements in the stack, and YYPTR gives the new location of the 444 stack. Advance YYPTR to a properly aligned location for the next 445 stack. */ 446 # define YYSTACK_RELOCATE(Stack) \ 450 YYCOPY (&yyptr->Stack, Stack, yysize); \ 451 Stack = &yyptr->Stack; [all...] |
/development/samples/XmlAdapters/src/com/example/android/xmladapters/ |
XmlDocumentProvider.java | 46 import java.util.Stack; 381 Stack<Integer> pathLengthStack = new Stack<Integer>();
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
DOMBuilder.java | 23 import java.util.Stack; 66 protected Stack m_elemStack = new Stack();
|
QName.java | 23 import java.util.Stack; 226 * using the given namespace stack. The default namespace is 230 * @param namespaces Namespace stack to use to resolve namespace 232 public QName(String qname, Stack namespaces) 239 * using the given namespace stack. The default namespace is 243 * @param namespaces Namespace stack to use to resolve namespace 247 public QName(String qname, Stack namespaces, boolean validate) 406 * using the given namespace stack. The default namespace is 419 * using the given namespace stack. The default namespace is
|
/external/doclava/src/com/google/doclava/apicheck/ |
XmlApiFile.java | 40 import java.util.Stack; 48 private Stack<ClassInfo> mClassScope = new Stack<ClassInfo>();
|
/external/libgdx/extensions/gdx-jnigen/src/com/badlogic/gdx/jnigen/parsing/ |
RobustJavaMethodParser.java | 36 import java.util.Stack;
76 Stack<TypeDeclaration> classStack = new Stack<TypeDeclaration>();
|
/external/testng/src/main/java/org/testng/reporters/ |
XMLStringBuffer.java | 5 import java.util.Stack; 12 * and popping tags from a stack maintained internally. 26 /** The stack of tags to make sure XML document is well formed. */ 27 private final Stack<Tag> m_tagStack = new Stack<>();
|
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
FilterGraph.java | 26 import java.util.Stack; 192 Stack<Filter> filterStack = new Stack<Filter>(); 208 // Push connected filters onto stack
|