Searched defs:push (Results 1 - 14 of 14) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
H A DStack.java32 * <tt>push</tt> and <tt>pop</tt> operations are provided, as well as a
66 public E push(E item) { method in class:Stack
H A DDeque.java148 * <td>{@link #push push(e)}</td>
490 * @param e the element to push
500 void push(E e); method in interface:Deque
H A DArrayDeque.java111 * of the deque (via addLast(E), add(E), or push(E)).
481 * @param e the element to push
484 public void push(E e) { method in class:ArrayDeque
H A DLinkedList.java782 * @param e the element to push
785 public void push(E e) { method in class:LinkedList
/libcore/ojluni/src/main/java/java/util/logging/
H A DMemoryHandler.java35 * conditions, the <tt>MemoryHandler</tt> will push out its current buffer
39 * There are three main models for triggering a push of the buffer:
45 * An external class calls the <tt>push</tt> method explicitly. </li>
48 * <tt>LogRecord</tt> and calls <tt>push</tt> if a record matches some
68 * <li> &lt;handler-name&gt;.push
105 pushLevel = manager.getLevelProperty(cname +".push", Level.SEVERE);
166 * @param pushLevel message level to push on
194 * greater than or equal to the <tt>pushLevel</tt> then <tt>push</tt>
215 push();
224 public synchronized void push() { method in class:MemoryHandler
[all...]
/libcore/support/src/test/java/tests/util/
H A DCallVerificationStack.java87 this.callStack.push(eles[i]);
119 public Object push(Object o) { method in class:CallVerificationStack
121 return super.push(o);
128 * the value to push
130 public void push(boolean val) { method in class:CallVerificationStack
131 this.push(new BaseTypeWrapper(val));
138 * the value to push
140 public void push(char val) { method in class:CallVerificationStack
141 this.push(new BaseTypeWrapper(val));
148 * the value to push
150 public void push(double val) { method in class:CallVerificationStack
160 public void push(float val) { method in class:CallVerificationStack
170 public void push(int val) { method in class:CallVerificationStack
180 public void push(long val) { method in class:CallVerificationStack
190 public void push(short val) { method in class:CallVerificationStack
[all...]
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DBlockingDeque.java657 void push(E e); method in interface:BlockingDeque
H A DConcurrentLinkedDeque.java1016 public void push(E e) { addFirst(e); } method in class:ConcurrentLinkedDeque
H A DLinkedBlockingDeque.java769 public void push(E e) { method in class:LinkedBlockingDeque
H A DCompletableFuture.java546 final void push(UniCompletion<?,?> c) { method in class:CompletableFuture
624 push(c);
679 push(c);
727 push(c);
790 push(c);
846 push(c);
896 push(c);
932 push(c);
944 push(c);
989 g.push(cop
[all...]
H A DForkJoinPool.java192 * support only three of the four possible end-operations -- push,
194 * push and pop are called only from the owning thread (or, as
212 * Adding tasks then takes the form of a classic array push(task)
255 * when a push, pop, or poll have not fully committed, or making
261 * one (or, if previously empty, a push) visibly completes.
266 * in-progress poll or new push on any empty queue to
816 int top; // index of next slot for push
867 final void push(ForkJoinTask<?> task) { method in class:ForkJoinPool.WorkQueue
898 do { // emulate poll from old array, push to new array
1015 * Shared version of push
[all...]
/libcore/ojluni/src/main/java/sun/misc/
H A DURLClassPath.java130 push(urls);
543 push(urls);
596 private void push(URL[] us) { method in class:URLClassPath
599 urls.push(us[i]);
/libcore/ojluni/src/main/java/java/io/
H A DObjectOutputStream.java1423 debugInfoStack.push(
1430 debugInfoStack.push(
1475 debugInfoStack.push(
1506 debugInfoStack.push("writeExternal data");
1545 debugInfoStack.push(
1598 debugInfoStack.push(
1757 debugInfoStack.push(
2556 void push(String entry) { method in class:ObjectOutputStream.DebugTraceInfoStack
/libcore/luni/src/main/native/
H A Dorg_apache_harmony_xml_ExpatParser.cpp73 void push(JNIEnv* env, jstring s) { function in class:StringStack
634 parsingContext->stringStack.push(env, qName);
635 parsingContext->stringStack.push(env, uri);
636 parsingContext->stringStack.push(env, localName);
719 parsingContext->stringStack.push(env, internedPrefix);

Completed in 104 milliseconds