Searched defs:that (Results 201 - 216 of 216) sorted by relevance

123456789

/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMethodType.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
63 * are systematically presented in two versions, so that both Java arrays and
116 * that any Java method can receive in its argument list.
660 private boolean equals(MethodType that) { argument
661 return this.rtype == that.rtype
662 && Arrays.equals(this.ptypes, that.ptypes);
766 // This means that dw must be cast-compatible with src.
784 // subclass of Number which wraps a value that ca
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DgcTaskManager.hpp9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
154 static void destroy(GCTaskQueue* that);
217 // A GCTaskQueue that can be synchronized.
229 static void destroy(SynchronizedGCTaskQueue* that) { argument
230 if (that != NULL) {
231 delete that;
242 // These check that you hold the lock
305 // GC thread that gets a work stealing task continues to execute
306 // that tas
393 destroy(GCTaskManager* that) argument
614 destroy(BarrierGCTask* that) argument
645 destroy(ReleasingBarrierGCTask* that) argument
674 destroy(NotifyingBarrierGCTask* that) argument
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dblock.hpp9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
45 // Note that the constructor just zeros things, and since I use Arena
119 // CAUTION: num_preds() is ONE based, so that predecessor numbers match
150 Block* dom_lca(Block* that); // Compute LCA in dominator tree.
152 bool dominates(Block* that) { argument
153 int dom_diff = this->_dom_depth - that->_dom_depth;
155 for (; dom_diff < 0; dom_diff++) that = that->_idom;
156 return this == that;
[all...]
H A DcallGenerator.cpp9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
283 // Record that this call site should be revisited once the main
290 // that the late inlining logic can distinguish between fall
327 // Make a clone of the JVMState that appropriate to use for driving a parse
1066 bool WarmCallInfo::warmer_than(WarmCallInfo* that) { argument
1067 assert(this != that, "compare only different WCIs");
1068 assert(this->heat() != 0 && that->heat() != 0, "call compute_heat 1st");
1069 if (this->heat() > that->heat()) return true;
1070 if (this->heat() < that
[all...]
H A Dnode.cpp9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
59 // Arrange that the lowest five decimal digits of _debug_idx
100 // Ensure that the loop body has just deleted the last guy produced.
102 // Ensure that at least one copy of the last-seen edge was deleted.
104 // Unfortunately, we have no way to verify that all the deletions delete
105 // that same edge. On this point we must use the Honor System.
113 void DUIterator_Common::reset(const DUIterator_Common& that) { argument
114 if (this == &that) return; // ignore assignment to self
117 _last = that
156 reset(const DUIterator& that) argument
236 reset(const DUIterator_Fast& that) argument
[all...]
H A Dnode.hpp9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
180 // calculus sense that gives meaning to the Node. Node inputs are ordered (so
181 // that "a-b" is different from "b-a"). The inputs to a Node are the inputs to
209 // New Operator that takes a Compile pointer, this will eventually
365 // Record that a change happened here.
448 // Record that a change happened here.
502 // super classes so that queries for super classes are also valid.
535 // so that it's values fits into 16 bits.
792 // (In that cas
1128 operator =(const DUIterator& that) argument
1196 operator =(const DUIterator_Fast& that) argument
1253 operator =(const DUIterator_Last& that) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DAttribute.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
103 Attribute that = (Attribute) o;
104 return this.def.compareTo(that.def);
113 // of some common cases. (Note that Code attributes are
205 // The Code spec is incomplete, in that it does not distinguish
533 public boolean equals(Layout that) { argument
534 return this.name.equals(that.name)
535 && this.layout.equals(that
[all...]
H A DConstantPool.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
159 public boolean eq(Entry that) { // same reference argument
160 assert(that != null);
161 return this == that || this.equals(that);
178 Entry that = (Entry) o;
180 if (this.tag != that.tag) {
181 return TAG_ORDER[this.tag] - TAG_ORDER[that
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DSymbol.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
53 * If you write code that depends on this, you do so at your own risk.
71 * method to make sure that the class symbol is loaded.
81 * method to make sure that the class symbol is loaded.
337 /** Check for hiding. Note that this doesn't handle multiple
361 * it is already assumed that the interface is a superinterface
403 * members of class `origin'? It is assumed that _other is a member
406 * It is assumed that bot
557 precedes(TypeSymbol that, Types types) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DToken.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
55 * that is known to be in a future version of IDL.
263 // <f60858.1> Keywords in CORBA 2.2 that we support.
268 // <f60858.1> New keywords in CORBA 2.3 (preliminary) that we support.
273 // <d62023> New keywords in CORBA 2.4rtf (accepted 2.3) that we support.
274 // Note that "factory" replaces "init". Scanner must account for this in
323 * Strings that are keywords at higher CORBA levels than the corbaLevel
324 * argument create identifier tokens that ar
567 equals(Token that) argument
[all...]
/openjdk7/jdk/src/share/classes/java/net/
H A DURI.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
76 * <p> An <i>absolute</i> URI specifies a scheme; a URI that is not absolute is
91 * scheme-specific part begins with a slash character, or a relative URI, that
92 * is, a URI that does not specify a scheme. Some examples of hierarchical
123 * authority component that does not parse in this way is considered to be
128 * relative. The path of a hierarchical URI that is either absolute or
150 * empty string as its value; this is not equivalent to that component being
224 * that mus
1552 compareTo(URI that) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DAttr.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
64 * If you write code that depends on this, you do so at your own risk.
191 * It is not necessary in this case since we know that kind and type
236 /** Check that variable can be assigned to.
261 * It is assumed that tree is either a SELECT or an IDENT.
520 * Check that all the types are references.
598 // There's a problem with evaluating annotations in the right order, such that
600 // null. In that cas
3340 initTypeIfNeeded(JCTree that) argument
3356 visitIdent(JCIdent that) argument
3363 visitSelect(JCFieldAccess that) argument
3371 visitClassDef(JCClassDecl that) argument
3380 visitMethodDef(JCMethodDecl that) argument
3389 visitVarDef(JCVariableDecl that) argument
3399 visitNewClass(JCNewClass that) argument
3410 visitAssignop(JCAssignOp that) argument
3417 visitBinary(JCBinary that) argument
3424 visitUnary(JCUnary that) argument
[all...]
/openjdk7/jdk/test/java/lang/invoke/indify/
H A DIndify.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
1281 public boolean equals(Constant that) { argument
1282 return (this.tag == that.tag && this.itemAsComparable().equals(that.itemAsComparable()));
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DXMLKit.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
302 // Following that are optional filler elements, all null.
303 // Following that are attributes as key/value pairs.
575 public boolean equals(Element that) { argument
576 if (!this.name.equals(that.name)) {
579 if (this.size != that.size) {
584 Object[] thatParts = that.parts;
603 return this.equalAttrs(that);
636 compareTo(Element that) argument
675 assertAttrCompareOK(int r, Element that) argument
1982 equalAttrs(Element that) argument
1993 compareAttrs(int thisAlen, Element that, int thatAlen, boolean fullCompare) argument
2832 compareTo(Special that) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DJCTree.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
52 * classes that represent identifier uses or definitions also define a
53 * Symbol field that denotes the represented identifier. Classes for
70 * If you write code that depends on this, you do so at your own risk.
424 * @param docComments A hashtable that stores all documentation comments
427 * @param endPositions A hashtable that stores ending positions of source
2188 public void visitTopLevel(JCCompilationUnit that) { visitTree(that); } argument
2189 visitImport(JCImport that) argument
2190 visitClassDef(JCClassDecl that) argument
2191 visitMethodDef(JCMethodDecl that) argument
2192 visitVarDef(JCVariableDecl that) argument
2193 visitSkip(JCSkip that) argument
2194 visitBlock(JCBlock that) argument
2195 visitDoLoop(JCDoWhileLoop that) argument
2196 visitWhileLoop(JCWhileLoop that) argument
2197 visitForLoop(JCForLoop that) argument
2198 visitForeachLoop(JCEnhancedForLoop that) argument
2199 visitLabelled(JCLabeledStatement that) argument
2200 visitSwitch(JCSwitch that) argument
2201 visitCase(JCCase that) argument
2202 visitSynchronized(JCSynchronized that) argument
2203 visitTry(JCTry that) argument
2204 visitCatch(JCCatch that) argument
2205 visitConditional(JCConditional that) argument
2206 visitIf(JCIf that) argument
2207 visitExec(JCExpressionStatement that) argument
2208 visitBreak(JCBreak that) argument
2209 visitContinue(JCContinue that) argument
2210 visitReturn(JCReturn that) argument
2211 visitThrow(JCThrow that) argument
2212 visitAssert(JCAssert that) argument
2213 visitApply(JCMethodInvocation that) argument
2214 visitNewClass(JCNewClass that) argument
2215 visitNewArray(JCNewArray that) argument
2216 visitParens(JCParens that) argument
2217 visitAssign(JCAssign that) argument
2218 visitAssignop(JCAssignOp that) argument
2219 visitUnary(JCUnary that) argument
2220 visitBinary(JCBinary that) argument
2221 visitTypeCast(JCTypeCast that) argument
2222 visitTypeTest(JCInstanceOf that) argument
2223 visitIndexed(JCArrayAccess that) argument
2224 visitSelect(JCFieldAccess that) argument
2225 visitIdent(JCIdent that) argument
2226 visitLiteral(JCLiteral that) argument
2227 visitTypeIdent(JCPrimitiveTypeTree that) argument
2228 visitTypeArray(JCArrayTypeTree that) argument
2229 visitTypeApply(JCTypeApply that) argument
2230 visitTypeUnion(JCTypeUnion that) argument
2231 visitTypeParameter(JCTypeParameter that) argument
2232 visitWildcard(JCWildcard that) argument
2233 visitTypeBoundKind(TypeBoundKind that) argument
2234 visitAnnotation(JCAnnotation that) argument
2235 visitModifiers(JCModifiers that) argument
2236 visitErroneous(JCErroneous that) argument
2237 visitLetExpr(LetExpr that) argument
2239 visitTree(JCTree that) argument
[all...]
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
146 recommended that MPSS be used for Solaris 9 and above.
182 // Some more macros from sys/mman.h that are not present in Solaris 8.
407 // Version of setup_interruptible() for threads that are already in
559 // We also need to take care that the loop (below) terminates as the
561 // request and the loop that builds the list of processor ids. Unfortunately
565 // not too sparse". MAX_PROCESSOR_ID is used to ensure that we eventually
568 // In the future we'll be able to use sysconf(_SC_CPUID_MAX), but that's
597 // we've got. Note that i
5075 lwpstatus_t * that; local
[all...]

Completed in 201 milliseconds

123456789