Searched refs:find (Results 226 - 250 of 494) sorted by relevance

1234567891011>>

/openjdk9/hotspot/src/share/vm/utilities/
H A Darray.hpp125 int find(const T& x) { return index_of(x); } function in class:Array
/openjdk9/hotspot/test/compiler/testlibrary/rtm/
H A DRTMTestBase.java172 while (matcher.find()) {
/openjdk9/jaxp/src/java.xml/share/classes/javax/xml/parsers/
H A DFactoryFinder.java215 * factory to find.
221 static <T> T find(Class<T> type, String fallbackClassName) method in class:FactoryFinder
225 dPrint(()->"find factoryId =" + factoryId);
281 * Try to find provider using the ServiceLoader API
283 * @param type Base class / Service interface of the factory to find.
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/soap/
H A DSOAPDocumentImpl.java580 public javax.xml.soap.Node find(Node node) { method in class:SOAPDocumentImpl
581 return find(node, true);
584 private javax.xml.soap.Node find(Node node, boolean required) { method in class:SOAPDocumentImpl
593 throw new IllegalArgumentException(MessageFormat.format("Cannot find SOAP wrapper for element {0}", node));
606 final javax.xml.soap.Node found = find(node, false);
/openjdk9/jaxp/src/java.xml/share/classes/javax/xml/datatype/
H A DFactoryFinder.java216 * factory to find.
222 static <T> T find(Class<T> type, String fallbackClassName) method in class:FactoryFinder
226 dPrint(()->"find factoryId =" + factoryId);
282 * Try to find provider using the ServiceLoader API
284 * @param type Base class / Service interface of the factory to find.
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/policy/jaxws/
H A DPolicyUtil.java80 final Iterator<T> foundProviders = ServiceFinder.find(service).iterator();
/openjdk9/jaxws/src/java.xml.ws/share/classes/javax/xml/ws/spi/
H A DFactoryFinder.java62 * @param factoryClass the name of the factory to find, which is
71 static <T> T find(Class<T> factoryClass, String fallbackClassName) { method in class:FactoryFinder
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/xsom/util/
H A DXSFinder.java50 * {@link Boolean} to find something from schema objects.
65 public final boolean find( XSComponent c ) { method in class:XSFinder
/openjdk9/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wsdl/document/
H A DWSDLDocument.java153 _document.find(kind, name);
H A DBinding.java72 return (PortType) document.find(Kinds.PORT_TYPE, _portType);
/openjdk9/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wsdl/framework/
H A DAbstractDocument.java135 public GloballyKnown find(Kind k, QName name) { method in class:AbstractDocument
/openjdk9/jdk/src/java.desktop/share/classes/com/sun/beans/finder/
H A DMethodFinder.java41 * to find a public method with specified name and parameter types
54 return findAccessibleMethod(finder.find(signature.getType().getMethods()));
67 * @param name the name of method to find
68 * @param args parameter types that is used to find method
94 * @param name the name of method to find
95 * @param args parameter types that is used to find method
113 * @param name the name of method to find
114 * @param args parameter types that is used to find method
152 // try to find in superclass or another interface
162 * @param generic generic type that is used to find accessibl
[all...]
/openjdk9/jdk/src/java.desktop/share/classes/java/beans/
H A DEncoder.java197 PersistenceDelegate pd = this.finder.find(type);
/openjdk9/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/
H A DResourcePoolConfiguration.java111 public Optional<ModuleReference> find(String name) {
H A DBasicImageWriter.java180 ImageLocationWriter find(String key) { method in class:BasicImageWriter
/openjdk9/jdk/test/java/lang/SecurityManager/
H A DCheckPackageAccess.java73 this.moduleRef = mf.find(moduleName).get();
/openjdk9/jdk/src/java.security.jgss/share/classes/sun/security/jgss/krb5/
H A DSubjectComber.java57 static <T> T find(Subject subject, String serverPrincipal, method in class:SubjectComber
/openjdk9/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/builder/
H A DDefaultImageBuilder.java194 Files.find(bin, 2, (path, attrs) -> {
202 Files.find(lib, 2, (path, attrs) -> {
211 Files.find(legal, 2, (path, attrs) -> {
532 Files.find(img.getHome().resolve(BIN_DIRNAME), 2, (path, attrs) -> {
/openjdk9/jdk/test/com/sun/tools/attach/modules/m/p/
H A DMain.java130 Files.find(dir.resolve(file), Integer.MAX_VALUE,
/openjdk9/jdk/test/com/sun/jdi/
H A DPrivateTransportTest.sh101 xx=`find ${jreloc}/lib -name libdt_socket.so`
136 # make sure we can find libraries in current directory
145 # make sure we can find libraries in current directory
158 # make sure we can find libraries in current directory
177 echo "cannot find dt_socket in ${libloc} for ${private_transport}"
178 fail "cannot find dt_socket in ${libloc} for ${private_transport}"
/openjdk9/jdk/test/sun/net/www/http/HttpClient/
H A DProxyTest.java85 if (m.find())
/openjdk9/langtools/test/tools/doclint/
H A DDocLintTester.java134 while (m.find()) {
/openjdk9/langtools/src/jdk.jdeps/share/classes/com/sun/tools/jdeps/
H A DJdepsConfiguration.java161 ModuleReference mref = finder.find(mn).get();
288 Module.Builder builder = new Module.Builder(md, system.find(mn).isPresent());
387 public Optional<URI> find(String name) throws IOException {
430 public Optional<ModuleReference> find(String mn) { method in class:JdepsConfiguration.SystemModuleFinder
532 * This method is for --check option to find all target modules specified
/openjdk9/langtools/src/jdk.jdeps/share/classes/com/sun/tools/jdeprscan/scan/
H A DScan.java329 startClass = finder.find(startClassName);
353 curClass = finder.find(superName);
368 curClass = finder.find(intf);
660 ClassFile cf = finder.find(className);
/openjdk9/jdk/test/java/util/Scanner/
H A DScannerStreamTest.java165 * using a loop around Matcher.find().
170 * same behavior as Matcher.find()'s auto-advance (JDK-8150488).
181 // generate expected result using Matcher.find()
184 while (m.find()) {

Completed in 243 milliseconds

1234567891011>>