/frameworks/support/documents-archive/src/android/support/provider/ |
DocumentArchive.java | 54 import java.util.Stack; 115 final Stack<ZipEntry> stack = new Stack<>(); local 129 stack.push(entry); 137 while (stack.size() > 0) { 138 entry = stack.pop(); 151 // fake ZipEntry and add it on top of the stack to process it next. 156 stack.push(parentEntry);
|
/packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/ |
MimeMessage.java | 45 import java.util.Stack; 540 private final Stack<Object> stack = new Stack<Object>(); field in class:MimeMessage.MimeMessageBuilder 546 if (!c.isInstance(stack.peek())) { 547 throw new IllegalStateException("Internal stack error: " + "Expected '" 548 + c.getName() + "' found '" + stack.peek().getClass().getName() + "'"); 554 if (stack.isEmpty()) { 555 stack.push(MimeMessage.this); 560 ((Part)stack.peek()).setBody(m) [all...] |
/packages/services/Telephony/src/com/android/phone/common/mail/internet/ |
MimeMessage.java | 44 import java.util.Stack; 539 private final Stack<Object> stack = new Stack<Object>(); field in class:MimeMessage.MimeMessageBuilder 545 if (!c.isInstance(stack.peek())) { 546 throw new IllegalStateException("Internal stack error: " + "Expected '" 547 + c.getName() + "' found '" + stack.peek().getClass().getName() + "'"); 553 if (stack.isEmpty()) { 554 stack.push(MimeMessage.this); 559 ((Part)stack.peek()).setBody(m) [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
BufferedTreeNodeStream.cs | 150 /** <summary>Stack of indexes used for push/pop calls</summary> */ 151 protected Stack<int> calls; 428 calls = new Stack<int>(); 436 * Return top of stack (return index).
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
BufferedTreeNodeStream.cs | 159 /** <summary>Stack of indexes used for push/pop calls</summary> */ 160 protected Stack<int> calls; 509 calls = new Stack<int>(); 517 * Return top of stack (return index).
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudformation/ |
connection.py | 24 from boto.cloudformation.stack import Stack, StackSummary, StackEvent 25 from boto.cloudformation.stack import StackResource, StackResourceSummary 44 of resources as a single unit called a stack. AWS CloudFormation 45 creates and deletes all member resources of the stack together and 105 Helper that creates JSON parameters needed by a Stack Create or 106 Stack Update call. 110 The name associated with the stack. The name must be unique within your 129 an S3 bucket in the same region as the stack. For more information, 138 parameters for the stack. A 3-tuple (key, value, bool) may be used t [all...] |
/external/clang/lib/CodeGen/ |
CGDecl.cpp | 460 Address Stack; 461 CallStackRestore(Address Stack) : Stack(Stack) {} 463 llvm::Value *V = CGF.Builder.CreateLoad(Stack); 903 /// These turn into simple stack objects, or GlobalValues depending on target. [all...] |
/external/clang/lib/Format/ |
UnwrappedLineParser.cpp | 39 ScopedDeclarationState(UnwrappedLine &Line, std::vector<bool> &Stack, 41 : Line(Line), Stack(Stack) { 43 Stack.push_back(MustBeDeclaration); 46 Stack.pop_back(); 47 if (!Stack.empty()) 48 Line.MustBeDeclaration = Stack.back(); 55 std::vector<bool> &Stack; 318 // Keep a stack of positions of lbrace tokens. We will [all...] |
FormatToken.cpp | 133 State.Stack.back().AvoidBinPacking = true;
|
/external/compiler-rt/lib/ubsan/ |
ubsan_diag.cc | 34 // We can only use slow unwind, as we don't have any information about stack 37 // fetch stack top/bottom information if we have it (e.g. if we're running 41 BufferedStackTrace stack; 42 stack.Unwind(kStackTraceMax, pc, bp, 0, 0, 0, false); 43 stack.Print(); 331 // global, stack variable, or dynamic allocation, then do so. 425 SymbolizedStackHolder Stack(Symbolizer::GetOrInit()->SymbolizePC(PC)); 426 const AddressInfo &AI = Stack.get()->info;
|
/external/proguard/src/proguard/optimize/peephole/ |
MethodInliner.java | 78 private Stack inliningMethods = new Stack(); 282 // Go over the parameter types backward, storing the stack entries 552 // is invoked with an empty stack.
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/ |
DebugGrammarLexer.cs | 11 using Stack = System.Collections.Generic.Stack<object>;
|
ProfileGrammarLexer.cs | 11 using Stack = System.Collections.Generic.Stack<object>;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/ |
SimpleCLexer.java | 4 import java.util.Stack;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/ |
SimpleCLexer.java | 4 import java.util.Stack;
|
/libcore/ojluni/src/main/java/sun/net/www/http/ |
KeepAliveCache.java | 176 * bottom of the stack (the least-recently used first). 240 class ClientVector extends java.util.Stack<KeepAliveEntry> {
|
/external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
TransformerImpl.java | 27 import java.util.Stack; 185 * A node vector used as a stack to track the current 194 /** The top of the currentTemplateElements stack. */ 198 * A node vector used as a stack to track the current 204 Stack m_currentMatchTemplates = new Stack(); 207 * A node vector used as a stack to track the current 243 * Stack for the purposes of flagging infinite recursion with 246 Stack m_attrSetStack = null; 322 * A stack of current template modes [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/ |
Java.stg | 70 import java.util.Stack; [all...] |
/external/clang/lib/Sema/ |
Sema.cpp | 129 // Initilization of data sharing attributes stack for OpenMP 287 // Destroys data sharing attributes stack for OpenMP 753 SmallVector<Module *, 2> Stack; 754 Stack.push_back(CurrentModule); 755 while (!Stack.empty()) { 756 Module *Mod = Stack.pop_back_val(); 767 Stack.append(Mod->submodule_begin(), Mod->submodule_end()); [all...] |
/external/libpcap/ |
grammar.c | 784 /* The OS might guarantee only one guard page at the bottom of the stack, 787 to allow for a few compiler-allocated temporary stack slots. */ 824 /* A type that is properly aligned for any stack member. */ 831 /* The size of the maximum gap between one aligned stack and the next. */ 842 /* Relocate STACK from its old location to the new one. The 844 elements in the stack, and YYPTR gives the new location of the 845 stack. Advance YYPTR to a properly aligned location for the next 846 stack. */ 847 # define YYSTACK_RELOCATE(Stack_alloc, Stack) \ 851 YYCOPY (&yyptr->Stack_alloc, Stack, yysize); [all...] |
/cts/tools/dasm/src/java_cup/ |
parser.java | 303 java.util.Stack stack, 308 return action_obj.CUP$do_action(act_num, parser, stack, top); 430 java.util.Stack CUP$stack, 452 ((java_cup.runtime.str_token)CUP$result).str_val = (/*the_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val; 460 ((java_cup.runtime.str_token)CUP$result).str_val = (/*the_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val; 468 ((java_cup.runtime.str_token)CUP$result).str_val = (/*the_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val; 478 if (symbols.get((/*non_term_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val) != null) 481 lexer.emit_error( "Symbol \"" + (/*non_term_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val [all...] |
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
RecognizerSharedState.as | 12 * Stack grows upwards. When it hits the max, it grows 2x in size
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CPP/ |
CPP.stg | 1157 protected Stack <scope.name>_stack = new Stack();<\n> 1166 protected Stack <scope.name>_stack = new Stack();<\n> [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Perl5/ |
Perl5.stg | [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/opsworks/ |
layer1.py | 75 You can still specify Chef 0.9 for your stack, but new features 116 have a Manage permissions level for the stack or an attached 138 Assigns one of the stack's registered Amazon EBS volumes to a 140 the stack by calling RegisterVolume. For more information, see 144 have a Manage permissions level for the stack, or an attached 164 Associates one of the stack's registered Elastic IP addresses 166 registered with the stack by calling RegisterElasticIp. For 170 have a Manage permissions level for the stack, or an attached 203 have a Manage permissions level for the stack, or an attached 236 Creates a clone of a specified stack. For more information [all...] |