HomeSort by relevance Sort by last modified time
    Searched full:stack (Results 851 - 875 of 10778) sorted by null

<<31323334353637383940>>

  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
EmptyStackExceptionTest.java 21 import java.util.Stack;
26 Stack s;
52 s = new Stack();
  /external/apache-xml/src/main/java/org/apache/xml/utils/
NameSpace.java 27 * be pushed on the namespace stack for each
35 /** Next NameSpace element on the stack.
49 * result tree namespace stack.
  /external/chromium_org/chrome/common/extensions/docs/server2/
future_test.py 38 # Set up a chain of functions to test the stack trace.
66 stack = traceback.format_exc()
67 assertTrue(all(stack.find(fn.__name__) != -1 for fn in chain))
  /external/chromium_org/v8/src/
json.js 71 function SerializeArray(value, replacer, stack, indent, gap) {
72 if (!%PushIfAbsent(stack, value)) {
80 var strP = JSONSerialize($String(i), value, replacer, stack,
97 stack.pop();
101 function SerializeObject(value, replacer, stack, indent, gap) {
102 if (!%PushIfAbsent(stack, value)) {
113 var strP = JSONSerialize(p, value, replacer, stack, indent, gap);
125 var strP = JSONSerialize(p, value, replacer, stack, indent, gap);
145 stack.pop();
149 function JSONSerialize(key, holder, replacer, stack, indent, gap)
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-117794.js 42 print(exc2.stack);
50 print(exc3.stack);
56 print(exc1.stack);
regress-237617.js 31 throw new Error("test stack");
38 error_stack = e.stack;
41 assertTrue(error_stack.indexOf("test stack") > 0);
  /external/clang/test/SemaCXX/
warn-dangling-field.cpp 15 : x(i), // expected-warning {{binding reference member 'x' to stack allocated parameter 'i'}}
16 y(&i) {} // expected-warning {{initializing pointer member 'y' with the stack address of parameter 'i'}}
33 S4(int i) : x(i) {} // expected-warning {{binding reference member 'x' to stack allocated parameter 'i'}}
  /external/compiler-rt/lib/
trampoline_setup.c 17 * trampoline functions on the stack for use with nested functions.
18 * This function creates a custom 40-byte trampoline function on the stack
28 /* enough space on stack for the trampoline, abort */
  /external/javassist/src/main/javassist/expr/
FieldAccess.java 243 int stack; local
245 stack = 0;
247 stack = -1;
252 stack += ((CtPrimitiveType)fieldType).getDataSize();
254 ++stack;
258 bytecode.growStack(stack);
292 int stack; local
294 stack = 0;
296 stack = -1;
303 stack -= ((CtPrimitiveType)fieldType).getDataSize()
    [all...]
  /external/libffi/src/cris/
sysv.S 50 ;; Save the regs to the stack.
52 ;; Used for stack pointer saving.
56 ;; Used for stack pointer saving.
58 ;; We save fig->flags to stack we will need them after we
62 ;; Saving current stack pointer.
69 ;; Make room on the stack for the args of fn.
72 ;; Function void ffi_prep_args(char *stack, extended_cif *ecif) parameters are:
73 ;; r10 <-- stack pointer
80 ;; Save the size of the structures which are passed on stack.
89 ;; Adjust the stack and check if any parameters are given on stack
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/
DialogExt.java 28 * BYE being sent to the other side. Setting this flag instructs the stack to automatically
30 * This flag can be set on a stack-wide basis, on a per-provider basis or on a per Dialog basis.
42 * purposes. Validation is delegated to the application and the stack will not attempt to
package.html 3 implementation of the Provider, Listener and Stack. Implementation of the
6 in the stack subdirectory.
27 Sockets that are used by the stack (use this feature with caution!).
  /external/proguard/src/proguard/classfile/editor/
StackSizeUpdater.java 29 * This AttributeVisitor computes and updates the maximum stack size of the
48 // Compute the stack sizes.
51 // Update the maximum stack size.
  /external/v8/test/mjsunit/regress/
regress-117794.js 42 print(exc2.stack);
50 print(exc3.stack);
56 print(exc1.stack);
  /external/valgrind/main/exp-sgcheck/tests/
stackerr.stderr.exp-glibc28-amd64 7 Expected: stack array "a" of size 56 in frame 2 back from here
14 Expected: stack array "a" of size 56 in this frame
23 Expected: stack array "buf" of size 8 in frame 4 back from here
  /libcore/luni/src/main/java/java/lang/
ArrayIndexOutOfBoundsException.java 30 * current stack trace.
37 * stack trace and a detail message that is based on the specified invalid
49 * stack trace and the specified detail message.
ClassNotFoundException.java 31 * stack trace.
38 * Constructs a new {@code ClassNotFoundException} with the current stack
49 * Constructs a new {@code ClassNotFoundException} with the current stack
ExceptionInInitializerError.java 31 * current stack trace.
39 * stack trace and the specified detail message.
51 * stack trace and the specified cause. The exception should be the one
InstantiationError.java 32 * stack trace.
38 * Constructs a new {@code InstantiationError} with the current stack trace
49 * Constructs a new {@code InstantiationError} with the current stack trace
  /libcore/luni/src/test/java/tests/api/java/util/
EmptyStackExceptionTest.java 21 import java.util.Stack;
26 Stack s;
51 s = new Stack();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.defn/
pop.pass.cpp 10 // <stack>
14 #include <stack>
19 std::stack<int> q;
push_rv.pass.cpp 10 // <stack>
14 #include <stack>
22 std::stack<MoveOnly> q;
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
binary2.sed 17 # stack manipulation commands
18 # c clear stack
19 # P pop stack top
20 # D duplicate stack top
22 # r rotate stack counter-clockwise (second element becomes first)
23 # R rotate stack clockwise (last element becomes first)
26 # l print stack (stack top is first)
27 # p print stack top
28 # q quit, print stack top if any (cq is quiet quit
    [all...]
binary3.sed 17 # stack manipulation commands
18 # c clear stack
19 # P pop stack top
20 # D duplicate stack top
22 # r rotate stack counter-clockwise (second element becomes first)
23 # R rotate stack clockwise (last element becomes first)
26 # l print stack (stack top is first)
27 # p print stack top
28 # q quit, print stack top if any (cq is quiet quit
    [all...]
  /sdk/emulator/qtools/
q2dm.cpp 74 CallStackType *stack = (CallStackType *) base; local
78 stack->getGlobalTime(time), pid, stackLevel,
96 CallStackType *stack = (CallStackType *) base; local
100 stack->getGlobalTime(time), pid, stackLevel,
113 stack->getGlobalTime(time), pid, sym->name);
161 // Create a fake kernel thread stack where we will put all the kernel
188 // Use the kernel stack
193 // stack frames for the kernel thread.
199 // Get the stack for the current thread
203 // Get the stack for the current threa
    [all...]

Completed in 403 milliseconds

<<31323334353637383940>>