| /external/freetype/src/cff/ |
| cf2stack.h | 5 /* Adobe's code for emulating a CFF stack (specification). */ 46 /* CFF operand stack; specified maximum of 48 or 192 values */ 75 cf2_stack_free( CF2_Stack stack ); variable 78 cf2_stack_count( CF2_Stack stack ); variable 81 cf2_stack_pushInt( CF2_Stack stack, 84 cf2_stack_pushFixed( CF2_Stack stack, 88 cf2_stack_popInt( CF2_Stack stack ); variable 90 cf2_stack_popFixed( CF2_Stack stack ); variable 93 cf2_stack_getReal( CF2_Stack stack, 97 cf2_stack_roll( CF2_Stack stack, 102 cf2_stack_clear( CF2_Stack stack ); variable [all...] |
| /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/ |
| FrameSnapshot.java | 30 private final Object[] stack; field in class:FrameSnapshot 32 private FrameSnapshot(final Object[] locals, final Object[] stack) { 34 this.stack = stack; 43 * number of items to remove from the operand stack 52 final Object[] stack = reduce(analyzer.stack, popCount); local 53 return new FrameSnapshot(locals, stack); 78 mv.visitFrame(Opcodes.F_NEW, locals.length, locals, stack.length, 79 stack); [all...] |
| /external/javassist/src/main/javassist/bytecode/analysis/ |
| Frame.java | 19 * Represents the stack frame and local variable table at a particular point in time. 25 private Type[] stack; field in class:Frame 31 * Create a new frame with the specified local variable table size, and max stack size 34 * @param stack the maximum stack size 36 public Frame(int locals, int stack) { 38 this.stack = new Type[stack]; 63 * Returns the type on the stack at the specified index. 65 * @param index the position on the stack [all...] |
| /external/autotest/tko/ |
| status_lib_unittest.py | 107 stack = status_lib.status_stack() 108 self.assertEquals(stack.current_status(), "NOSTATUS") 112 stack = status_lib.status_stack() 113 stack.update("FAIL") 114 stack.start() 115 self.assertEquals(stack.current_status(), "NOSTATUS") 119 stack = status_lib.status_stack() 120 self.assertEquals(stack.size(), 0) 121 stack.start() 122 stack.end( [all...] |
| /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/ |
| Message.java | 25 import java.util.Stack; 100 private Stack<Object> stack = new Stack<Object>(); field in class:Message.MessageBuilder 106 if (!c.isInstance(stack.peek())) { 107 throw new IllegalStateException("Internal stack error: " 109 + stack.peek().getClass().getName() + "'"); 117 if (stack.isEmpty()) { 118 stack.push(Message.this); 122 ((Entity) stack.peek()).setBody(m) [all...] |
| /external/libcxx/test/std/containers/container.adaptors/stack/stack.cons/ |
| ctor_default.pass.cpp | 10 // <stack> 12 // stack(); 14 #include <stack> 22 std::stack<int, std::vector<int, stack_allocator<int, 10> > > q;
|
| ctor_rcontainer.pass.cpp | 10 // <stack> 12 // explicit stack(container_type&& c); 14 #include <stack> 36 std::stack<MoveOnly> q(make<std::deque<MoveOnly> >(5));
|
| /external/libcxx/test/std/containers/container.adaptors/stack/stack.defn/ |
| emplace.pass.cpp | 10 // <stack> 14 #include <stack> 22 std::stack<Emplaceable> q;
|
| push.pass.cpp | 10 // <stack> 14 #include <stack> 19 std::stack<int> q;
|
| /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/graphics/profiling/ |
| GLErrorListener.java | 40 final StackTraceElement[] stack = exc.getStackTrace(); 41 for (int i = 0; i < stack.length; i++) { 42 if (stack[i].getMethodName().contains("check")) { 44 if (i + 1 < stack.length) { 45 final StackTraceElement glMethod = stack[i + 1]; 61 final StackTraceElement[] stack = exc.getStackTrace(); 62 for (int i = 0; i < stack.length; i++) { 63 buffer.append(stack[i].toString()).append('\n'); 66 buffer.append(" (Failed to print stack trace: ").append(ignored).append(")"); 69 // GWT backend seems to have trouble printing stack traces reliabl [all...] |
| /external/valgrind/helgrind/tests/ |
| shmem_abits.stderr.exp | 3 stack test
|
| /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.cons/ |
| ctor_default.pass.cpp | 10 // <stack> 12 // stack(); 14 #include <stack> 22 std::stack<int, std::vector<int, stack_allocator<int, 10> > > q;
|
| ctor_rcontainer.pass.cpp | 10 // <stack> 12 // explicit stack(container_type&& c); 14 #include <stack> 36 std::stack<MoveOnly> q(make<std::deque<MoveOnly> >(5));
|
| /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.defn/ |
| emplace.pass.cpp | 10 // <stack> 14 #include <stack> 22 std::stack<Emplaceable> q;
|
| push.pass.cpp | 10 // <stack> 14 #include <stack> 19 std::stack<int> q;
|
| /toolchain/binutils/binutils-2.25/gold/testsuite/ |
| split_i386_n.s | 1 # split_i386_n.s: i386 specific, -fsplit-stack calling non-split 12 .section .note.GNU-stack,"",@progbits
|
| split_x32_n.s | 1 # split_x32_n.s: x32 specific, -fsplit-stack calling non-split 12 .section .note.GNU-stack,"",@progbits
|
| split_x86_64_n.s | 1 # split_x86_64_n.s: x86_64 specific, -fsplit-stack calling non-split 12 .section .note.GNU-stack,"",@progbits
|
| /ndk/sources/cxx-stl/stlport/stlport/stl/ |
| _stack.h | 47 class stack class in inherits:__stlport_class 50 : public __stlport_class<stack<_Tp> > 52 : public __stlport_class<stack<_Tp, _Sequence> > 58 typedef stack<_Tp> _Self; 60 typedef stack<_Tp, _Sequence> _Self; 74 stack() : c() {} function in class:stack 75 explicit stack(const _Sequence& __s) : c(__s) {} function in class:stack 78 stack(__move_source<_Self> src) function in class:stack 106 inline bool _STLP_CALL operator==(const stack< _STLP_STACK_ARGS >& __x, 107 const stack< _STLP_STACK_ARGS >& __y [all...] |
| /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/ |
| _stack.h | 47 class stack class in inherits:__stlport_class 50 : public __stlport_class<stack<_Tp> > 52 : public __stlport_class<stack<_Tp, _Sequence> > 58 typedef stack<_Tp> _Self; 60 typedef stack<_Tp, _Sequence> _Self; 74 stack() : c() {} function in class:stack 75 explicit stack(const _Sequence& __s) : c(__s) {} function in class:stack 78 stack(__move_source<_Self> src) function in class:stack 106 inline bool _STLP_CALL operator==(const stack< _STLP_STACK_ARGS >& __x, 107 const stack< _STLP_STACK_ARGS >& __y [all...] |
| /external/compiler-rt/lib/msan/ |
| msan_poisoning.h | 32 void CopyOrigin(const void *dst, const void *src, uptr size, StackTrace *stack); 37 StackTrace *stack); 42 StackTrace *stack); 46 void CopyMemory(void *dst, const void *src, uptr size, StackTrace *stack); 55 void PoisonMemory(const void *dst, uptr size, StackTrace *stack);
|
| /external/valgrind/memcheck/tests/linux/ |
| stack_switch.c | 35 void *stack; local 40 if ( ( stack = mmap( NULL, 2* STACK_SIZE, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0 ) ) == MAP_FAILED ) 46 stackid = VALGRIND_STACK_REGISTER( stack, stack + STACK_SIZE ); 48 if ( ( pid = clone( thread_main, stack + STACK_SIZE, CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|SIGCHLD, NULL ) ) == -1 )
|
| /external/v8/test/mjsunit/regress/ |
| regress-3718.js | 8 Error.prepareStackTrace = function(e, stack) { return stack; } 9 var stack = (function() { return new Error().stack; }).call(receiver); 11 return stack[0].getTypeName();
|
| /dalvik/dx/src/com/android/dx/cf/code/ |
| ExecutionStack.java | 26 * Representation of a Java method execution stack. 33 /** {@code non-null;} array of stack contents */ 34 private final TypeBearer[] stack; field in class:ExecutionStack 37 * {@code non-null;} array specifying whether stack contents have entries 42 * {@code >= 0;} stack pointer (points one past the end) / current stack 50 * @param maxStack {@code >= 0;} the maximum size of the stack for this 55 stack = new TypeBearer[maxStack]; 66 ExecutionStack result = new ExecutionStack(stack.length); 68 System.arraycopy(stack, 0, result.stack, 0, stack.length) [all...] |
| /external/libdivsufsort/include/ |
| divsufsort_private.h | 157 stack[ssize].a = (_a), stack[ssize].b = (_b),\ 158 stack[ssize].c = (_c), stack[ssize++].d = (_d);\ 163 stack[ssize].a = (_a), stack[ssize].b = (_b),\ 164 stack[ssize].c = (_c), stack[ssize].d = (_d), stack[ssize++].e = (_e);\ 170 (_a) = stack[--ssize].a, (_b) = stack[ssize].b, [all...] |