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

1234567891011>>

/openjdk10/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);
/openjdk10/jdk/src/java.base/share/classes/sun/security/ssl/
H A DPredefinedDHParameterSpecs.java266 while(paramsFinder.find()) {
/openjdk10/jdk/src/java.desktop/share/classes/java/beans/
H A DEncoder.java197 PersistenceDelegate pd = this.finder.find(type);
/openjdk10/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...]
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/protocol/
H A DPOALocalCRDImpl.java99 ObjectAdapter oa = oaf.find( oaid ) ;
/openjdk10/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();
/openjdk10/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
/openjdk10/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
/openjdk10/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);
/openjdk10/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
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/module/
H A DSystemModuleFinders.java69 * that find modules in the runtime image.
175 * Returns the ModuleFinder to find all system modules. Supports both
214 public Optional<ModuleReference> find(String name) {
215 PrivilegedAction<Optional<ModuleReference>> pa = () -> f.find(name);
228 * returns a ModuleFinder to find the modules.
290 public Optional<ModuleReference> find(String name) { method in class:SystemModuleFinders.SystemModuleFinder
436 public Optional<URI> find(String name) throws IOException { method in class:SystemModuleFinders.SystemModuleReader
/openjdk10/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) -> {
/openjdk10/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
/openjdk10/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
/openjdk10/jdk/test/com/sun/tools/attach/modules/m/p/
H A DMain.java130 Files.find(dir.resolve(file), Integer.MAX_VALUE,
/openjdk10/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}"
/openjdk10/jdk/test/java/lang/SecurityManager/
H A DCheckPackageAccess.java73 this.moduleRef = mf.find(moduleName).get();
/openjdk10/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()) {
/openjdk10/jdk/test/sun/net/www/http/HttpClient/
H A DProxyTest.java85 if (m.find())
/openjdk10/jdk/test/jdk/modules/etc/
H A DJdkQualifiedExportTest.java143 if (!ModuleFinder.ofSystem().find(target).isPresent())
/openjdk10/jdk/test/tools/jlink/plugins/SystemModuleDescriptors/src/m4/p4/
H A DMain.java105 try (InputStream in = ModuleFinder.ofSystem().find(mn).get()
/openjdk10/langtools/test/tools/javac/api/
H A DTestGetElementReference.java84 while (m.find()) {
/openjdk10/jdk/test/tools/jlink/basic/
H A DAllModulePath.java98 Files.find(JMODS, 1, (Path p, BasicFileAttributes attr) ->

Completed in 271 milliseconds

1234567891011>>