Searched refs:stack (Results 1 - 25 of 2015) sorted by relevance

1234567891011>>

/external/stlport/test/unit/
H A Dstack_header_test.cpp8 #include <stack>
/external/chromium_org/third_party/bintrees/bintrees/
H A Dstack.c2 * 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) argument
32 stack_push(node_stack_t *stack, node_t *node) argument
43 stack_pop(node_stack_t *stack) argument
49 stack_is_empty(node_stack_t *stack) argument
55 stack_reset(node_stack_t *stack) argument
[all...]
H A Dstack.h2 * 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);
H A Dstack.pxd10 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)
/external/chromium_org/third_party/freetype/src/cff/
H A Dcf2stack.c5 /* 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 )
95 cf2_stack_pushInt( CF2_Stack stack, CF2_Int val ) argument
111 cf2_stack_pushFixed( CF2_Stack stack, CF2_Fixed val ) argument
[all...]
/external/freetype/src/cff/
H A Dcf2stack.c5 /* 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 )
95 cf2_stack_pushInt( CF2_Stack stack, CF2_Int val ) argument
111 cf2_stack_pushFixed( CF2_Stack stack, CF2_Fixed val ) argument
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
H A Dcf2stack.c5 /* 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 )
95 cf2_stack_pushInt( CF2_Stack stack, CF2_Int val ) argument
111 cf2_stack_pushFixed( CF2_Stack stack, CF2_Fixed val ) argument
[all...]
/external/chromium_org/third_party/libjingle/source/talk/xmllite/
H A Dxmlnsstack_unittest.cc44 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
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/
H A Dxmlnsstack_unittest.cc27 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
55 XmlnsStack stack; local
90 XmlnsStack stack; local
166 XmlnsStack stack; local
214 XmlnsStack stack; local
[all...]
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1591.js28 var stack; variable
40 stack = err.stack;
46 assertTrue(stack.indexOf(expected_message) >= 0);
/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/chromium_org/v8/test/mjsunit/compiler/
H A Dregress-stacktrace.js28 // Test correctness of stack traces with global functions.
42 var stack = e.stack.toString();
43 var p3 = stack.indexOf("at three");
44 var p2 = stack.indexOf("at two");
45 var p1 = stack.indexOf("at one");
51 print(stack);
/external/libcxx/test/containers/container.adaptors/stack/stack.cons/
H A Ddefault_noexcept.pass.cpp10 // <stack>
12 // stack()
17 #include <stack>
26 typedef std::stack<MoveOnly> C;
H A Ddtor_noexcept.pass.cpp10 // <stack>
12 // ~stack() // implied noexcept;
14 #include <stack>
23 typedef std::stack<MoveOnly> C;
H A Dmove_assign_noexcept.pass.cpp10 // <stack>
12 // stack& operator=(stack&& c)
17 #include <stack>
26 typedef std::stack<MoveOnly> C;
H A Dmove_noexcept.pass.cpp10 // <stack>
12 // stack(stack&&)
17 #include <stack>
26 typedef std::stack<MoveOnly> C;
/external/libcxx/test/containers/container.adaptors/stack/stack.defn/
H A Dsize.pass.cpp10 // <stack>
14 #include <stack>
19 std::stack<int> q;
H A Dswap.pass.cpp10 // <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/extensions/renderer/resources/
H A Duncaught_exception_handler.js12 * Append the error description and stack trace to |message|.
17 * @param {string=} priorStackTrace - The stack trace to be appended to the
18 * error message. This stack trace must not include stack frames of |e.stack|,
19 * because both stack traces are concatenated. Overlapping stack traces will
27 var stack;
29 // If the stack was set, use it.
30 // |e.stack| coul
[all...]
/external/chromium_org/third_party/speex/libspeex/
H A Dstack_alloc.h4 @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
80 * Allocate 'size' elements of 'type' on stack
91 #define ALIGN(stack, siz
[all...]
/external/speex/libspeex/
H A Dstack_alloc.h4 @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
80 * Allocate 'size' elements of 'type' on stack
91 #define ALIGN(stack, siz
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Dstack-traces-overflow.js28 // Flags: --stack-size=100
34 // Test stack trace getter and setter.
38 assertTrue(e.stack.indexOf("rec1") > 0);
39 e.stack = "123";
40 assertEquals("123", e.stack);
47 assertTrue(e.stack.indexOf("rec2") > 0);
48 assertTrue(e.stack.indexOf("rec3") > 0);
49 e.stack = "123";
50 assertEquals("123", e.stack);
57 assertTrue(e.stack
[all...]
/external/proguard/src/proguard/evaluation/
H A DProcessor.java31 * local variable frame and stack.
39 private final Stack stack; field in class:Processor
51 * @param stack the local stack.
56 Stack stack,
62 this.stack = stack;
82 stack.push(valueFactory.createReferenceValueNull());
94 stack.push(valueFactory.createIntegerValue(simpleInstruction.constant));
99 stack
55 Processor(Variables variables, Stack stack, ValueFactory valueFactory, BranchUnit branchUnit, InvocationUnit invocationUnit) argument
[all...]
/external/libcxx/test/containers/container.adaptors/stack/
H A Dversion.pass.cpp10 // <stack>
12 #include <stack>
/external/libunwind/src/ia64/
H A DLinstall_cursor.S4 /* We do not need executable stack. */
5 .section .note.GNU-stack,"",@progbits

Completed in 7549 milliseconds

1234567891011>>