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

123456789

/openjdk7/jdk/src/share/native/sun/font/layout/
H A DGlyphIterator.cpp8 * by Oracle in the LICENSE file that accompanied this code.
10 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * version 2 for more details (a copy is included in the LICENSE file that
71 GlyphIterator::GlyphIterator(GlyphIterator &that) argument
72 : glyphStorage(that.glyphStorage)
74 direction = that.direction;
75 position = that.position;
76 nextLimit = that.nextLimit;
77 prevLimit = that.prevLimit;
79 glyphPositionAdjustments = that
89 GlyphIterator(GlyphIterator &that, FeatureMask newFeatureMask) argument
107 GlyphIterator(GlyphIterator &that, le_uint16 newLookupFlags) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DX509CRLEntryImpl.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
334 * Return true if a critical extension is found that is
349 * Object that are marked critical.
370 * Object that are marked critical.
390 * by ".", that means,<br>
521 public int compareTo(X509CRLEntryImpl that) { argument
522 int compSerial = getSerialNumber().compareTo(that.getSerialNumber());
528 byte[] thatEncoded = that
[all...]
/openjdk7/langtools/test/tools/javac/api/
H A DTestContainTypes.java9 * 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
65 boolean subtypeOf(ClassType that) { argument
66 switch (that) {
/openjdk7/langtools/test/tools/javac/generics/diamond/7046778/
H A DDiamondAndInnerClassTest.java9 * 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
56 boolean compatible(TypeArgumentKind that) { argument
59 case STRING: return that != INTEGER;
60 case INTEGER: return that != STRING;
65 boolean compatible(ArgumentKind that) { argument
68 case STRING: return that == ArgumentKind.STRING;
69 case INTEGER: return that == ArgumentKind.INTEGER;
/openjdk7/langtools/test/tools/javac/generics/rawOverride/7062745/
H A DGenericOverrideTest.java9 * 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
65 boolean moreSpecificThan(ReturnTypeKind that) { argument
68 return that == this;
70 return that == LIST || that == ARRAYLIST;
96 boolean moreSpecificThan(TypeArgumentKind that, boolean strict) { argument
99 return that == this || !strict;
101 return that == this || that
110 assignableTo(TypeArgumentKind that, SignatureKind sig) argument
[all...]
/openjdk7/langtools/test/tools/javac/varargs/6199075/
H A DT6199075.java9 * 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
81 boolean isSubtypeOf(TypeKind that) { argument
84 return that == BOOLEAN;
87 return this.subtypeTag == that.subtypeTag ||
88 this.subtypeTag + 2 <= that.subtypeTag;
90 return this.subtypeTag <= that.subtypeTag;
136 boolean isMoreSpecificThan(VarargsMethod that) { argument
137 return varargsElement.isSubtypeOf(that.varargsElement);
/openjdk7/langtools/test/tools/javac/varargs/7042566/
H A DT7042566.java9 * 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
206 boolean isSubtypeOf(TypeKind that) { argument
207 return that == OBJECT ||
208 (that == STRING && this == STRING);
294 boolean isApplicable(TypeConfiguration that) { argument
295 List<TypeKind> actuals = that.typeKindList;
309 boolean isMoreSpecificThan(VarargsMethod that) { argument
311 List<TypeKind> formals = that.parameterTypes.typeKindList;
/openjdk7/jdk/src/share/classes/java/net/
H A DSocketPermission.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 * connect to that host. The host is specified as
63 * The format of the IPv6reference should follow that specified in <a
106 * note that if the following permission:
112 * is granted to some code, it allows that code to connect to port 7777 on
113 * <code>puffin.eng.sun.com</code>, and to accept connections on that port.
121 * is granted to some code, it allows that code to
219 // that faile
852 impliesIgnoreMask(SocketPermission that) argument
953 compareHostnames(SocketPermission that) argument
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DRuleBasedBreakIterator.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 * <p>A substitution rule defines a name that can be used in place of an expression. It
76 * expression defines a set of characters (the &quot;<em>ignore characters</em>&quot;) that
93 * <td width="94%">Specifies that the expression preceding the asterisk may occur any number
98 * <td width="94%">Encloses a sequence of characters that is optional.</td>
121 * overlap, * will match the longest sequence of characters that match the expression before
130 * match any single character that is specified in the [] expression.&nbsp; For more on the
138 * will actually go before the whitespace).&nbsp; Expressions that do
524 equals(Object that) argument
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DdebugInfoRec.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
71 DIR_Chunk* that = arr->at(i); local
72 if (hash == that->_hash &&
73 length == that->_length &&
74 0 == memcmp(buf + this->_offset, buf + that->_offset, length)) {
75 return that;
87 // We anticipate that JVMTI may wish to participate in profiling.
107 // make sure that there is no stream_decode_offset that i
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DFixups.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
253 public int compareTo(Fixup that) { argument
255 return this.location() - that.location();
257 public int compareTo(Object that) { argument
258 return compareTo((Fixup)that);
262 Fixup that = (Fixup) x;
263 return this.desc == that.desc && this.entry == that
[all...]
H A DCoding.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
54 (<L), or both. There is no other byte that satisfies these conditions.
87 As a convention, we require that any (1,H,S) code must always
125 value which is not 2^S-1 mod 2^S, and that which is, respectively.
138 encode can be expressed as a positive 32-bit value. (Note that
390 Coding that = (Coding) x;
391 if (this.B != that.B) return false;
392 if (this.H != that
621 distanceFrom(Coding that) argument
[all...]
H A DInstruction.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
336 public boolean equals(Instruction that) { argument
337 if (this.pc != that.pc) return false;
338 if (this.bc != that.bc) return false;
339 if (this.w != that.w) return false;
340 if (this.length != that.length) return false;
342 if (this.bytes[this.pc+i] != that.bytes[that
[all...]
/openjdk7/jdk/src/share/classes/java/awt/datatransfer/
H A DDataFlavor.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
62 * It's important to note that {@code DataFlavor} does no error checking
81 * For example, the following produces two {@code DataFlavors} that
206 * a graph of Java object(s) that have been made persistent.
224 * To transfer a reference to an arbitrary Java object reference that
302 * Constructs a <code>DataFlavor</code> that represents a Java class.
324 * Constructs a <code>DataFlavor</code> that represents a
367 * Constructs a <code>DataFlavor</code> that represent
925 equals(DataFlavor that) argument
1056 match(DataFlavor that) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/message/
H A DPacket.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
85 * A packet can be thought of as a frame/envelope/package that wraps
87 * about a {@link Message} that doesn't go across the wire.
150 * Creates a {@link Packet} that wraps a given {@link Message}.
165 * Creates an empty {@link Packet} that doesn't have any {@link Message}.
174 private Packet(Packet that) { argument
175 that.copySatelliteInto(this);
176 this.handlerConfig = that
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/xml/
H A DXMLMessage.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
501 private UnknownContent(UnknownContent that) { argument
502 super(that.soapVersion);
503 this.ds = that.ds;
504 this.headerList = HeaderList.copy(that.headerList);
/openjdk7/jdk/test/java/lang/invoke/
H A DAccessControlTest.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
87 public int compareTo(LookupCase that) { argument
89 Class<?> c2 = that.lookupClass();
97 return -(this.lookupModes() - that.lookupModes());
101 public boolean equals(Object that) { argument
102 return (that instanceof LookupCase && equals((LookupCase)that));
104 public boolean equals(LookupCase that) { argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DScope.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
39 * If you write code that depends on this, you do so at your own risk.
45 /** The number of scopes that share this scope's hash table.
65 /** A linear list that also contains all entries in
189 // since that gets handled by leave().
205 * Enter symbol sym in this scope, but mark that it comes from
244 * attribute tells us that the class isn't a package member.
603 public void addSubScope(Scope that) { argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DInfer.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
44 * If you write code that depends on this, you do so at your own risk.
52 /** A value for prototypes that admit any type, including polymorphic ones. */
119 /** A mapping that turns type variables into undetermined type variables.
128 /** A mapping that returns its type argument with every UndetVar replaced
132 * (that is, they will be replaced by the underlying type-variable).
142 UndetVar that = (UndetVar) t;
143 if (that
207 maximizeInst(UndetVar that, Warner warn) argument
262 minimizeInst(UndetVar that, Warner warn) argument
304 instantiateExpr(ForAll that, Type to, Warner warn) argument
584 instantiateArg(ForAll that, Type to, List<Type> tvars, Warner warn) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DScanner.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
43 // keywords as ids.; accept ids. that match keywords in letter, but not in case.
689 // so that it doesn't generate a compiler error.
822 // Make sure that, if the last character of the keyword is a
823 // wildcard, that the string matches what the wildcard
881 // Check to see if string matches any wildcard keywords that
888 // string did not match any closed wildcard keywords (that
1529 // The scanner data is moved to a separate class so that al
1583 ScannerData(ScannerData that) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/geom/
H A DCurve.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
114 * then no crossings are counted for that intersection.
228 * then no crossings are counted for that intersection.
279 * then no crossings are counted for that intersection.
335 * that the path crosses through the shadow that the rectangle
340 * of that shadow. If the path enters from the top, the count
348 * Thus, the winding count that i
869 compareTo(Curve that, double yrange[]) argument
1033 findIntersect(Curve that, double yrange[], double ymin, int slevel, int tlevel, double s0, double xs0, double ys0, double s1, double xs1, double ys1, double t0, double xt0, double yt0, double t1, double xt1, double yt1) argument
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DciObjectFactory.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
58 // which ensures that for each oop, at most one ciObject is created.
114 // compiler thread that initializes the initial ciObjectFactory which
115 // creates the shared ciObjects that all later ciObjectFactories use.
213 // The shared_ident_limit is the first ident number that will
385 ciSignature* that = NULL; local
397 if (that == NULL) that = new (arena()) ciSignature(accessor, constantPoolHandle(), signature);
398 if (entry->signature()->equals(that)) {
[all...]
/openjdk7/langtools/test/tools/javac/failover/
H A DCheckAttributedTree.java9 * 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
95 * jtreg: Note that by using the -r switch in the test description below, this test
97 * covering any new language features that may be tested in this test suite.
316 /** Number of files that have been analyzed. */
374 private boolean mandatoryType(JCTree that) { argument
375 return that instanceof JCTree.JCExpression ||
376 that.getTag() == JCTree.VARDEF ||
377 that.getTag() == JCTree.METHODDEF ||
378 that
[all...]
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DLambdaForm.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
72 * Note that all reference types are erased to "L", which stands for {@code Object).
167 // It is used as a template for managing the invocation of similar forms that are non-empty.
214 /** Renumber and/or replace params so that they are interned and canonically numbered. */
256 * Check that all embedded Name references are localizable to this lambda,
259 * Note that a Name can be local to multiple lambdas, as long as
385 * LF code that executes correctly for any MH of a given
401 * while ensuring that ho
1455 equals(Name that) argument
[all...]
H A DMemberName.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
171 * If it is a type member, that type itself is returned.
591 public boolean equals(Object that) { argument
592 return (that instanceof MemberName && this.equals((MemberName)that));
600 public boolean equals(MemberName that) { argument
601 if (this == that) return true;
602 if (that
[all...]

Completed in 403 milliseconds

123456789