Searched defs:stack (Results 1 - 25 of 419) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3collections.c81 static void antlr3StackFree (pANTLR3_STACK stack);
82 static void * antlr3StackPop (pANTLR3_STACK stack);
83 static void * antlr3StackGet (pANTLR3_STACK stack, ANTLR3_INTKEY key);
84 static ANTLR3_BOOLEAN antlr3StackPush (pANTLR3_STACK stack, void * element, void (ANTLR3_CDECL *freeptr)(void *));
85 static ANTLR3_UINT32 antlr3StackSize (pANTLR3_STACK stack);
86 static void * antlr3StackPeek (pANTLR3_STACK stack);
966 pANTLR3_STACK stack; local
970 stack = (pANTLR3_STACK)ANTLR3_MALLOC((size_t)sizeof(ANTLR3_STACK));
972 if (stack == NULL)
979 stack
999 antlr3StackSize(pANTLR3_STACK stack) argument
1006 antlr3StackFree(pANTLR3_STACK stack) argument
1018 antlr3StackPop(pANTLR3_STACK stack) argument
1035 antlr3StackGet(pANTLR3_STACK stack, ANTLR3_INTKEY key) argument
1041 antlr3StackPeek(pANTLR3_STACK stack) argument
1047 antlr3StackPush(pANTLR3_STACK stack, void * element, void (ANTLR3_CDECL *freeptr)(void *)) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DStackExtensions.cs45 public static T elementAt<T>( this Stack<T> stack, int index ) argument
47 return stack.ElementAt( index );
51 public static T peek<T>( this Stack<T> stack )
53 return stack.Peek();
57 public static T pop<T>( this Stack<T> stack )
59 return stack.Pop();
63 public static void push<T>( this Stack<T> stack, T obj ) argument
65 stack.Push( obj );
69 public static int size<T>( this Stack<T> stack )
71 return stack
75 setSize( this Stack<T> stack, int size ) argument
[all...]
/external/apache-http/src/org/apache/http/impl/client/
H A DClientParamsStack.java42 * Represents a stack of parameter collections.
43 * When retrieving a parameter, the stack is searched in a fixed order
44 * and the first match returned. Setting parameters via the stack is
45 * not supported. To minimize overhead, the stack has a fixed size and
47 * The supported stack entries, sorted by increasing priority, are:
69 * Each stack entry may be <code>null</code>. That is preferable over
101 * Creates a new parameter stack from elements.
120 * Creates a copy of a parameter stack.
121 * The new stack will have the exact same entries as the argument stack
126 ClientParamsStack(ClientParamsStack stack) argument
147 ClientParamsStack(ClientParamsStack stack, HttpParams aparams, HttpParams cparams, HttpParams rparams, HttpParams oparams) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DStylesheetHandler.java62 * a ContentHandler stack, and pushing appropriate content
219 * Utility function to see if the stack contains the given URL.
221 * @param stack non-null reference to a Stack.
224 * @return true if the stack contains the url argument.
226 private boolean stackContains(Stack stack, String url) argument
229 int n = stack.size();
234 String url2 = (String) stack.elementAt(i);
401 * stylesheet being parsed. The stack needs to be popped
1040 * (warning: I worry that this should be in a stack).
1048 * (warning: I worry that this should be in a stack)
[all...]
/external/bison/examples/calc++/
H A Dstack.hh34 ** \file ../../../../examples/calc++/stack.hh
35 ** Define the yy::stack class.
45 /* Line 34 of stack.hh */
46 #line 47 "../../../../examples/calc++/stack.hh"
48 class stack class in namespace:yy
55 stack () : seq_ () function in class:yy::stack
59 stack (unsigned int n) : seq_ (n) function in class:yy::stack
106 /// Present a slice of the top of a stack.
107 template <class T, class S = stack<T> >
111 slice (const S& stack, unsigne argument
[all...]
/external/bison/lib/
H A Dtimevar.c146 /* If this variable is timed independently of the timing stack,
158 the timing stack. */
162 /* An element on the timing stack. Elapsed time is attributed to the
163 topmost timing variable on the stack. */
167 /* The timing variable at this stack level. */
170 /* The next lower timing variable context in the stack. */
178 /* The top of the timing stack. */
179 static struct timevar_stack_def *stack; variable in typeref:struct:timevar_stack_def
185 /* The time at which the topmost element on the timing stack was
276 /* Push TIMEVAR onto the timing stack
[all...]
/external/bluetooth/bluedroid/btif/src/
H A Dbluetooth.c487 bluetooth_device_t *stack = malloc(sizeof(bluetooth_device_t) ); local
488 memset(stack, 0, sizeof(bluetooth_device_t) );
489 stack->common.tag = HARDWARE_DEVICE_TAG;
490 stack->common.version = 0;
491 stack->common.module = (struct hw_module_t*)module;
492 stack->common.close = close_bluetooth_stack;
493 stack->get_bluetooth_interface = bluetooth__get_bluetooth_interface;
494 *abstraction = (struct hw_device_t*)stack;
/external/bluetooth/bluedroid/gki/ulinux/
H A Dgki_ulinux.c358 ** stack - (input) pointer to the top of the stack (highest memory location)
359 ** stacksize - (input) size of the stack allocated for the task
368 UINT8 GKI_create_task (TASKPTR task_entry, UINT8 task_id, INT8 *taskname, UINT16 *stack, UINT16 stacksize) argument
375 UNUSED(stack);
379 (char*) taskname, (int) stack, (int)stacksize);
459 (int)stack,
723 ** NOTE This function is NOT called by the Broadcom stack and
940 ** NOTE The Broadcom upper stack and profiles may run as a single task.
1101 ** NOTE This function is called by the Broadcom stack whe
[all...]
/external/checkpolicy/
H A Dmodule_compiler.c48 /* keep track of the last item added to the stack */
92 /* reset the scoping stack */
104 /* Given the current parse stack, returns 1 if a declaration would be
107 * current scope stack then this would return a 0.
601 /* Given the current parse stack, returns 1 if a requirement would be
1225 static int is_scope_in_stack(scope_datum_t * scope, scope_stack_t * stack) argument
1228 if (stack == NULL) {
1231 if (stack->type == 1) {
1232 avrule_decl_t *decl = stack->decl;
1243 /* not within scope of this stack, s
1271 is_perm_in_stack(uint32_t perm_value, uint32_t class_value, scope_stack_t * stack) argument
1482 copy_requirements(avrule_decl_t * dest, scope_stack_t * stack) argument
[all...]
/external/chromium_org/base/debug/
H A Dtrace_event_memory.cc24 // entries on the pseudo-stack per scope.
49 // Records a stack of TRACE_MEMORY events. One per thread is required.
69 TraceMemoryStack* stack = static_cast<TraceMemoryStack*>(value); local
70 delete stack;
86 TraceMemoryStack* stack =
88 delete stack;
98 // Returns the thread-local trace memory stack for the current thread, creating
102 TraceMemoryStack* stack = local
105 if (!stack) {
106 stack
288 TraceMemoryStack* stack = GetTraceMemoryStack(); local
295 TraceMemoryStack* stack = GetTraceMemoryStack(); local
[all...]
/external/chromium_org/chrome/browser/profile_resetter/
H A Djtl_interpreter.cc89 std::vector<const base::Value*>* stack() { return &stack_; } function in class:__anon4503::ExecutionContext
100 // A stack of Values, indicating a navigation path from the root node of
128 context->stack()->push_back(&i.value());
130 context->stack()->pop_back();
152 context->stack()->push_back(&i.value());
154 context->stack()->pop_back();
161 context->stack()->push_back(*i);
163 context->stack()->pop_back();
183 context->stack()->pop_back();
185 context->stack()
[all...]
/external/chromium_org/chrome/browser/sync/
H A Dprofile_sync_service_bookmark_unittest.cc11 #include <stack>
709 std::stack<int64> stack; local
710 stack.push(bookmark_bar_id());
711 while (!stack.empty()) {
712 int64 id = stack.top();
713 stack.pop();
720 stack.push(gnode.GetSuccessorId());
722 stack.push(gnode.GetFirstChildId());
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Dmetadata_database.cc8 #include <stack>
308 std::vector<int64> stack; local
309 stack.push_back(root_tracker_id);
310 while (!stack.empty()) {
311 int64 tracker_id = stack.back();
312 stack.pop_back();
313 AppendContents(index->GetFileTrackerIDsByParent(tracker_id), &stack);
1579 std::vector<int64> stack;
1581 index_->GetFileTrackerIDsByParent(app_root_tracker.tracker_id()), &stack);
1582 while (!stack
[all...]
/external/chromium_org/chrome/browser/ui/panels/
H A Dbase_panel_browser_test.cc444 StackedPanelCollection* stack) {
448 stack,
442 CreateStackedPanel(const std::string& name, const gfx::Rect& bounds, StackedPanelCollection* stack) argument
H A Dpanel.cc469 // panel has been expanded. If the panel is in a stack, the titlebar click
502 StackedPanelCollection* Panel::stack() const { function in class:Panel
H A Dpanel_drag_browsertest.cc113 // Return the delta needed to drag |panel1| to stack to the bottom of
135 // Return the delta needed to drag |panel1| to stack to the top of |panel2|.
139 StackedPanelCollection* stack1 = panel1->stack();
1557 // 1) P1 and P2 form a stack.
1592 // 1) P1 and P2 form a stack.
1664 // 1) P2 and P1 form a stack.
1699 // 1) P2 and P1 form a stack.
1807 StackedPanelCollection* stack = panel_manager->CreateStack(); local
1809 Panel* panel1 = CreateStackedPanel("1", panel1_initial_bounds, stack);
1811 Panel* panel2 = CreateStackedPanel("2", panel2_initial_bounds, stack);
1868 StackedPanelCollection* stack = panel_manager->CreateStack(); local
1931 StackedPanelCollection* stack = panel_manager->CreateStack(); local
1988 StackedPanelCollection* stack = panel_manager->CreateStack(); local
2189 StackedPanelCollection* stack = panel_manager->CreateStack(); local
2278 StackedPanelCollection* stack = panel_manager->CreateStack(); local
2340 StackedPanelCollection* stack = panel_manager->CreateStack(); local
2390 StackedPanelCollection* stack = panel_manager->CreateStack(); local
2442 StackedPanelCollection* stack = panel_manager->CreateStack(); local
2502 StackedPanelCollection* stack = panel_manager->CreateStack(); local
2556 StackedPanelCollection* stack = panel_manager->CreateStack(); local
2796 StackedPanelCollection* stack = panel_manager->CreateStack(); local
2847 StackedPanelCollection* stack = panel_manager->CreateStack(); local
2931 StackedPanelCollection* stack = panel_manager->CreateStack(); local
3045 StackedPanelCollection* stack = panel_manager->CreateStack(); local
[all...]
H A Dpanel_drag_controller.cc85 StackedPanelCollection* stack = panel->stack(); local
86 if (stack) {
89 stack->panels().begin();
90 iter != stack->panels().end(); ++iter) {
163 // Check if the dragging panel can be moved out the stack. Note that this
172 // Check if the dragging panel can stack with other panel or stack.
247 // when the stack has more than 2 panels and the 2nd top panel is unstacked
249 // remain in the stack
634 StackedPanelCollection* stack = dragging_panel_->stack(); local
720 StackedPanelCollection* stack = panel->stack(); local
769 StackedPanelCollection* stack = panel->stack(); local
[all...]
H A Dpanel_manager.cc53 // stack or panel we want to seacrh first for adding new panel.
58 // When there're ties, the right-most stack will appear first.
64 // In the event of another draw, the top-most stack will appear first.
70 // The stack with more panels will appear first.
305 // If there're stacks, try to find a stack that can fit new panel.
308 // 1) Search from the stack with more panels to the stack with least panels.
310 // most stack to the left-most stack.
311 // 3) Among the stack wit
318 StackedPanelCollection* stack = *iter; local
412 StackedPanelCollection* stack = local
433 StackedPanelCollection* stack = new StackedPanelCollection(this); local
438 RemoveStack(StackedPanelCollection* stack) argument
[all...]
H A Dpanel_resize_browsertest.cc516 StackedPanelCollection* stack = panel_manager->CreateStack(); local
518 Panel* panel1 = CreateStackedPanel("1", panel1_initial_bounds, stack);
520 Panel* panel2 = CreateStackedPanel("2", panel2_initial_bounds, stack);
522 Panel* panel3 = CreateStackedPanel("3", panel3_initial_bounds, stack);
525 ASSERT_EQ(3, stack->num_panels());
H A Dstacked_panel_browsertest.cc24 StackedPanelCollection* stack = panel_manager->CreateStack(); local
26 Panel* panel1 = CreateStackedPanel("1", panel1_initial_bounds, stack);
28 Panel* panel2 = CreateStackedPanel("2", panel2_initial_bounds, stack);
30 Panel* panel3 = CreateStackedPanel("3", panel3_initial_bounds, stack);
39 // Check that all 3 panels are in a stack.
43 ASSERT_EQ(3, stack->num_panels());
44 EXPECT_EQ(stack, panel1->stack());
45 EXPECT_EQ(stack, panel2->stack());
118 StackedPanelCollection* stack = panel_manager->CreateStack(); local
215 StackedPanelCollection* stack = panel_manager->CreateStack(); local
298 StackedPanelCollection* stack = panel_manager->CreateStack(); local
345 StackedPanelCollection* stack = panel_manager->CreateStack(); local
452 StackedPanelCollection* stack = panel_manager->CreateStack(); local
500 StackedPanelCollection* stack = panel_manager->CreateStack(); local
575 StackedPanelCollection* stack = panel_manager->CreateStack(); local
601 StackedPanelCollection* stack = panel_manager->CreateStack(); local
817 StackedPanelCollection* stack = panel_manager->stacks().front(); local
844 StackedPanelCollection* stack = panel_manager->stacks().front(); local
859 StackedPanelCollection* stack = panel_manager->CreateStack(); local
930 StackedPanelCollection* stack = panel_manager->stacks().front(); local
946 StackedPanelCollection* stack = panel_manager->CreateStack(); local
1152 StackedPanelCollection* stack = panel_manager->CreateStack(); local
1185 StackedPanelCollection* stack = panel_manager->CreateStack(); local
1249 StackedPanelCollection* stack = panel_manager->CreateStack(); local
1284 StackedPanelCollection* stack = panel_manager->CreateStack(); local
1310 StackedPanelCollection* stack = panel_manager->CreateStack(); local
1351 StackedPanelCollection* stack = panel_manager->CreateStack(); local
1379 StackedPanelCollection* stack = panel_manager->CreateStack(); local
1444 StackedPanelCollection* stack = panel_manager->CreateStack(); local
[all...]
H A Dstacked_panel_drag_handler.cc20 StackedPanelCollection* stack = panel->stack(); local
21 DCHECK(stack);
23 // If the panel is in its original stack, only top panel is allowed to drag.
24 if (in_orginal_collection && panel != stack->top_panel())
27 // Find out if all panels in the stack are being dragged.
30 stack->panels().begin();
31 iter != stack->panels().end(); ++iter) {
40 // If not all panels in the stack are being dragged, it means that these
41 // panels being dragged have just been added to this stack
54 StackedPanelCollection* stack = panel->stack(); local
[all...]
/external/chromium_org/chrome/browser/ui/views/panels/
H A Dpanel_view.cc515 // in a stack.
517 if (!panel_->stack())
579 // panel window has the same problem as the stack window. However,
834 StackedPanelCollection* stack = panel_->stack(); local
835 if (stack) {
839 if (panel_->stack()->GetPanelBelow(panel_.get())) {
851 Panel* below_panel = stack->GetPanelBelow(panel_.get());
874 StackedPanelCollection* stack = panel_->stack(); local
[all...]
/external/chromium_org/components/nacl/loader/nonsfi/
H A Dirt_exception_handling.cc65 int IrtExceptionStack(void* stack, size_t size) { argument
66 // TODO(uekawa): Implement this function so that the exception stack
68 // we don't switch stack, which means we can't handle stack overflow

Completed in 8332 milliseconds

1234567891011>>