Searched refs:isNew (Results 1 - 25 of 32) sorted by relevance

12

/openjdk10/jdk/test/java/lang/management/ThreadMXBean/
H A DFindDeadlocks.java87 boolean isNew = true;
90 isNew = false;
94 if (isNew) {
/openjdk10/jdk/src/java.prefs/macosx/classes/java/util/prefs/
H A DMacOSXPreferences.java97 boolean isNew)
99 this(parent, name, isNew, false, false);
103 boolean isNew, boolean isRoot, boolean isUser)
112 if (isNew)
113 newNode = isNew;
218 boolean isNew = file.addChildToNode(path, name);
219 return new MacOSXPreferences(this, name, isNew);
96 MacOSXPreferences(MacOSXPreferences parent, String name, boolean isNew) argument
102 MacOSXPreferences(MacOSXPreferences parent, String name, boolean isNew, boolean isRoot, boolean isUser) argument
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/event/
H A DTreeSelectionEvent.java94 * @param isNew whether or not the path is new to the selection, false
99 public TreeSelectionEvent(Object source, TreePath path, boolean isNew, argument
107 areNew[0] = isNew;
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/
H A DNodeFlood.java66 public boolean isNew(Node node) { method in class:NodeFlood
67 return visited.isNew(node);
H A DNodeMap.java62 if (isNew(node)) {
121 public boolean isNew(Node node) { method in class:NodeMap
127 assert !isNew(node) : "this node was added to the graph after creating the node map : " + node;
H A DNodeBitMap.java63 public boolean isNew(Node node) { method in class:NodeBitMap
174 assert grow || !isNew(node) : "node was added to the graph after creating the node bitmap: " + node;
/openjdk10/test/lib/jdk/test/lib/hprof/model/
H A DJavaHeapObject.java123 public boolean isNew() { method in class:JavaHeapObject
124 return getClazz().isNew(this);
H A DSnapshot.java109 // True iff some heap objects have isNew set
210 * isNew set
212 * @see JavaThing.isNew()
343 boolean isNew;
346 isNew = false;
350 isNew = true;
352 isNew = !t.isSameTypeAs(other);
355 t.setNew(isNew);
565 void setNew(JavaHeapObject obj, boolean isNew) { argument
567 if (isNew) {
572 boolean isNew(JavaHeapObject obj) { method in class:Snapshot
[all...]
H A DJavaClass.java455 final boolean isNew(JavaHeapObject obj) { method in class:JavaClass
456 return mySnapshot.isNew(obj);
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/objects/
H A DNativeWeakSet.java61 * @param isNew whether the new operator used
67 public static Object construct(final boolean isNew, final Object self, final Object arg) { argument
68 if (!isNew) {
H A DNativeWeakMap.java60 * @param isNew whether the new operator used
66 public static Object construct(final boolean isNew, final Object self, final Object arg) { argument
67 if (!isNew) {
H A DNativeMap.java68 * @param isNew is this called with the new operator?
74 public static Object construct(final boolean isNew, final Object self, final Object arg) { argument
75 if (!isNew) {
H A DNativeSet.java66 * @param isNew whether the new operator used
72 public static Object construct(final boolean isNew, final Object self, final Object arg){ argument
73 if (!isNew) {
H A DNativeRegExp.java124 * @param isNew is the new operator used for instantiating this regexp
130 public static NativeRegExp constructor(final boolean isNew, final Object self, final Object... args) { argument
145 * @param isNew is the new operator used for instantiating this regexp
150 public static NativeRegExp constructor(final boolean isNew, final Object self) { argument
159 * @param isNew is the new operator used for instantiating this regexp
165 public static NativeRegExp constructor(final boolean isNew, final Object self, final Object pattern) { argument
174 * @param isNew is the new operator used for instantiating this regexp
181 public static NativeRegExp constructor(final boolean isNew, final Object self, final Object pattern, final Object flags) { argument
H A DNativeJavaImporter.java90 * @param isNew is the new operator used for instantiating this NativeJavaImporter
96 public static NativeJavaImporter constructor(final boolean isNew, final Object self, final Object... args) { argument
H A DNativeDate.java157 * @param isNew is this Date constructed with the new operator
162 public static Object construct(final boolean isNew, final Object self) { argument
164 return isNew ? result : toStringImpl(result, FORMAT_DATE_TIME);
170 * @param isNew is this Date constructed with the new operator
176 public static Object construct(final boolean isNew, final Object self, final Object... args) { argument
177 if (! isNew) {
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop.phases/src/org/graalvm/compiler/loop/phases/
H A DLoopPartialUnrollPhase.java90 if (graph.isNew(mark, anyLoop.loopBegin())) {
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/ir/
H A DCallNode.java122 * @param isNew true if this is a constructor call with the "new" keyword
124 public CallNode(final int lineNumber, final long token, final int finish, final Expression function, final List<Expression> args, final boolean isNew) { argument
129 this.flags = isNew ? IS_NEW : 0;
317 public boolean isNew() { method in class:CallNode
/openjdk10/langtools/src/jdk.jshell/share/classes/jdk/jshell/
H A DUnit.java68 private final boolean isNew; field in class:Unit
95 this.isNew = siOld == null;
99 this.seq = isNew? 0 : siOld.sequenceNumber();
100 this.classNameInitial = isNew? "<none>" : siOld.className();
101 this.prevStatus = (isNew || isDependency)
113 this.isNew = false;
400 if (isNew && si.kind() == Kind.METHOD && status.isDefined()) {
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/tree/
H A DDefaultTreeSelectionModel.java1104 newness[counter] = placeholder.isNew;
1265 protected boolean isNew; field in class:PathPlaceHolder
1268 PathPlaceHolder(TreePath path, boolean isNew) { argument
1270 this.isNew = isNew;
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.printer/src/org/graalvm/compiler/printer/
H A DIdealGraphPrinter.java187 Block block = nodeToBlock == null || nodeToBlock.isNew(node) ? null : nodeToBlock.get(node);
307 Block blk = nodeToBlock.isNew(n) ? null : nodeToBlock.get(n);
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.virtual/src/org/graalvm/compiler/virtual/phases/ea/
H A DEffectsClosure.java499 if (!hasScalarReplacedInputs.isNew(usage)) {
511 if (node == null || !node.isAlive() || aliases.isNew(node)) {
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/
H A DBasePhase.java273 if (!graph.isNew(mark, node) && node.isAlive()) {
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/util/
H A DGraphUtil.java356 if (graph.isNew(mark, old)) {
360 assert !graph.isNew(mark, n) : old + " -> " + n;
363 assert !graph.isNew(mark, n) : old + " -> " + n;
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/
H A DLoweringPhase.java187 if (!activeGuards.isNew(usage) && activeGuards.isMarked(usage) && ((GuardNode) usage).isNegated() == negated) {
313 while (cur != null && graph.isNew(preLoweringMark, cur)) {
508 if (schedule.getCFG().getNodeToBlock().isNew(usage) || schedule.getCFG().blockFor(usage) == null) {

Completed in 246 milliseconds

12