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

/packages/apps/Email/src/org/apache/james/mime4j/message/
H A DMessage.java100 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);
123 stack.push(m);
132 stack.pop();
139 stack
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/util/
H A DProfileData.java74 public void addSample(String[] stack) { argument
75 int[] ids = new int[stack.length];
76 for (int i = 0; i < stack.length; i++) {
77 ids[i] = nameToId(stack[i]);
81 for (int i = stack.length - 1; i >= 0; i--) {
127 // Writes out one stack, consisting of N+2 words:
129 // second word: depth of the stack (N)
130 // N words: each word is the id of one address in the stack
/packages/apps/Camera/src/com/android/camera/
H A DCameraHolder.java70 String[] stack; field in class:CameraHolder.OpenReleaseState
87 StackTraceElement[] stack = Thread.currentThread().getStackTrace();
88 String[] lines = new String[stack.length];
89 for (int i = 0; i < stack.length; i++) {
90 lines[i] = stack[i].toString();
92 s.stack = lines;
107 for (int j = 0; j < s.stack.length; j++) {
108 Log.d(TAG, " " + s.stack[j]);
/packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
H A DMimeMessage.java504 private Stack<Object> stack = new Stack<Object>(); field in class:MimeMessage.MimeMessageBuilder
510 if (!c.isInstance(stack.peek())) {
511 throw new IllegalStateException("Internal stack error: " + "Expected '"
512 + c.getName() + "' found '" + stack.peek().getClass().getName() + "'");
517 if (stack.isEmpty()) {
518 stack.push(MimeMessage.this);
523 ((Part)stack.peek()).setBody(m);
524 stack.push(m);
533 stack.pop();
544 ((Part)stack
[all...]
/packages/apps/Camera/jni/feature_mos/src/mosaic/
H A DDelaunay.cpp372 int stack[DM]; local
409 // Now to recurse on shorter partition, store longer partition on stack
413 break; // empty stack && both partitions < QQ so break
415 sj = stack[--m];
416 si = stack[--m];
423 stack[m++] = si;
424 stack[m++] = sL;
432 break; // empty stack && both partitions < QQ so break
434 sj = stack[--m];
435 si = stack[
[all...]
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
H A DDelaunay.cpp372 int stack[DM]; local
409 // Now to recurse on shorter partition, store longer partition on stack
413 break; // empty stack && both partitions < QQ so break
415 sj = stack[--m];
416 si = stack[--m];
423 stack[m++] = si;
424 stack[m++] = sL;
432 break; // empty stack && both partitions < QQ so break
434 sj = stack[--m];
435 si = stack[
[all...]
/packages/apps/Calculator/
H A Darity-2.1.2.jar ... .javia.arity.TokenConsumer { java.util.Stack stack int prevTokenId org.javia.arity.TokenConsumer ...

Completed in 547 milliseconds