HomeSort by relevance Sort by last modified time
    Searched refs:stack (Results 1 - 25 of 1939) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/bintrees/bintrees/
stack.c 2 * stack.c
10 #include "stack.h"
15 node_stack_t *stack; local
17 stack = PyMem_Malloc(sizeof(node_stack_t));
18 stack->stack = PyMem_Malloc(sizeof(node_t *) * size);
19 stack->size = size;
20 stack->stackptr = 0;
21 return stack;
25 stack_delete(node_stack_t *stack)
    [all...]
stack.h 2 * stack.h
18 node_t **stack; member in struct:node_stack
22 void stack_delete(node_stack_t *stack);
23 void stack_push(node_stack_t *stack, node_t *node);
24 node_t *stack_pop(node_stack_t *stack);
25 int stack_is_empty(node_stack_t *stack);
26 void stack_reset(node_stack_t *stack);
stack.pxd 10 cdef extern from "stack.h":
14 void stack_delete(node_stack_t *stack)
15 void stack_push(node_stack_t *stack, node_t *node)
16 node_t *stack_pop(node_stack_t *stack)
17 int stack_is_empty(node_stack_t *stack)
18 void stack_reset(node_stack_t *stack)
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/result/
TestTest.java 28 * Test {@link Test#getFailureMessageFromStackTrace(String)} for an empty stack
31 final String stack = ""; local
32 assertEquals(stack, Test.getFailureMessageFromStackTrace(stack));
36 * Test {@link Test#getFailureMessageFromStackTrace(String)} for a one line stack
39 final String stack = "this is a line"; local
40 assertEquals(stack, Test.getFailureMessageFromStackTrace(stack));
44 * Test {@link Test#getFailureMessageFromStackTrace(String)} for a one line stack with a newline
48 final String stack = "this is a line\n" local
56 final String stack = "this is a line\\nthis is also a line"; local
64 final String stack = "this is a line\\nthis is also a line\\n oh look another line"; local
    [all...]
  /external/chromium_org/third_party/freetype/src/cff/
cf2stack.c 5 /* Adobe's code for emulating a CFF stack (body). */
58 CF2_Stack stack = NULL; local
61 if ( !FT_QNEW( stack ) )
64 stack->memory = memory;
65 stack->error = e;
66 stack->top = &stack->buffer[0]; /* empty stack */
69 return stack;
74 cf2_stack_free( CF2_Stack stack )
    [all...]
  /external/freetype/src/cff/
cf2stack.c 5 /* Adobe's code for emulating a CFF stack (body). */
58 CF2_Stack stack = NULL; local
61 if ( !FT_QNEW( stack ) )
64 stack->memory = memory;
65 stack->error = e;
66 stack->top = &stack->buffer[0]; /* empty stack */
69 return stack;
74 cf2_stack_free( CF2_Stack stack )
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/xmllite/
xmlnsstack_unittest.cc 44 XmlnsStack stack; local
46 EXPECT_EQ(std::string(NS_XML), stack.NsForPrefix("xml").first);
47 EXPECT_EQ(std::string(NS_XMLNS), stack.NsForPrefix("xmlns").first);
48 EXPECT_EQ("", stack.NsForPrefix("").first);
50 EXPECT_EQ("xml", stack.PrefixForNs(NS_XML, false).first);
51 EXPECT_EQ("xmlns", stack.PrefixForNs(NS_XMLNS, false).first);
52 EXPECT_EQ("", stack.PrefixForNs("", false).first);
53 EXPECT_EQ("", stack.PrefixForNs("", true).first);
57 XmlnsStack stack; local
58 stack.AddXmlns("pre1", "ns1")
72 XmlnsStack stack; local
107 XmlnsStack stack; local
183 XmlnsStack stack; local
231 XmlnsStack stack; local
    [all...]
  /external/chromium_org/third_party/webrtc/libjingle/xmllite/
xmlnsstack_unittest.cc 27 XmlnsStack stack; local
29 EXPECT_EQ(std::string(NS_XML), stack.NsForPrefix("xml").first);
30 EXPECT_EQ(std::string(NS_XMLNS), stack.NsForPrefix("xmlns").first);
31 EXPECT_EQ("", stack.NsForPrefix("").first);
33 EXPECT_EQ("xml", stack.PrefixForNs(NS_XML, false).first);
34 EXPECT_EQ("xmlns", stack.PrefixForNs(NS_XMLNS, false).first);
35 EXPECT_EQ("", stack.PrefixForNs("", false).first);
36 EXPECT_EQ("", stack.PrefixForNs("", true).first);
40 XmlnsStack stack; local
41 stack.AddXmlns("pre1", "ns1")
55 XmlnsStack stack; local
90 XmlnsStack stack; local
166 XmlnsStack stack; local
214 XmlnsStack stack; local
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
StackExtensions.cs 45 public static T elementAt<T>( this Stack<T> stack, int index )
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
    [all...]
  /external/libcxx/test/containers/container.adaptors/stack/stack.cons/
default_noexcept.pass.cpp 10 // <stack>
12 // stack()
17 #include <stack>
26 typedef std::stack<MoveOnly> C;
dtor_noexcept.pass.cpp 10 // <stack>
12 // ~stack() // implied noexcept;
14 #include <stack>
23 typedef std::stack<MoveOnly> C;
move_assign_noexcept.pass.cpp 10 // <stack>
12 // stack& operator=(stack&& c)
17 #include <stack>
26 typedef std::stack<MoveOnly> C;
move_noexcept.pass.cpp 10 // <stack>
12 // stack(stack&&)
17 #include <stack>
26 typedef std::stack<MoveOnly> C;
  /external/libcxx/test/containers/container.adaptors/stack/stack.defn/
size.pass.cpp 10 // <stack>
14 #include <stack>
19 std::stack<int> q;
swap.pass.cpp 10 // <stack>
12 // void swap(stack& q);
14 #include <stack>
29 std::stack<int> q1 = make<std::stack<int> >(5);
30 std::stack<int> q2 = make<std::stack<int> >(10);
31 std::stack<int> q1_save = q1;
32 std::stack<int> q2_save = q2;
  /external/chromium_org/third_party/speex/libspeex/
stack_alloc.h 4 @brief Temporary memory allocation on stack
51 * @def ALIGN(stack, size)
53 * Aligns the stack to a 'size' boundary
55 * @param stack Stack
60 * @def PUSH(stack, size, type)
62 * Allocates 'size' elements of type 'type' on the stack
64 * @param stack Stack
72 * Declare variable on stack
    [all...]
  /external/libcxx/test/containers/container.adaptors/stack/
version.pass.cpp 10 // <stack>
12 #include <stack>
  /external/libunwind/src/ia64/
Linstall_cursor.S 4 /* We do not need executable stack. */
5 .section .note.GNU-stack,"",@progbits
  /external/libcxx/test/containers/container.adaptors/stack/stack.ops/
eq.pass.cpp 10 // <stack>
13 // bool operator==(const stack<T, Container>& x,const stack<T, Container>& y);
16 // bool operator!=(const stack<T, Container>& x,const stack<T, Container>& y);
18 #include <stack>
33 std::stack<int> q1 = make<std::stack<int> >(5);
34 std::stack<int> q2 = make<std::stack<int> >(10)
    [all...]
lt.pass.cpp 10 // <stack>
13 // bool operator< (const stack<T, Container>& x,const stack<T, Container>& y);
16 // bool operator> (const stack<T, Container>& x,const stack<T, Container>& y);
19 // bool operator>=(const stack<T, Container>& x,const stack<T, Container>& y);
22 // bool operator<=(const stack<T, Container>& x,const stack<T, Container>& y);
24 #include <stack>
    [all...]
Android.mk 17 test_makefile := external/libcxx/test/containers/container.adaptors/stack/stack.ops/Android.mk
19 test_name := containers/container.adaptors/stack/stack.ops/lt
23 test_name := containers/container.adaptors/stack/stack.ops/eq
  /external/libcxx/test/containers/container.adaptors/stack/stack.special/
swap.pass.cpp 10 // <stack>
13 // void swap(stack<T, Container>& x, stack<T, Container>& y);
15 #include <stack>
30 std::stack<int> q1 = make<std::stack<int> >(5);
31 std::stack<int> q2 = make<std::stack<int> >(10);
32 std::stack<int> q1_save = q1;
33 std::stack<int> q2_save = q2
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
stack_utils.py 29 """Simple routines for logging, obtaining thread stack information."""
37 stack = _find_thread_stack(thread_id)
38 assert(stack is not None)
41 _log_stack(logger, stack)
46 """Returns a stack object that can be used to dump a stack trace for
48 for tid, stack in sys._current_frames().items():
50 return stack
54 def _log_stack(logger, stack):
55 """Log a stack trace to the logger callback.""
    [all...]
  /external/easymock/src/org/easymock/internal/
LastControl.java 21 import java.util.Stack;
31 private static final ThreadLocal<Stack<Invocation>> threadToCurrentInvocation = new ThreadLocal<Stack<Invocation>>();
33 private static final ThreadLocal<Stack<IArgumentMatcher>> threadToArgumentMatcherStack = new ThreadLocal<Stack<IArgumentMatcher>>();
48 Stack<IArgumentMatcher> stack = threadToArgumentMatcherStack.get(); local
49 if (stack == null) {
50 stack = new Stack<IArgumentMatcher>();
57 Stack<IArgumentMatcher> stack = threadToArgumentMatcherStack.get(); local
66 Stack<IArgumentMatcher> stack = threadToArgumentMatcherStack.get(); local
72 Stack<IArgumentMatcher> stack = threadToArgumentMatcherStack.get(); local
78 Stack<IArgumentMatcher> stack = threadToArgumentMatcherStack.get(); local
98 Stack<IArgumentMatcher> stack = threadToArgumentMatcherStack.get(); local
104 Stack<Invocation> stack = threadToCurrentInvocation.get(); local
112 Stack<Invocation> stack = threadToCurrentInvocation.get(); local
121 Stack<Invocation> stack = threadToCurrentInvocation.get(); local
    [all...]
  /external/chromium_org/chrome/browser/ui/panels/
stacked_panel_drag_handler.cc 20 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. Dragging thes
54 StackedPanelCollection* stack = panel->stack(); local
    [all...]

Completed in 1490 milliseconds

1 2 3 4 5 6 7 8 91011>>