/external/stlport/test/unit/ |
stack_header_test.cpp | 8 #include <stack>
|
/ndk/tests/device/test-gnustl-full/unit/ |
stack_header_test.cpp | 8 #include <stack>
|
/ndk/tests/device/test-stlport/unit/ |
stack_header_test.cpp | 8 #include <stack>
|
/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/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/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/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...] |
/prebuilts/misc/common/swig/include/2.0.11/ruby/ |
std_stack.i | 9 struct traits_asptr<std::stack<T> > { 10 static int asptr(VALUE obj, std::stack<T> **vec) { 11 return traits_asptr_stdseq<std::stack<T> >::asptr(obj, vec); 16 struct traits_from<std::stack<T> > { 17 static VALUE from(const std::stack<T> & vec) { 18 return traits_from_stdseq<std::stack<T> >::from(vec); 25 %rename("delete") std::stack::__delete__; 26 %rename("reject!") std::stack::reject_bang; 27 %rename("map!") std::stack::map_bang; 28 %rename("empty?") std::stack::empty [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;
|
/ndk/sources/cxx-stl/llvm-libc++/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;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.defn/ |
size.pass.cpp | 10 // <stack> 14 #include <stack> 19 std::stack<int> q;
|
/external/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/proguard/src/proguard/evaluation/ |
Processor.java | 31 * 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()) [all...] |