Searched refs:nm (Results 151 - 175 of 236) sorted by relevance

12345678910

/openjdk10/hotspot/src/share/vm/gc/shared/
H A DcollectedHeap.hpp573 virtual void register_nmethod(nmethod* nm);
574 virtual void unregister_nmethod(nmethod* nm);
H A DcollectedHeap.cpp138 void CollectedHeap::register_nmethod(nmethod* nm) { argument
142 void CollectedHeap::unregister_nmethod(nmethod* nm) { argument
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/text/
H A DAbstractDocument.java2334 String nm = super.getName();
2335 if (nm == null) {
2336 nm = ParagraphElementName;
2338 return nm;
2569 String nm = super.getName();
2570 if (nm == null) {
2571 nm = ContentElementName;
2573 return nm;
H A DJTextComponent.java1061 * @param nm the name of the keymap (must be unique within the
1071 public static Keymap addKeymap(String nm, Keymap parent) { argument
1072 Keymap map = new DefaultKeymap(nm, parent);
1073 if (nm != null) {
1075 getKeymapTable().put(nm, map);
1084 * @param nm the name of the keymap to remove
1087 public static Keymap removeKeymap(String nm) { argument
1088 return getKeymapTable().remove(nm);
1095 * @param nm the name of the keymap
1098 public static Keymap getKeymap(String nm) { argument
4148 DefaultKeymap(String nm, Keymap parent) argument
4301 String nm; field in class:JTextComponent.DefaultKeymap
[all...]
/openjdk10/jdk/make/src/classes/build/tools/dtdbuilder/
H A DDTDBuilder.java90 String nm = namesVector.elementAt(i);
91 out.writeUTF(nm);
/openjdk10/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DLogParser.java1006 NMethod nm = nmethods.get(id);
1007 if (nm == null) reportInternalError("nm == null");
1009 atts.getValue("zombie") != null, nm);
1085 NMethod nm = new NMethod(Double.parseDouble(search(atts, "stamp")),
1089 nmethods.put(id, nm);
1090 events.add(nm);
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/text/html/
H A DHTMLEditorKit.java1332 String nm = (elementName != null) ? (String)elementName :
1334 if (nm != null) {
1335 if (nm.equals(AbstractDocument.ContentElementName)) {
1337 } else if (nm.equals(AbstractDocument.ParagraphElementName)) {
1339 } else if (nm.equals(AbstractDocument.SectionElementName)) {
1341 } else if (nm.equals(StyleConstants.ComponentElementName)) {
1343 } else if (nm.equals(StyleConstants.IconElementName)) {
2432 BeginAction(String nm, boolean select) { argument
2433 super(nm);
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/plaf/basic/
H A DBasicTextUI.java149 String nm = getClass().getName();
150 int index = nm.lastIndexOf('.');
152 nm = nm.substring(index+1, nm.length());
154 return nm;
175 String nm = getKeymapName();
176 Keymap map = JTextComponent.getKeymap(nm);
179 map = JTextComponent.addKeymap(nm, parent);
/openjdk10/jdk/src/java.base/share/classes/java/math/
H A DMutableBigInteger.java1550 int nm = rem.value[j+1+rem.offset];
1554 qrem = nh + nm;
1557 long nChunk = (((long)nh) << 32) | (nm & LONG_MASK);
1609 int nm = rem.value[limit + rem.offset];
1613 qrem = nh + nm;
1616 long nChunk = (((long) nh) << 32) | (nm & LONG_MASK);
1725 int nm = rem.value[j + 1 + rem.offset];
1729 qrem = nh + nm;
1732 long nChunk = (((long) nh) << 32) | (nm & LONG_MASK);
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/
H A DToolkit.java571 String nm = System.getProperty("awt.toolkit");
573 cls = Class.forName(nm);
578 cls = cl.loadClass(nm);
580 throw new AWTError("Toolkit not found: " + nm);
592 throw new AWTError("Could not create Toolkit: " + nm);
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/tree/
H A DFieldExpression.java114 Identifier nm = toIdentifier(this);
115 if ((nm != null) && env.classExists(nm)) {
116 Type t = Type.tClass(nm);
398 Identifier nm = t.getClassName();
532 Identifier nm = toIdentifier(this);
533 if ((nm != null) && env.classExists(nm)) {
534 loc.right = new TypeExpression(where, Type.tClass(nm));
662 // See 'ClassDefinition.getInnerClass(env, nm)'
[all...]
/openjdk10/hotspot/src/os_cpu/linux_ppc/vm/
H A Dos_linux_ppc.cpp444 CompiledMethod* nm = (cb != NULL) ? cb->as_compiled_method_or_null() : NULL; local
445 if (nm != NULL && nm->has_unsafe_access()) {
/openjdk10/hotspot/src/share/vm/code/
H A DcompiledIC.cpp209 CompiledMethod* nm = iter->code(); local
211 assert(nm != NULL, "must pass compiled method");
212 assert(nm->contains(ic_call), "must be in compiled method");
H A DrelocInfo.hpp500 // RelocIterator iter(nm);
505 // RelocIterator iter(nm);
560 void initialize(CompiledMethod* nm, address begin, address limit);
566 RelocIterator(CompiledMethod* nm, address begin = NULL, address limit = NULL);
1387 inline RelocIterator::RelocIterator(CompiledMethod* nm, address begin, address limit) { argument
1388 initialize(nm, begin, limit);
/openjdk10/hotspot/src/os_cpu/linux_arm/vm/
H A Dos_linux_arm.cpp392 CompiledMethod* nm = (cb != NULL) ? cb->as_compiled_method_or_null() : NULL; local
393 if (nm != NULL && nm->has_unsafe_access()) {
/openjdk10/hotspot/src/os_cpu/linux_sparc/vm/
H A Dos_linux_sparc.cpp389 CompiledMethod* nm = cb->as_compiled_method_or_null(); local
390 if (nm != NULL && nm->has_unsafe_access()) {
/openjdk10/hotspot/src/os_cpu/linux_s390/vm/
H A Dos_linux_s390.cpp438 CompiledMethod* nm = (cb != NULL) ? cb->as_compiled_method_or_null() : NULL; local
439 if (nm != NULL && nm->has_unsafe_access()) {
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/sparc/
H A DSPARCFrame.java235 NMethod nm = (NMethod) cb;
236 if (pc.equals(nm.deoptHandlerBegin())) {
238 pc = this.getUnextendedSP().getAddressAt(nm.origPCOffset());
/openjdk10/hotspot/src/share/vm/runtime/
H A DcompilationPolicy.cpp395 int bci, CompLevel comp_level, CompiledMethod* nm, JavaThread* thread) {
499 CompiledMethod* nm = m->code(); local
500 if (nm == NULL ) {
394 event(const methodHandle& method, const methodHandle& inlinee, int branch_bci, int bci, CompLevel comp_level, CompiledMethod* nm, JavaThread* thread) argument
H A Dsafepoint.cpp1081 CompiledMethod* nm = (CompiledMethod*)cb; local
1091 assert( nm->is_at_poll_or_poll_return(real_return_addr), "should not be at call" );
1098 if( nm->is_at_poll_return(real_return_addr) ) {
1100 bool return_oop = nm->method()->is_returning_oop();
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/text/html/parser/
H A DParser.java1079 String nm = getString(pos);
1080 Entity ent = dtd.getEntity(nm);
1087 ent = dtd.getEntity(nm.toLowerCase());
1091 if (nm.length() == 0) {
1092 error("invalid.entref", nm);
1096 String str = "&" + nm + (semicolon ? ";" : "");
/openjdk10/hotspot/src/share/vm/interpreter/
H A DinterpreterRuntime.cpp900 nmethod* nm = frequency_counter_overflow_inner(thread, branch_bcp); local
901 assert(branch_bcp != NULL || nm == NULL, "always returns null for non OSR requests");
902 if (branch_bcp != NULL && nm != NULL) {
905 // nm could have been unloaded so look it up again. It's unsafe
906 // to examine nm directly since it might have been freed and used
911 nm = method->lookup_osr_nmethod_for(bci, CompLevel_none, false);
915 if (nm != NULL) {
916 tty->print("OSR entry @ pc: " INTPTR_FORMAT ": ", p2i(nm->osr_entry()));
917 nm->print();
921 return nm;
[all...]
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/java/
H A DBinaryClass.java358 Identifier nm =
362 Type.tClass(nm);
/openjdk10/hotspot/src/share/vm/aot/
H A DaotCodeHeap.hpp286 void alive_methods_do(void f(CompiledMethod* nm));
/openjdk10/hotspot/src/share/vm/opto/
H A Druntime.hpp195 static address handle_exception_C_helper(JavaThread* thread, nmethod*& nm);

Completed in 374 milliseconds

12345678910