Searched refs:find (Results 1 - 25 of 34) sorted by relevance

12

/dalvik/libcore/luni/src/test/java/tests/api/java/util/support/
H A DI.java4 String find(String key); method in interface:I
H A DA.java10 public String find(String key) { method in class:A
/dalvik/libcore/regex/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
H A DModeTest.java56 assertTrue(m.find());
58 assertFalse(m.find());
63 assertTrue(m.find());
65 assertTrue(m.find());
67 assertFalse(m.find());
72 assertTrue(m.find());
74 assertTrue(m.find());
76 assertFalse(m.find());
98 assertTrue(m.find());
100 assertFalse(m.find());
[all...]
H A DPattern2Test.java48 assertTrue(m1.find(0));
53 assertFalse(m2.find(0));
85 assertTrue(m.find());
88 assertFalse(m.find());
92 assertTrue(m.find());
95 assertFalse(m.find());
98 assertTrue(m.find());
101 assertFalse(m.find());
104 assertTrue(m.find());
107 assertFalse(m.find());
[all...]
H A DMatcherTest.java66 for (int i = 0; m.find(); i++) {
76 m.find();
84 m.find();
103 for (int i = 1; m.find(); i *= 30) {
143 while (mat.find());
145 assertFalse("After reset matcher should not find pattern in given input", mat.find());
147 assertTrue("After reset matcher should find pattern in given input", mat.find());
160 while (m.find()) {
[all...]
H A DPatternTest.java444 * since could not find that info
894 mat.find();
908 mat.find();
922 mat.find();
936 mat.find();
952 for (; mat.find(); k++) {
969 for (; mat.find(); k++) {
993 for (; mat.find(); k++) {
1023 while (mat.find()) {
1094 while (mat.find()) {
[all...]
H A DMatcher2Test.java178 assertTrue(m.find());
222 assertTrue(m.find());
266 assertFalse(m.find());
/dalvik/tests/003-omnibus-opcodes/
H A Dbuild21 ${JAVAC} -d classes `find src -name '*.java'`
23 ${JAVAC} -d classes `find src2 -name '*.java'`
/dalvik/hit/test/
H A Dtestparser3 find ../src -name \*java | xargs javac -d build -Xlint:unchecked
/dalvik/tests/etc/
H A Ddefault-build21 ${JAVAC} -d classes `find src -name '*.java'`
24 ${JAVAC} -d classes `find src2 -name '*.java'`
33 ${JAVAC} -d classes-ex -cp classes `find src-ex -name '*.java'`
/dalvik/libcore-disabled/SoundTest/
H A DAndroid.mk12 #$(shell cd $(LOCAL_PATH) && find resources)
/dalvik/tools/dmtracedump/tests/filters/
H A Drun_tests.sh4 for file in $(find $1 -type f -iname 'test*'); do
/dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/regex/
H A DNativeRegEx.java59 public static native boolean find(int regex, int startIndex); method in class:NativeRegEx
/dalvik/tools/
H A Ddeadcode.py76 match = codes.find(method, start)
87 if codes.find("invoke", startOfLine, match) is not -1:
/dalvik/libcore/regex/src/main/java/java/util/regex/
H A DMatcher.java26 * iteratively find all occurrences of the {@code Pattern}, until the end of
35 * while (m.find()) {
43 * For example, it knows whether the most recent attempt to find the
79 * started some find/replace operations.
84 * Holds the position where the next find operation will take place.
94 * Reflects whether a match has been found during the most recent find
132 * method can be used in conjunction with {@link #find()} and
190 * specified. Results of a previous find get lost. The next attempt to find
243 * region being set to the whole input. Results of a previous find ge
402 public boolean find(int start) { method in class:Matcher
429 public boolean find() { method in class:Matcher
[all...]
H A DPattern.java151 * whole input, find occurrences of the {@code Pattern} in the input, or
212 while(matcher.find() && list.size() + 1 < maxLength) {
/dalvik/vm/mterp/x86-atom/
H A DOP_INVOKE_INTERFACE.S73 cmp $$0, %eax # check if find failed
/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DClientHandshakeImpl.java194 find: {
198 break find;
215 find: {
219 break find;
/dalvik/libcore/luni/src/main/java/java/util/
H A DLocale.java331 static Locale[] find() { method in class:Locale
370 availableLocales = find();
H A DScanner.java55 * <p>A {@code Scanner} can also find or skip specific patterns without regard for the
120 // The position where find begins.
123 // The last find start position.
333 * Tries to find the pattern in the input. Delimiters are ignored. If the
341 * the pattern to find in the input.
358 if (matcher.find()) {
388 if (matcher.find()) {
426 * Compiles the pattern string and tries to find a substing matching it in the input data. The
444 * Tries to find the pattern in the input between the current position and the specified
501 // First, try to find patter
[all...]
/dalvik/libcore/icu/src/main/native/
H A DNativeRegEx.cpp175 static jboolean find(JNIEnv* env, jclass clazz, RegExData* data, function
338 { "find", "(II)Z", (void*)find },
/dalvik/libcore/luni/src/test/java/tests/api/java/util/
H A DResourceBundleTest.java206 String s = bb.find("nonexistent");
207 s = bb.find("name");
/dalvik/libcore/xml/src/main/java/javax/xml/datatype/
H A DFactoryFinder.java177 * @param factoryId Name of the factory to find, same as a property name
184 static Object find(String factoryId, String fallbackClassName) method in class:FactoryFinder
245 * Try to find provider using Jar Service Provider Mechanism
358 * @param clazz Class to find load location.
H A DDatatypeFactory.java95 return (DatatypeFactory) FactoryFinder.find(
/dalvik/libcore/
H A DJavaLibrary.mk28 $(patsubst ./%,%,$(shell cd $(LOCAL_PATH) && find */src/$(1)/java -name "*.java"))

Completed in 1255 milliseconds

12