Searched refs:matches (Results 76 - 100 of 216) sorted by relevance

123456789

/openjdk7/langtools/test/tools/javac/diags/
H A DFileManager.java181 if (cantRead != null && cantRead.matcher(canonName).matches())
187 if (cantWrite != null && cantWrite.matcher(canonName).matches())
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DPatternReferenceTypeSpec.java68 public boolean matches(ReferenceType refType) { method in class:PatternReferenceTypeSpec
/openjdk7/jdk/make/tools/src/build/tools/addjsum/
H A DAddJsum.java57 if (!m.matches()) {
/openjdk7/jdk/make/tools/src/build/tools/generatecharacter/
H A DPropList.java70 if (m.matches()) {
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvframe_hp.hpp109 bool matches(vframe* vf);
H A Dvframe_hp.cpp66 if (list->at(i)->matches((vframe*)this)) {
138 if (deferred->at(f)->matches(this)) {
337 bool jvmtiDeferredLocalVariableSet::matches(vframe* vf) { function in class:jvmtiDeferredLocalVariableSet
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DJAXWSUtils.java127 return Pattern.matches(regex, target.getLocalPart());
/openjdk7/jdk/test/java/lang/management/ThreadMXBean/
H A DSynchronizerLockingThread.java76 int matches = 0;
80 matches++;
84 matches++;
87 if (matches != 2) {
152 // We can only check if the length matches since we have no
/openjdk7/langtools/src/share/classes/com/sun/tools/javah/
H A DJavahTool.java79 if (options[i].matches(option))
/openjdk7/jdk/test/javax/sound/midi/Gervill/ModelByteBufferWavetable/
H A DNewModelByteBufferWavetableModelByteBuffer.java90 if(!wavetable.getFormat().matches(format))
H A DNewModelByteBufferWavetableModelByteBufferAudioFormatFloat.java90 if(!wavetable.getFormat().matches(format))
H A DNewModelByteBufferWavetableModelByteBufferFloat.java90 if(!wavetable.getFormat().matches(format))
/openjdk7/jdk/src/share/sample/nio/server/
H A DRequest.java144 if (!m.matches())
/openjdk7/langtools/test/tools/javadoc/6964914/
H A DTestUserDoclet.java77 if (line.matches("[0-9]+ warning(s)?"))
/openjdk7/langtools/test/tools/javap/
H A DT6622232.java86 if (output.matches(unexpect))
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DBMPattern.java72 public int matches(CharacterIterator iterator, int start, int limit) { method in class:BMPattern
97 public int matches(String str, int start, int limit) { method in class:BMPattern
122 public int matches(char[] chars, int start, int limit) { method in class:BMPattern
/openjdk7/jdk/src/share/sample/nio/file/
H A DAclEdit.java210 if (Pattern.matches("^A[0-9]*\\+.*", s)) {
224 if (Pattern.matches("^A[0-9]+\\-", s)) {
234 if (Pattern.matches("^A[0-9]+=.*", s)) {
/openjdk7/langtools/test/tools/javac/processing/
H A DTestWarnErrorCount.java102 if (arg.matches("[0-9]+")) {
186 } else if (line.matches("[0-9]+ error(?:s?)")) {
188 } else if (line.matches("[0-9]+ warning(?:s?)")) {
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DDefaults.template88 * prefix in a very fast manner. This is used in the "matches" method of
240 if (s.matches(comp)) {
438 * <li>Determining whether a given component/region pair matches this
544 * for each part of the prefix the component hierarchy matches exactly.
550 boolean matches(JComponent c) {
551 return matches(c, parts.length - 1);
554 private boolean matches(Component c, int partIndex) {
562 return matches(c.getParent(), partIndex - 1);
570 return matches(c.getParent(), partIndex - 1);
584 return matches(paren
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DInstructionFinder.java209 * the finder and call search() again, because the matches are cached.
215 * @return iterator of matches where e.nextElement() returns an array of instruction handles
236 ArrayList matches = new ArrayList();
246 matches.add(match);
250 return matches.iterator();
262 * @return iterator of matches where e.nextElement()
275 * @return iterator of matches where e.nextElement() returns an array of instruction handles
284 * Check found matches with the constraint object.
/openjdk7/jdk/src/share/classes/javax/naming/ldap/
H A DLdapName.java306 matches(0, len2, n));
313 * getRdn(p) matches rdns.get(p). Returns false otherwise. If rdns is
349 matches(len1 - len2, len1, n));
356 * the component getRdn(p) matches rdns.get(p). Returns false otherwise.
389 private boolean matches(int beg, int end, Name n) { method in class:LdapName
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/property/
H A DSingleMapNodeProperty.java177 if(ea.matches(entryTag)) {
210 if(ea.matches(keyTag)) {
215 if(ea.matches(valueTag)) {
/openjdk7/jdk/test/java/net/CookieHandler/
H A DTestHttpCookie.java210 static void dm(String domain, String host, boolean matches) { argument
212 if (HttpCookie.domainMatches(domain, host) != matches) {
213 raiseError("Host " + host + (matches?" should ":" should not ") +
/openjdk7/hotspot/src/share/vm/code/
H A DvtableStubs.hpp65 bool matches(bool is_vtable_stub, int index) const { function in class:VtableStub
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJJavaName.java207 if(m.matches()) {

Completed in 81 milliseconds

123456789