Searched refs:find (Results 26 - 50 of 494) sorted by relevance

1234567891011>>

/openjdk9/jdk/test/java/util/regex/
H A DRegExTest.java193 m.find();
199 m.find();
205 if (p.matcher(s).find() != expected)
211 if (matcher.find() != expected)
220 if (!matcher.find())
229 if (!matcher.find())
340 if (!matcher.find())
354 if (!matcher.find())
367 matcher.find();
375 matcher.find();
[all...]
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DSetMethodCreator.java49 private final FindProperty find; field in class:SetMethodCreator
57 * @param find a result of a {@link ScriptObject#findProperty(Object, boolean)} on the object for the property we
62 SetMethodCreator(final ScriptObject sobj, final FindProperty find, final CallSiteDescriptor desc, final LinkRequest request) { argument
65 this.find = find;
122 if (find != null) {
144 final Property property = find.getProperty();
157 final MethodHandle fastSetter = find.replaceProperty(newProperty).getSetter(type, isStrict, request);
166 methodHandle = find.getSetter(type, isStrict, request);
173 if (find
[all...]
H A DWithObject.java83 final FindProperty find = self.findProperty(propName, true);
85 if (find != null) {
106 FindProperty find = expression.findProperty(name, true);
108 if (find != null) {
116 find = scope.findProperty(name, true);
118 if (find != null) {
119 return fixScopeCallSite(scope.lookup(desc, request), name, find.getOwner());
138 find = expression.findProperty(fallBack, true);
139 if (find != null) {
164 * Overridden to try to find th
[all...]
/openjdk9/test/lib/jdk/test/lib/process/
H A DOutputAnalyzer.java240 if (!stdoutMatcher.find() && !stderrMatcher.find()) {
257 if (!matcher.find()) {
274 if (!matcher.find()) {
291 if (matcher.find()) {
297 if (matcher.find()) {
314 if (matcher.find()) {
331 if (matcher.find()) {
350 if (stderrMatcher.find()) {
353 if (stdoutMatcher.find()) {
[all...]
/openjdk9/jdk/src/java.base/share/classes/java/lang/module/
H A DModuleFinder.java49 * A finder of modules. A {@code ModuleFinder} is used to find modules during
53 * <p> A {@code ModuleFinder} can only find one module with a given name. A
66 * Optional<ModuleReference> omref = finder.find("jdk.foo");
71 * <p> The {@link #find(String) find} and {@link #findAll() findAll} methods
79 * thrown is undefined. For example, invoking {@code find} after an exception
96 * modules that it locates. If {@code find} is invoked several times to
103 * The name of the module to find
114 Optional<ModuleReference> find(String name); method in interface:ModuleFinder
123 * {@link #find fin
[all...]
H A DModuleReader.java64 * resources in the module. Consequently the {@link #find find}, {@link #open
104 Optional<URI> find(String name) throws IOException; method in interface:ModuleReader
113 * @implSpec The default implementation invokes the {@link #find(String)
114 * find} method to get a URI to the resource. If found, then it attempts
130 Optional<URI> ouri = find(name);
/openjdk9/langtools/src/jdk.jdeps/share/classes/com/sun/tools/jdeprscan/scan/
H A DClassFinder.java95 public ClassFile find(String className) { method in class:ClassFinder
97 ClassFile cf = pe.find(className);
116 ClassFile find(String className); method in interface:ClassFinder.PathEntry
130 public ClassFile find(String className) { method in class:ClassFinder.JarPathEntry
157 public ClassFile find(String className) { method in class:ClassFinder.DirPathEntry
184 public ClassFile find(String className) { method in class:ClassFinder.JrtPathEntry
/openjdk9/common/bin/
H A Dblessed-modifier-order.sh56 find "${dirs[@]}" -name '*.java' -type f -print0 | \
/openjdk9/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wsdl/framework/
H A DExternalEntityReference.java59 return _document.find(_kind, _name);
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/policy/
H A DPolicyResolverFactory.java46 for (PolicyResolverFactory factory : ServiceFinder.find(PolicyResolverFactory.class)) {
/openjdk9/jaxws/src/java.xml.ws/share/classes/javax/xml/soap/
H A DMessageFactory.java93 MessageFactory factory = (MessageFactory) FactoryFinder.find(
/openjdk9/jdk/src/java.desktop/share/classes/java/beans/
H A DPropertyEditorManager.java92 return ThreadGroupContext.getContext().getPropertyEditorFinder().find(targetType);
99 * order to find property editors.
H A DMethodRef.java62 method = find(this.typeRef.get(), this.signature);
74 private static Method find(Class<?> type, String signature) { method in class:MethodRef
/openjdk9/hotspot/src/share/vm/logging/
H A DlogOutputList.hpp58 LogOutputNode* find(const LogOutput* output) const;
81 LogOutputNode* node = this->find(output);
/openjdk9/hotspot/test/gc/
H A DTestNumWorkerOutput.java55 if (!m.find()) {
56 throw new RuntimeException("Could not find pattern " + pattern + " in output");
58 if (m.find()) {
59 throw new RuntimeException("Could find pattern " + pattern + " in output more than once");
/openjdk9/hotspot/test/runtime/NMT/
H A DCheckForProperDetailStackTrace.java110 return (stdoutMatcher.find() || stderrMatcher.find());
/openjdk9/jdk/test/java/io/File/
H A DUnicode.java46 return find(f);
52 static boolean find(File f) throws Exception { method in class:Unicode
/openjdk9/langtools/test/com/sun/javadoc/DocRootSlash/
H A DDocRootSlash.java40 * find strings that contain newlines.
127 if (expectLinkMatcher1.find() && actualLinkMatcher1.find()) {
145 failed("Didn't find <A HREF> that fits the pattern: "
/openjdk9/langtools/test/jdk/javadoc/doclet/DocRootSlash/
H A DDocRootSlash.java40 * find strings that contain newlines.
127 if (expectLinkMatcher1.find() && actualLinkMatcher1.find()) {
145 failed("Didn't find <A HREF> that fits the pattern: "
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/codegen/
H A DTypeEvaluator.java114 final FindProperty find = sobj.findProperty(name, true);
115 if (find == null) {
119 final Property property = find.getProperty();
129 final ScriptObject owner = find.getOwner();
147 * otherwise implicitly undefined so that when an expression is evaluated for the name, it won't accidentally find
186 final FindProperty find = sobj.findProperty(name, true);
187 if (find == null) {
190 final Property property = find.getProperty();
191 final ScriptObject owner = find.getOwner();
/openjdk9/langtools/test/tools/javac/lib/combo/
H A DComboParameter.java91 while (m.find()) {
100 more |= pattern.matcher(replacement).find();
/openjdk9/langtools/make/test/lib/
H A Djavadoc.sh40 ( cd doc ; find . -type f -print | LANG=C sort ) > javadoc.tmp
/openjdk9/jdk/make/src/classes/build/tools/spp/
H A DSpp.java117 while (vardef.find()) {
129 while (vardef2.reset(repl).find()) {
156 if (ifkey.reset(ln).find()) {
167 if (elsekey.reset(ln).find()) {
174 if (endkey.reset(ln).find()) {
/openjdk9/jdk/src/java.base/share/classes/sun/text/
H A DIntHashtable.java61 int index = find(key);
70 return values[find(key)];
74 int index = find(key);
210 int index = find(key);
218 private int find (int key) { method in class:IntHashtable
/openjdk9/jaxp/test/javax/xml/jaxp/libs/jdk/testlibrary/
H A DOutputAnalyzer.java218 if (!stdoutMatcher.find() && !stderrMatcher.find()) {
236 if (!matcher.find()) {
254 if (!matcher.find()) {
273 if (matcher.find()) {
279 if (matcher.find()) {
298 if (matcher.find()) {
316 if (matcher.find()) {
338 if (stderrMatcher.find()) {
341 if (stdoutMatcher.find()) {
[all...]

Completed in 243 milliseconds

1234567891011>>