Searched refs:push (Results 276 - 300 of 378) sorted by relevance

<<111213141516

/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DVariableHeightLayoutCache.java837 paths.push(path);
864 paths.push(path);
870 tempStacks.push(paths);
/openjdk7/hotspot/src/share/vm/memory/
H A DdefNewGeneration.cpp723 _objs_with_preserved_marks.push(obj);
724 _preserved_marks_of_objs.push(m);
744 _promo_failure_scan_stack.push(old);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DtemplateTable_sparc.cpp336 __ push(atos);
346 __ push(itos);
358 __ push(atos);
363 __ push(ftos);
441 __ push(dtos);
451 __ push(ltos);
1026 __ push_ptr(Otos_l1); // push b
1034 // get c and push on stack, reuse registers
1036 __ push_ptr(G3_scratch); // push c with tag
1054 __ push_ptr(G3_scratch); // push
[all...]
H A Dinterp_masm_sparc.hpp164 void push(TosState state); // transition state -> vtos
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/parsers/
H A DAbstractDOMParser.java1051 fSkippedElemStack.push(Boolean.TRUE);
1057 fSkippedElemStack.push(Boolean.FALSE);
1807 fBaseURIStack.push (locator.getBaseSystemId ());
1890 fBaseURIStack.push (identifier.getBaseSystemId ());
2119 fBaseURIStack.push (identifier.getExpandedSystemId ());
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DParser.java108 repIDStack.push (new IDLID ());
350 repIDStack.push (((IDLID)repIDStack.peek ()).clone ());
387 repIDStack.push (((IDLID)repIDStack.peek ()).clone ());
673 repIDStack.push (((IDLID)repIDStack.peek ()).clone ());
891 repIDStack.push (((IDLID)repIDStack.peek ()).clone ());
951 repIDStack.push (((IDLID)repIDStack.peek ()).clone ());
2088 repIDStack.push(((IDLID)repIDStack.peek ()).clone ()) ;
2176 repIDStack.push (((IDLID)repIDStack.peek ()).clone ());
2644 repIDStack.push (((IDLID)repIDStack.peek ()).clone ());
2681 repIDStack.push (((IDLI
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiTagMap.cpp964 _class_list->push(ik);
1731 _saved_mark_stack->push(mark);
1732 _saved_oop_stack->push(o);
1897 // if the object hasn't been visited then push it onto the visit stack
1900 if (!ObjectMarker::visited(obj)) visit_stack()->push(obj);
2014 // push root to visit stack when following references
2017 visit_stack()->push(obj);
2047 // push root to visit stack when following references
2050 visit_stack()->push(obj);
3264 visit_stack()->push(initial_objec
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.cpp3719 // push oop on marking stack
3899 // . else push on work-queue
4000 work_q->push(cur);
4149 // first thread to mark it, then we push it on our
4152 // push on work queue (grey set)
4162 !(_work_queue->push(obj) || _overflow_stack->par_push(obj))) {
4172 "Else push should have succeeded");
6771 // push on marking stack (stack should be empty), and drain the
6774 bool res = _mark_stack->push(obj);
6775 assert(res, "Should have space to push o
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dcompile.cpp335 if (root() != NULL) { useful.push(root()); }
337 if( cached_top_node() ) { useful.push(cached_top_node()); }
347 useful.push(m);
943 set_for_igvn(&for_igvn); // not used, but some GraphKit guys push on this
1233 return false; // Do not push debug info onto constants.
2910 frc._tests.push(n);
2931 sfpt.push(m);
2933 nstack.push(n, i); // put on stack parent and next input's index
3222 checked.push(n);
3233 checked.push(us
[all...]
H A DphaseX.hpp476 _worklist.push(n);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xinclude/
H A DXIncludeHandler.java2779 fBaseURIScope.push(fDepth);
2780 fBaseURI.push(fCurrentBaseURI.getBaseSystemId());
2781 fLiteralSystemID.push(fCurrentBaseURI.getLiteralSystemId());
2782 fExpandedSystemID.push(fCurrentBaseURI.getExpandedSystemId());
2803 * @param lanaguage the language to push onto the stack.
2806 fLanguageScope.push(fDepth);
2807 fLanguageStack.push(language);
2903 // push the new values on the stack
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DToHTMLStream.java837 m_elemContext = elemContext.push();
847 elemContext = elemContext.push(namespaceURI,localName,name);
1770 m_preserves.push(m_ispreserve);
H A DToStream.java103 * Used to push/pop values used for the field m_ispreserve, but
1201 m_disableOutputEscapingStates.push(true);
1812 m_elemContext = m_elemContext.push(namespaceURI,localName,name);
2046 * to push the state.
2464 m_preserves.push(m_ispreserve);
3190 public final boolean push(boolean val) method in class:ToStream.BoolStack
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_IR.cpp356 worklist->push(*n);
623 _work_list.push(loop_end);
639 _work_list.push(pred);
H A Dc1_Compilation.cpp543 exception_info_list()->push(new ExceptionInfo(pco, exception_handlers));
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLNSDocumentScannerImpl.java177 fElementStack.push();
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/identity/
H A DXPathMatcher.java217 // push context
219 fStepIndexes[i].push(startStep);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/sax2dtm/
H A DSAX2DTM2.java2101 m_parents.push(elemNode);
2205 m_contextIndexes.push(m_prefixMappings.size()); // for the children.
2291 m_parents.push(doc);
2294 m_contextIndexes.push(m_prefixMappings.size()); // for the next element.
/openjdk7/jdk/src/share/classes/sun/awt/util/
H A DIdentityLinkedList.java573 * @param e the element to push
576 public void push(E e) { method in class:IdentityLinkedList
/openjdk7/jdk/src/share/classes/java/util/
H A DArrayDeque.java107 * of the deque (via addLast(E), add(E), or push(E)).
489 * @param e the element to push
492 public void push(E e) { method in class:ArrayDeque
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsParallelCompact.cpp2843 cm->revisit_klass_stack()->push(k);
2847 cm->revisit_mdo_stack()->push(p);
2902 _adjusted_pointers->push(p);
2943 _live_oops->push(p);
2944 _live_oops_size->push(size);
2964 _live_oops_moved_to->push(oop(compaction_top));
2967 _cur_gc_live_oops->push(q);
2968 _cur_gc_live_oops_moved_to->push(compaction_top);
2969 _cur_gc_live_oops_size->push(size);
/openjdk7/hotspot/src/share/vm/oops/
H A DgenerateOopMap.hpp335 void push (CellTypeState cts);
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DSnmpSubRequestHandler.java169 ThreadContext.push("SnmpUserData",data);
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_MacroAssembler_x86.cpp360 push(rbp);
389 // Also first instruction will be one byte "push(rbp)" if stack banging
H A DjniFastGetField_x86_32.cpp191 __ push (rsi);

Completed in 223 milliseconds

<<111213141516