Searched refs:where (Results 176 - 200 of 249) sorted by relevance

12345678910

/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/formats/html/
H A DLinkFactoryImpl.java73 (classLinkInfo.where == null || classLinkInfo.where.length() == 0) ?
87 filename.fragment(classLinkInfo.where),
99 classDoc.qualifiedName(), classLinkInfo.where,
/openjdk9/jdk/src/java.naming/share/classes/com/sun/jndi/ldap/
H A DFilter.java276 int where = indexOf(str, target.charAt(0), start, end);
277 if (where >= 0) {
279 if (str[where+i] != target.charAt(i)) {
284 return where;
289 int where = indexOf(str, ch, start, end);
302 for (backSlashPos = where - 1;
307 if (where == start || where == -1 || ((backSlashCnt % 2) == 0))
308 return where;
311 start = where
[all...]
/openjdk9/jdk/src/java.desktop/windows/native/libawt/windows/
H A Dawt.h52 #define JNI_CHECK_NULL_GOTO(obj, msg, where) { \
56 goto where; \
60 #define JNI_CHECK_PEER_GOTO(peer, where) { \
61 JNI_CHECK_NULL_GOTO(peer, "peer", where); \
65 goto where; \
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/objects/
H A DNativeNumber.java67 @Property(attributes = Attribute.NON_ENUMERABLE_CONSTANT, where = Where.CONSTRUCTOR)
71 @Property(attributes = Attribute.NON_ENUMERABLE_CONSTANT, where = Where.CONSTRUCTOR)
75 @Property(attributes = Attribute.NON_ENUMERABLE_CONSTANT, where = Where.CONSTRUCTOR)
79 @Property(attributes = Attribute.NON_ENUMERABLE_CONSTANT, where = Where.CONSTRUCTOR)
83 @Property(attributes = Attribute.NON_ENUMERABLE_CONSTANT, where = Where.CONSTRUCTOR)
H A DNativeError.java79 @Property(attributes = Attribute.NOT_ENUMERABLE, where = Where.PROTOTYPE)
83 @Property(attributes = Attribute.NOT_ENUMERABLE, where = Where.PROTOTYPE)
145 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
166 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
H A DNativeSymbol.java74 @Property(where = Where.CONSTRUCTOR, attributes = Attribute.NON_ENUMERABLE_CONSTANT, name = "iterator")
166 @Function(name = "for", attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
179 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
H A DNativeArrayBuffer.java155 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
H A DNativeJSAdapter.java580 private static MethodHandle testJSAdapter(final Object adaptee, final MethodHandle getter, final Object where, final ScriptFunction func) { argument
581 return MH.insertArguments(IS_JSADAPTER, 1, adaptee, getter, where, func);
585 private static boolean isJSAdapter(final Object self, final Object adaptee, final MethodHandle getter, final Object where, final ScriptFunction func) { argument
589 return getter.invokeExact(where) == func;
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/dtdparser/
H A DInputEntity.java810 // fail to be peeked is where it's a symbol ... e.g. for an
876 InputEntity where = getTopEntity();
877 if (where == this)
879 return where.getPublicId();
887 InputEntity where = getTopEntity();
888 if (where == this)
890 return where.getSystemId();
898 InputEntity where = getTopEntity();
899 if (where == this)
901 return where
[all...]
/openjdk9/jdk/src/jdk.rmic/share/classes/sun/tools/tree/
H A DAssignExpression.java46 public AssignExpression(long where, Expression left, Expression right) { argument
47 super(ASSIGN, where, left, right);
H A DCompoundStatement.java46 public CompoundStatement(long where, Statement args[]) { argument
47 super(STAT, where);
52 args[i] = new CompoundStatement(where, new Statement[0]);
/openjdk9/langtools/test/jdk/javadoc/tool/api/basic/
H A DAPITest.java146 private void checkFiles(Set<String> foundFiles, Set<String> expectFiles, Object where) { argument
151 error("the following files were not found in " + where + ": " + missing);
155 error("the following unexpected files were found in " + where + ": " + unexpected);
/openjdk9/langtools/test/tools/javadoc/api/basic/
H A DAPITest.java146 private void checkFiles(Set<String> foundFiles, Set<String> expectFiles, Object where) { argument
151 error("the following files were not found in " + where + ": " + missing);
155 error("the following unexpected files were found in " + where + ": " + unexpected);
/openjdk9/jdk/src/jdk.rmic/share/classes/sun/tools/java/
H A DMemberDefinition.java50 protected long where; field in class:MemberDefinition
68 public MemberDefinition(long where, ClassDefinition clazz, int modifiers, argument
74 this.where = where;
154 return where;
538 * `method' is visible to the class where this override is occurring.
554 * null, it reports the errors in the class where `this' is
H A DClassDefinition.java49 protected long where; field in class:ClassDefinition
95 protected ClassDefinition(Object source, long where, ClassDeclaration declaration, argument
98 this.where = where;
162 return where;
195 // There are obscure cases where null is the right answer,
215 * 'SourceClass', where it overrides this one.
776 * <accessor>.<field>, where <accessor> has the type <accessorType>?
917 public void noteUsedBy(ClassDefinition ref, long where, Environment env) { argument
920 env.error(where, "war
[all...]
/openjdk9/hotspot/src/share/vm/ci/
H A DciObjectFactory.hpp83 void insert_non_perm(NonPermObject* &where, oop key, ciObject* obj);
H A DciObjectFactory.cpp703 void ciObjectFactory::insert_non_perm(ciObjectFactory::NonPermObject* &where, oop key, ciObject* obj) { argument
705 assert(&where != &emptyBucket, "must not try to fill empty bucket");
706 NonPermObject* p = new (arena()) NonPermObject(where, key, obj);
707 assert(where == p && is_equal(p, key) && p->object() == obj, "entry must match");
/openjdk9/hotspot/test/gc/arguments/
H A DTestUseCompressedOopsErgoTools.java161 private static boolean getFlagBoolValue(String flag, String where) { argument
162 Matcher m = Pattern.compile(flag + "\\s+:?= (true|false)").matcher(where);
H A DTestMaxHeapSizeTools.java194 // where A, B, X, Y and Z are sizes in bytes.
262 private static long getFlagValue(String flag, String where) { argument
263 Matcher m = Pattern.compile(flag + "\\s+:?=\\s+\\d+").matcher(where);
/openjdk9/jdk/test/javax/net/ssl/SSLSession/
H A DHttpsURLConnectionLocalCertificateChain.java119 synchronized void dumpCerts(String where, Certificate [] certs) argument
123 System.out.println(where + ":");
/openjdk9/hotspot/src/share/vm/runtime/
H A Drelocator.cpp453 size_t where, int hole_sz, Array<u1>* src) {
461 memcpy(dst_addr, src_addr, where);
462 memcpy(dst_addr + where + hole_sz,
463 src_addr + where, src->length() - where);
533 // check and update any Uninitialized type's bci (no matter where it is).
452 insert_hole_at(ClassLoaderData* loader_data, size_t where, int hole_sz, Array<u1>* src) argument
/openjdk9/jdk/src/jdk.internal.le/share/classes/jdk/internal/jline/console/
H A DConsoleReader.java536 //where:
1289 * end position, so put the cursor back where it started.
2040 * Move the cursor <i>where</i> characters.
2042 * @param num If less than 0, move abs(<i>where</i>) to the left, otherwise move <i>where</i> to the right.
2046 int where = num;
2048 if ((buf.cursor == 0) && (where <= 0)) {
2052 if ((buf.cursor == buf.buffer.length()) && (where >= 0)) {
2056 if ((buf.cursor + where) < 0) {
2057 where
2073 moveInternal(final int where) argument
[all...]
/openjdk9/hotspot/src/share/vm/jvmci/
H A DjvmciRuntime.hpp145 static void vm_error(JavaThread* thread, jlong where, jlong format, jlong value);
/openjdk9/jdk/src/java.base/share/classes/com/sun/java/util/jar/pack/
H A DDriver.java385 File where = (base.getParentFile() == null && suffix.equals(".bak"))
389 Path tmpfile = (where == null)
391 : Files.createTempFile(where.toPath(), prefix, suffix);
/openjdk9/common/autoconf/
H A Dconfigure258 # Now transfer control to the script generated by autoconf. This is where the
293 generally use 'target' where autoconf traditionally uses 'host'.

Completed in 371 milliseconds

12345678910