Searched defs:stack (Results 1 - 19 of 19) sorted by relevance

/frameworks/native/opengl/libs/EGL/
H A Degl_tls.cpp81 CallStack stack; local
82 stack.update();
83 stack.dump();
H A Degl.cpp69 * 2. libs/EGL/trace.cpp: Logs a stack trace for GL errors after each function call.
210 CallStack stack; local
211 stack.update();
212 stack.dump();
/frameworks/base/core/java/android/util/
H A DJsonWriter.java125 private final List<JsonScope> stack = new ArrayList<JsonScope>(); field in class:JsonWriter
127 stack.add(JsonScope.EMPTY_DOCUMENT);
240 stack.add(empty);
253 throw new IllegalStateException("Nesting problem: " + stack);
256 stack.remove(stack.size() - 1);
265 * Returns the value on the top of the stack.
268 return stack.get(stack.size() - 1);
272 * Replace the value on the top of the stack wit
[all...]
H A DJsonReader.java205 private final List<JsonScope> stack = new ArrayList<JsonScope>(); field in class:JsonReader
536 stack.clear();
537 stack.add(JsonScope.CLOSED);
564 return stack.get(stack.size() - 1);
568 return stack.remove(stack.size() - 1);
572 stack.add(newTop);
576 * Replace the value on the top of the stack with the given value.
579 stack
[all...]
/frameworks/base/tools/aapt/
H A DXMLNode.h148 Vector<sp<XMLNode> > stack; member in struct:XMLNode::ParseState
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DDelegateMethodAdapter2.java213 // Push this.getField("this$0") on the call stack.
243 // we pushed on the call stack. The return type remains unchanged.
384 public void visitFrame(int type, int nLocal, Object[] local, int nStack, Object[] stack) { argument
386 mOrgWriter.visitFrame(type, nLocal, local, nStack, stack);
H A DStubMethodAdapter.java153 /* Pops the stack, depending on the return type.
259 // Pop the last word from the stack since invoke will generate its own return.
299 public void visitFrame(int type, int nLocal, Object[] local, int nStack, Object[] stack) { argument
301 mParentVisitor.visitFrame(type, nLocal, local, nStack, stack);
H A DAsmAnalyzer.java596 public void visitFrame(int type, int local, Object[] local2, int stack, Object[] stack2) { argument
625 // instruction to load a constant from the stack
H A DDependencyFinder.java536 public void visitFrame(int type, int local, Object[] local2, int stack, Object[] stack2) { argument
565 // instruction to load a constant from the stack
/frameworks/native/libs/binder/
H A DIMemory.cpp249 CallStack stack; local
250 stack.update();
251 stack.dump("callstack");
/frameworks/native/libs/utils/
H A DThreads.cpp713 status_t Thread::run(const char* name, int32_t priority, size_t stack) argument
736 this, name, priority, stack, &mThread);
739 this, name, priority, stack, &mThread);
H A DRefBase.cpp108 refs->stack.dump();
126 refs->stack.dump();
133 CallStack stack; local
134 stack.update();
135 stack.dump();
201 snprintf(name, 100, "/data/%p.stack", this);
219 CallStack stack; member in struct:android::RefBase::weakref_impl::ref_entry
236 ref->stack.update(2);
277 CallStack stack; local
278 stack
[all...]
/frameworks/native/services/surfaceflinger/
H A DDisplayDevice.cpp335 void DisplayDevice::setLayerStack(uint32_t stack) { argument
336 mLayerStack = stack;
/frameworks/native/libs/ui/
H A DRegion.cpp401 CallStack stack; local
402 stack.update();
403 stack.dump("");
/frameworks/opt/mms/src/java/com/google/android/mms/pdu/
H A DPduComposer.java101 * Message compose buffer stack.
1035 private int currentStackSize; // Current stack size
1055 private LengthRecordNode stack = null; field in class:PduComposer.BufferStack
1061 * Create a new message buffer and push it into the stack.
1076 temp.next = stack;
1077 stack = temp;
1086 * Pop the message before and record current message in the stack.
1092 mMessage = stack.currentMessage;
1093 mPosition = stack.currentPosition;
1095 toCopy = stack;
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DActivityRecord.java54 * An entry in the history stack, representing an activity.
58 final ActivityStack stack; // owner field in class:ActivityRecord
129 private boolean inHistory; // are we in the history stack?
326 stack = _stack;
571 // stack.
573 && stack.topRunningActivityLocked(null) == this))
719 Message msg = stack.mHandler.obtainMessage(ActivityStack.LAUNCH_TICK_MSG);
721 stack.mHandler.removeMessages(ActivityStack.LAUNCH_TICK_MSG);
722 stack.mHandler.sendMessageDelayed(msg, ActivityStack.LAUNCH_TICK);
730 stack
[all...]
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp271 // .stack
272 FragmentRef* stack = NULL; local
274 stack = pLinker.getLayout().getFragmentRef(
287 stack, // FragRef
1533 /// createGNUStackInfo - create an output GNU stack section or segment if needed
1545 // 2. check the stack info from the input objects
1552 ".note.GNU-stack");
1555 // 2.1 found a stack note that is set as executable
1564 // 2.2 there are no stack note sections in all input objects
1568 // 2.3 a special case. Use the target default to decide if the stack shoul
[all...]
/frameworks/native/opengl/libagl/
H A Dmatrix.cpp127 // Validate the projection stack (in fact, it's never needed)
152 // Validate the texture stack
387 stack = new matrixf_t[depth];
396 delete [] stack;
402 stack[depth].loadIdentity();
409 stack[depth].load(rhs);
415 stack[depth].load(rhs);
421 stack[depth].multiply(rhs);
427 stack[depth].translate(x,y,z);
433 stack[dept
912 matrix_stack_t* stack = 0; local
[all...]
H A Dcontext.h450 matrixf_t *stack; member in struct:android::gl::matrix_stack_t
464 matrixf_t& top() { return stack[depth]; }
465 const matrixf_t& top() const { return stack[depth]; }

Completed in 569 milliseconds