Searched refs:push (Results 26 - 50 of 378) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/api/wsdl/
H A DTWSDLParserContext.java43 void push(); method in interface:TWSDLParserContext
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DLivenessPath.java85 void push(LivenessPathElement el) { method in class:LivenessPath
86 stack.push(el);
99 dup.stack.push(stack.get(i));
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DmarkSweep.inline.hpp52 _root_refs_stack->push(p);
73 _marking_stack.push(obj);
81 _objarray_stack.push(task);
108 _root_refs_stack->push(p);
110 _other_refs_stack->push(p);
/openjdk7/jdk/src/macosx/native/jobjc/src/core/java/com/apple/jobjc/
H A DCoder.java70 public abstract void push(final JObjCRuntime runtime, final long addr, final T x); method in class:Coder
73 public void push(final NativeArgumentBuffer args, final T x){ method in class:Coder
74 push(args.runtime, args.argValuesPtr, x);
150 @Override public void push(JObjCRuntime runtime, long addr, Object x) { throw new RuntimeException("Trying to push a Void."); } method in class:Coder.VoidCoder
157 @Override public void push(JObjCRuntime runtime, long addr, Object x) { throw new RuntimeException("Coder not implemented");} method in class:Coder.UnknownCoder
166 public void push(JObjCRuntime runtime, long addr, long x) { method in class:Coder.PrimitivePointerCoder
173 public void push(final JObjCRuntime runtime, final NativeArgumentBuffer argBuf, final long ptr) { method in class:Coder.PrimitivePointerCoder
174 push(runtime, argBuf.argValuesPtr, ptr);
187 @Override public void push(JObjCRuntim method in class:Coder.PrimitivePointerCoder
198 @Override public void push(JObjCRuntime runtime, long addr, Pointer x) { method in class:Coder.PointerCoder
208 @Override public void push(JObjCRuntime runtime, long addr, SEL x) { method in class:Coder.SELCoder
239 @Override public void push(NativeArgumentBuffer argBuf, Struct x) { method in class:Coder.StructCoder
244 @Override public void push(JObjCRuntime rt, long addr, Struct x) { method in class:Coder.StructCoder
270 @Override public void push(final JObjCRuntime runtime, final long addr, final ID x) { method in class:Coder.IDCoder
285 @Override public void push(JObjCRuntime runtime, long addr, NSClass x) { method in class:Coder.NSClassCoder
[all...]
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkIntrinsics.cpp179 state()->push(
188 state()->push(
192 state()->push(NULL);
203 state()->push(
206 state()->push(NULL);
216 state()->push(
227 state()->push(
231 state()->push(NULL);
235 state()->push(
271 state()->push(
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DXPathContext.java336 m_prefixResolvers.push(null);
337 m_currentNodes.push(DTM.NULL);
338 m_currentExpressionNodes.push(DTM.NULL);
339 m_saxLocations.push(null);
379 m_prefixResolvers.push(null);
380 m_currentNodes.push(DTM.NULL);
381 m_currentExpressionNodes.push(DTM.NULL);
382 m_saxLocations.push(null);
405 m_saxLocations.push(location);
415 m_saxLocations.push(nul
[all...]
/openjdk7/jdk/src/share/classes/sun/rmi/transport/tcp/
H A DMultiplexOutputStream.java33 * point it attempts to push a packet of bytes through to the remote
34 * endpoint. This will never push more bytes than the amount already
98 push();
162 push();
200 private void push() throws IOException method in class:MultiplexOutputStream
/openjdk7/jdk/src/share/classes/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.java147 * <td>{@link #push push(e)}</td>
493 * @param e the element to push
503 void push(E e); method in interface:Deque
/openjdk7/jdk/src/windows/native/sun/security/pkcs11/wrapper/
H A Dp11_md.h62 #pragma pack(push, cryptoki, 1)
/openjdk7/hotspot/src/share/vm/opto/
H A Dparse2.cpp54 push(ld);
651 push(res);
680 push(res);
718 push( _gvn.transform(phi) );
724 push( _gvn.transform( new (C) ModINode(control(),a,b) ) );
747 push(_gvn.makecon(ret_addr));
1406 push(zerocon(T_FLOAT));
1410 push(makecon(TypeF::ONE));
1414 push(makecon(TypeF::make(2.0f)));
1425 case Bytecodes::_iconst_m1:push(intco
[all...]
H A Dparse3.cpp148 // Does this field have a constant value? If so, just push the value.
207 push(ld);
313 case T_BOOLEAN: push( intcon(constant.as_boolean()) ); break;
314 case T_INT: push( intcon(constant.as_int()) ); break;
315 case T_CHAR: push( intcon(constant.as_char()) ); break;
316 case T_BYTE: push( intcon(constant.as_byte()) ); break;
317 case T_SHORT: push( intcon(constant.as_short()) ); break;
318 case T_FLOAT: push( makecon(TypeF::make(constant.as_float())) ); break;
329 push( zerocon(T_OBJECT) );
332 push( makeco
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DElemContext.java95 * but are rather re-used when a push is required.
103 * is held by the serializer is changed via a quick pop() or push().
164 final ElemContext push() method in class:ElemContext
195 final ElemContext push( method in class:ElemContext
H A DNamespaceMappings.java80 * mappings at deeper depths push later on such a stack. Mappings pushed
122 stack.push(new MappingRecord(EMPTYSTRING,EMPTYSTRING,0));
125 stack.push(new MappingRecord( XML_PREFIX,
128 m_nodeStack.push(new MappingRecord(null,null,-1));
238 stack.push(map);
239 m_nodeStack.push(map);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueStack.hpp157 void raw_push(Value t) { _stack.push(t); }
161 void ipush(Value t) { _stack.push(check(intTag , t)); }
162 void fpush(Value t) { _stack.push(check(floatTag , t)); }
163 void apush(Value t) { _stack.push(check(objectTag , t)); }
164 void rpush(Value t) { _stack.push(check(addressTag, t)); }
165 void lpush(Value t) { _stack.push(check(longTag , t)); _stack.push(NULL); }
166 void dpush(Value t) { _stack.push(check(doubleTag , t)); _stack.push(NULL); }
168 void push(ValueTyp function in class:ValueStack
[all...]
/openjdk7/jdk/test/java/awt/EventDispatchThread/PreserveDispathThread/
H A DPreserveDispatchThread.java71 * Tests that push/pop doesn't change the dispatch thread if
81 seq.push(teq);
94 * Tests that push/pop doesn't change the dispatch thread if
101 seq.push(teq);
146 seq.push(teq);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/utils/
H A DBoolStack.java99 public final boolean push(boolean val) method in class:BoolStack
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DBoolStack.java90 public final boolean push(boolean val) method in class:BoolStack
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/
H A DStackImpl.java73 public final Object push( Object item ) { method in class:StackImpl
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/util/
H A DRepositoryIdCache.java61 push(new RepositoryId());
74 push(element);
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DElementIterator.java155 it.elementStack.push(clonee);
178 elementStack.push(new StackItem(root));
262 /* In this case we need to push the child(branch)
265 elementStack.push(new StackItem(child));
327 elementStack.push(top);
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcmsOopClosures.inline.hpp54 if (!_revisit_stack->push(oop(k))) {
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_FpuStackSim_x86.hpp55 void push(int rnr);
/openjdk7/hotspot/src/cpu/zero/vm/
H A DstubGenerator_zero.cpp257 stack->push(0); // next_frame, filled in later
261 stack->push(ENTRY_FRAME);
264 stack->push((intptr_t) call_wrapper);
268 stack->push(parameters[i]);
/openjdk7/hotspot/src/share/vm/runtime/
H A DstackValueCollection.hpp40 void add(StackValue *val) const { _values->push(val); }

Completed in 60 milliseconds

1234567891011>>