Searched refs:pattern (Results 1 - 17 of 17) sorted by relevance

/development/tools/idegen/src/
H A DExcludes.java38 for (Pattern pattern : patterns) {
39 if (pattern.matcher(path).find()) {
H A DEclipse.java62 for (Pattern pattern : patterns) {
63 buckets.add(new Bucket(pattern));
177 private final Pattern pattern; field in class:Eclipse.Bucket
180 private Bucket(Pattern pattern) { argument
181 this.pattern = pattern;
185 return pattern.matcher(path).find();
/development/samples/ApiDemos/src/com/example/android/apis/os/
H A DMorseCode.java86 long[] pattern = MorseCodeConverter.pattern(text);
90 vibrator.vibrate(pattern, -1);
H A DMorseCodeConverter.java74 /** Return the pattern data for a given character */
75 static long[] pattern(char c) { method in class:MorseCodeConverter
90 static long[] pattern(String str) { method in class:MorseCodeConverter
109 len += pattern(c).length;
113 // Generate the pattern array. Note that we put an extra element of 0
114 // in at the beginning, because the pattern always starts with the pause,
134 long[] letter = pattern(c);
/development/ndk/platforms/android-3/include/
H A Dfnmatch.h47 extern int fnmatch(const char *pattern, const char *string, int flags);
/development/ndk/platforms/android-3/include/linux/netfilter/
H A Dxt_string.h23 char pattern[XT_STRING_MAX_PATTERN_SIZE]; member in struct:xt_string_info
/development/ndk/platforms/android-3/include/linux/mtd/
H A Dbbm.h26 uint8_t *pattern; member in struct:nand_bbt_descr
H A Dnand.h265 uint8_t *pattern; member in struct:nand_bbt_descr
/development/samples/ApiDemos/tests/src/com/example/android/apis/os/
H A DMorseCodeConverterTest.java41 long[] beeps = MorseCodeConverter.pattern('s');
/development/samples/Wiktionary/src/com/example/android/wiktionary/
H A DExtendedWikiHelper.java64 * encounter special articles or templates. This pattern ignores any words
120 * @param pattern Search string to be compiled into a {@link Pattern}.
123 * pattern.
126 public FormatRule(String pattern, String replaceWith, int flags) { argument
127 mPattern = Pattern.compile(pattern, flags);
134 * @param pattern Search string to be compiled into a {@link Pattern}.
137 * pattern.
139 public FormatRule(String pattern, String replaceWith) { argument
140 this(pattern, replaceWith, 0);
/development/samples/WiktionarySimple/src/com/example/android/simplewiktionary/
H A DWordWidget.java93 Pattern pattern = Pattern.compile(SimpleWikiHelper.WORD_OF_DAY_REGEX);
94 Matcher matcher = pattern.matcher(pageContent);
/development/samples/ApiDemos/src/com/example/android/apis/accessibility/
H A DClockBackService.java104 /** Vibrate a pattern. */
256 long[] pattern = sVibrationPatterns.get(key);
257 if (pattern != null) {
258 mVibrator.vibrate(pattern, -1);
/development/samples/XmlAdapters/src/com/example/android/xmladapters/
H A DXmlDocumentProvider.java53 * <p>A XPath-like selection pattern is used to select some nodes in the XML document. Each such
70 * <p>The <code>/root/child1/child2</code> pattern will for instance match all nodes named
77 * <p>The <code>//node1//node2</code> pattern will for instance match all nodes named
88 * with a child of the selected node. The implicit root of this projection pattern is the selected
92 * nodes match the projection pattern, their texts are appended as a result.</p>
95 * pattern to the previously described syntax. <code>//child1@price</code> will for instance match
120 * A selection pattern of <code>/library//book</code> will match the three book entries (while
164 * node. See class documentation for pattern syntax.
165 * @param selection A selection pattern which will select the nodes that will create the
166 * Cursor's rows. See class documentation for pattern synta
[all...]
/development/samples/training/basic/FragmentBasics/libs/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ...
/development/samples/training/location-aware/libs/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ...
/development/samples/training/AnimationsDemo/libs/
H A Dandroid-support-v13.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v13/ android/support/v13/app/ ...
/development/samples/training/bitmapfun/libs/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/widget/ ...

Completed in 970 milliseconds