Searched refs:push (Results 51 - 75 of 378) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/sun/tools/pack/verify/
H A DClassCompare.java153 s.push("LocalVariable");
154 s.push("LocalVariableType");
155 s.push("LineNumber");
156 s.push("SourceFile");
/openjdk7/jdk/test/javax/swing/SwingWorker/6432565/
H A Dbug6432565.java39 Toolkit.getDefaultToolkit().getSystemEventQueue().push(new EventProcessor());
/openjdk7/jaxp/src/com/sun/java_cup/internal/runtime/
H A Dlr_parser.java559 /* push dummy Symbol with start state to get us underway */
561 stack.push(new Symbol(0, start_state()));
582 stack.push(cur_token);
611 stack.push(lhs_sym);
749 /* push dummy Symbol with start state to get us underway */
751 stack.push(new Symbol(0, start_state()));
774 stack.push(cur_token);
809 stack.push(lhs_sym);
973 stack.push(error_token);
1078 /* push th
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DmarkSweep.cpp70 _revisit_klass_stack.push(k);
90 _revisit_mdo_stack.push(p);
152 _preserved_mark_stack.push(mark);
153 _preserved_oop_stack.push(obj);
228 _adjusted_pointers->push(p);
264 _live_oops->push(p);
265 _live_oops_size->push(size);
285 _live_oops_moved_to->push(oop(compaction_top));
288 _cur_gc_live_oops->push(q);
289 _cur_gc_live_oops_moved_to->push(compaction_to
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DJJTParserState.java70 nodes.push(n);
104 marks.push(new Integer(mk));
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_MacroAssembler_x86.hpp97 // Note: NEVER push values directly, but only through following push_xxx functions;
100 void push_jint (jint i) { _rsp_offset++; push(i); }
104 void push_reg (Register r) { _rsp_offset++; push(r); }
H A Ddump_x86_64.cpp96 __ push(c_rarg1); // save & free register
97 __ push(c_rarg0); // save "this"
H A Dinterp_masm_x86_32.hpp108 void push(TosState state); // transition state -> vtos
112 void push(Register r ) { ((MacroAssembler*)this)->push(r); } function in class:InterpreterMacroAssembler
113 void push(int32_t imm ) { ((MacroAssembler*)this)->push(imm); } function in class:InterpreterMacroAssembler
117 void push(void* v ); // Add unimplemented ambiguous method
H A Dinterp_masm_x86_64.hpp126 void push(Register r ) { ((MacroAssembler*)this)->push(r); } function in class:InterpreterMacroAssembler
127 void push(int32_t imm ) { ((MacroAssembler*)this)->push(imm); } function in class:InterpreterMacroAssembler
130 void push(TosState state); // transition state -> vtos
H A Druntime_x86_32.cpp93 __ push(rdx);
137 __ push(rax);
H A DtemplateInterpreter_x86_32.cpp310 __ push(t); // restore return address
327 __ push(state);
484 __ push(rsi);
531 __ push(rax);
589 __ push(rax); // save return address
593 __ push(rsi); // set sender sp
594 __ push((int32_t)NULL_WORD); // leave last_sp as null
597 __ push(rbx); // save methodOop
605 __ push(rdx); // set the mdp (method data pointer)
607 __ push(
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A Dxmlstream.hpp83 void va_tag(bool push, const char* format, va_list ap);
84 virtual void see_tag(const char* tag, bool push) NOT_DEBUG({});
/openjdk7/jdk/test/java/awt/EventQueue/PushPopDeadlock2/
H A DPushPopTest.java54 seq.push(eq1);
57 eq1.push(eq2);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/sax2dtm/
H A DSAX2RTFDTM.java287 mark_size.push(m_size);
288 mark_nsdeclset_size.push((m_namespaceDeclSets==null)
291 mark_nsdeclelem_size.push((m_namespaceDeclSetElements==null)
296 mark_data_size.push(m_data.size());
297 mark_char_size.push(m_chars.size());
298 mark_doq_size.push(m_dataOrQName.size());
/openjdk7/jdk/src/share/classes/java/text/
H A DDictionaryBasedBreakIterator.java387 possibleBreakPositions.push(Integer.valueOf(text.getIndex()));
398 currentBreakPositions.push(Integer.valueOf(text.getIndex()));
453 currentBreakPositions.push(new Integer(text.getIndex()));
456 currentBreakPositions.push(new Integer(text.getIndex()));
473 currentBreakPositions.push(temp);
499 currentBreakPositions.push(Integer.valueOf(endPos));
/openjdk7/jdk/src/macosx/native/jobjc/src/core/java/com/apple/jobjc/
H A DInvoke.java93 IDCoder.INST.push(nativeBuffer, obj);
94 PrimitivePointerCoder.INST.push(nativeBuffer.runtime, nativeBuffer, selPtr);
185 IDCoder .INST.push(argBuf.runtime, valPtr, obj);
186 NSClassCoder.INST.push(argBuf.runtime, valPtr + ptrLen, cls);
189 PrimitivePointerCoder.INST.push(argBuf.runtime, argBuf, valPtr);
190 PrimitivePointerCoder.INST.push(argBuf.runtime, argBuf, selPtr);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/readers/
H A DOASISXMLCatalogReader.java108 baseURIStack.push(catalog.getCurrentBase());
109 overrideStack.push(catalog.getDefaultOverride());
140 namespaceStack.push(namespaceURI);
152 baseURIStack.push(baseURI);
171 baseURIStack.push(baseURIStack.peek());
191 overrideStack.push(override);
210 overrideStack.push(overrideStack.peek());
351 baseURIStack.push(baseURI);
370 baseURIStack.push(baseURIStack.peek());
482 overrideStack.push(overrid
[all...]
/openjdk7/jdk/src/macosx/native/jobjc/src/tests/java/com/apple/jobjc/
H A DSubclassingTest.java139 p.getCoder().push(ctx, p);
153 IDCoder.INST.push(ctx, orig);
170 SIntCoder.INST.push(ctx, arg1);
171 SLongLongCoder.INST.push(ctx, arg2);
172 FloatCoder.INST.push(ctx, arg3);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/parser/
H A DHTTPExtensionHandler.java79 context.push();
105 context.push();
187 context.push();
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvframe_hp.cpp149 locals->push(new jvmtiDeferredLocalVariable(index, type, value));
153 // No matching vframe must push a new vframe
160 deferred->push(new jvmtiDeferredLocalVariableSet(method(), bci(), fr().id()));
212 monitors->push(info);
230 result->push(new MonitorInfo(k->as_klassOop(), resolve_monitor_lock(mv->basic_lock()),
233 result->push(new MonitorInfo(owner_sv->get_obj()(), resolve_monitor_lock(mv->basic_lock()),
352 locals()->push(new jvmtiDeferredLocalVariable(idx, type, val));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DLivenessAnalysis.java99 path.push(new LivenessPathElement(target, null));
152 nextPath.push(nextElement);
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DMemoryHandler.java34 * conditions, the <tt>MemoryHandler</tt> will push out its current buffer
38 * There are three main models for triggering a push of the buffer:
44 * An external class calls the <tt>push</tt> method explicitly.
47 * <tt>LogRecord</tt> and calls <tt>push</tt> if a record matches some
65 * <li> java.util.logging.MemoryHandler.push
90 pushLevel = manager.getLevelProperty(cname +".push", Level.SEVERE);
137 * @param pushLevel message level to push on
165 * greater than or equal to the <tt>pushLevel</tt> then <tt>push</tt>
185 push();
194 public synchronized void push() { method in class:MemoryHandler
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/serialization/
H A DXMLWriter.java81 elementStack.push(name);
90 elementStack.push(name);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DBindRed.java66 stb.refererStack.push(e); // referer is element
73 stb.refererStack.push(type); // referer is itself
/openjdk7/hotspot/src/share/vm/opto/
H A Dstringopts.cpp111 void push(Node* value, int mode) { function in class:StringConcat
117 push(value, StringMode);
120 push(value, StringNullCheckMode);
123 push(value, IntMode);
126 push(value, CharMode);
189 assert(!_control.contains(ctrl), "only push once");
190 _control.push(ctrl);
280 result->_control.push(n);
286 result->_control.push(n);
375 worklist.push(
[all...]

Completed in 97 milliseconds

1234567891011>>