HomeSort by relevance Sort by last modified time
    Searched full:stack (Results 1 - 25 of 10778) 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)
  /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/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/proguard/src/proguard/evaluation/
Processor.java 34 * local variable frame and stack.
44 private final Stack stack; field in class:Processor
57 * @param stack the local stack.
62 Stack stack,
68 this.stack = stack;
85 stack.push(valueFactory.createReferenceValueNull())
    [all...]
  /external/valgrind/main/memcheck/tests/
deep_templates.cpp 11 class Stack
14 Stack(int = 10) { size=5; top=6; stackPtr=(T*)6; };
15 ~Stack() { }
27 typedef Stack<int,char> Foo;
28 typedef Stack<Foo,Foo> Foo2;
29 typedef Stack<Foo2,Foo2> Foo3;
30 typedef Stack<Foo3,Foo3> Foo4;
31 typedef Stack<Foo4,Foo4> Foo5;
32 typedef Stack<Foo5,Foo5> Foo6;
33 typedef Stack<Foo6,Foo6> Foo7
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
stack 2 //===---------------------------- stack -----------------------------------===//
15 stack synopsis
21 class stack
34 stack() = default;
35 ~stack() = default;
37 stack(const stack& q) = default;
38 stack(stack&& q) = default;
40 stack& operator=(const stack& q) = default
    [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...]
  /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...]
  /dalvik/dx/tests/107-verify-stack-ops/
info.txt 1 This tests that the various stack manipulation opcodes verify that their
  /dalvik/dx/tests/114-value-propagation/
info.txt 2 stack location to a local variable. (regression test)
  /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...]
  /external/skia/tests/
ClipStackTest.cpp 25 // Build up a clip stack with a path, an empty clip, and a rect.
124 static void assert_count(skiatest::Reporter* reporter, const SkClipStack& stack,
126 SkClipStack::B2TIter iter(stack);
137 SkClipStack stack; local
148 stack.clipDevRect(gRects[i], SkRegion::kUnion_Op, false);
151 assert_count(reporter, stack, 4);
157 SkClipStack::B2TIter iter(stack);
172 SkClipStack::Iter iter(stack, SkClipStack::Iter::kTop_IterStart);
187 SkClipStack::Iter iter(stack, SkClipStack::Iter::kBottom_IterStart);
247 SkClipStack stack; local
928 SkClipStack stack; local
1016 SkClipStack 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/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/clang/test/Misc/
include-stack-for-note-flag.cpp 1 // RUN: not %clang_cc1 -fsyntax-only -fdiagnostics-show-note-include-stack %s 2>&1 | FileCheck %s -check-prefix=STACK
2 // RUN: not %clang_cc1 -fsyntax-only -fno-diagnostics-show-note-include-stack %s 2>&1 | FileCheck %s -check-prefix=STACKLESS
3 // RUN: not %clang_cc1 -fsyntax-only -fno-diagnostics-show-note-include-stack -fdiagnostics-show-note-include-stack %s 2>&1 | FileCheck %s -check-prefix=STACK
4 // RUN: not %clang_cc1 -fsyntax-only -fdiagnostics-show-note-include-stack -fno-diagnostics-show-note-include-stack %s 2>&1 | FileCheck %s -check-prefix=STACKLESS
16 // STACK: error: no matching function for call to 'foo'
17 // STACK: In file included fro
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.ops/
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...]
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...]
  /external/clang/test/Driver/
stack-protector.c 1 // RUN: %clang -fno-stack-protector -### %s 2>&1 | FileCheck %s -check-prefix=NOSSP
2 // NOSSP-NOT: "-stack-protector" "1"
3 // NOSSP-NOT: "-stack-protector-buffer-size"
6 // SSP: "-stack-protector" "1"
7 // SSP-NOT: "-stack-protector-buffer-size"
10 // SSP-BUF: "-stack-protector" "1"
11 // SSP-BUF: "-stack-protector-buffer-size" "16"
14 // OPENBSD: "-stack-protector" "1"
16 // RUN: %clang -target i386-pc-openbsd -fno-stack-protector -### %s 2>&1 | FileCheck %s -check-prefix=OPENBSD_OFF
17 // OPENBSD_OFF-NOT: "-stack-protector
    [all...]
  /development/ndk/platforms/android-9/arch-x86/lib-bootstrap/
crtend_android.o 
  /development/ndk/platforms/android-9/arch-x86/lib-bootstrap/lib/
crtend_android.o 
  /development/ndk/platforms/android-9/arch-x86/lib-bootstrap/libx32/
crtend_android.o 
  /external/chromium-trace/trace-viewer/src/base/
utils.js 42 stack: ['<unknown>']
48 stack: e.stack ? e.stack : ['<unknown>']
53 var stack = new Error().stack + '';
54 stack = stack.split('\n');
55 return stack.slice(2);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
nasm-sectname.asm 2 section .note.GNU-stack

Completed in 1557 milliseconds

1 2 3 4 5 6 7 8 91011>>