HomeSort by relevance Sort by last modified time
    Searched full:patterns (Results 51 - 75 of 2322) sorted by null

1 23 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
vfp2.s 5 @ First we test the basic syntax and bit patterns of the opcodes.
  /cts/tests/tests/util/src/android/util/cts/
PatternsTest.java 19 import android.util.Patterns;
24 * Test {@link Patterns}.
30 assertTrue("WEB_URL pattern should match commas", Patterns.WEB_URL.matcher(url).matches());
  /external/autotest/frontend/
urls.py 15 urlpatterns = defaults.patterns(
26 urlpatterns += defaults.patterns(
29 debug_patterns = defaults.patterns(
urls_common.py 7 Generates the common URL patterns for the given names
15 pattern_list = defaults.patterns(
21 debug_pattern_list = defaults.patterns('',
  /external/clang/test/Index/
complete-exprs.c 27 // RUN: c-index-test -code-completion-at=%s:7:9 -Xclang -code-completion-patterns %s | FileCheck -check-prefix=CHECK-CC1 %s
28 // RUN: env CINDEXTEST_EDITING=1 CINDEXTEST_COMPLETION_CACHING=1 c-index-test -code-completion-at=%s:7:9 -Xclang -code-completion-patterns %s | FileCheck -check-prefix=CHECK-CC1 %s
35 // RUN: env CINDEXTEST_EDITING=1 CINDEXTEST_COMPLETION_CACHING=1 c-index-test -code-completion-at=%s:7:9 -Xclang -code-completion-patterns %s | FileCheck -check-prefix=CHECK-CC1 %s
36 // RUN: c-index-test -code-completion-at=%s:7:14 -Xclang -code-completion-patterns %s | FileCheck -check-prefix=CHECK-CC3 %s
37 // RUN: env CINDEXTEST_EDITING=1 CINDEXTEST_COMPLETION_CACHING=1 c-index-test -code-completion-at=%s:7:14 -Xclang -code-completion-patterns %s | FileCheck -check-prefix=CHECK-CC3 %s
44 // RUN: c-index-test -code-completion-at=%s:7:18 -Xclang -code-completion-patterns %s | FileCheck -check-prefix=CHECK-CC3 %s
45 // RUN: c-index-test -code-completion-at=%s:7:22 -Xclang -code-completion-patterns %s | FileCheck -check-prefix=CHECK-CC3 %s
46 // RUN: c-index-test -code-completion-at=%s:7:2 -Xclang -code-completion-patterns %s | FileCheck -check-prefix=CHECK-CC2 %s
52 // RUN: c-index-test -code-completion-at=%s:11:16 -Xclang -code-completion-patterns %s | FileCheck -check-prefix=CHECK-CC4 %s
56 // RUN: c-index-test -code-completion-at=%s:19:3 -Xclang -code-completion-patterns %s | FileCheck -check-prefix=CHECK-CC6 %
    [all...]
  /external/jarjar/src/main/com/tonicsystems/jarjar/
PatternElement.java 33 static List<Wildcard> createWildcards(List<? extends PatternElement> patterns) {
35 for (PatternElement pattern : patterns) {
39 throw new IllegalArgumentException("Patterns cannot contain slashes");
RulesFileParser.java 42 List<PatternElement> patterns = new ArrayList<PatternElement>(); local
69 patterns.add(element);
72 return patterns;
  /external/libxml2/test/relaxng/
tutorA.rng 19 <ref name="open-patterns"/>
38 <ref name="open-patterns"/>
42 <ref name="open-patterns"/>
46 <ref name="open-patterns"/>
50 <ref name="open-patterns"/>
54 <ref name="open-patterns"/>
58 <ref name="open-patterns"/>
62 <ref name="open-patterns"/>
66 <ref name="open-patterns"/>
119 <ref name="open-patterns"/>
    [all...]
  /external/chromium-trace/catapult/dashboard/dashboard/
edit_anomaly_configs_test.py 49 'patterns': 'M/b/ts/*\nM/b/ts/*/*\n',
58 self.assertEqual(['M/b/ts/*', 'M/b/ts/*/*'], config.patterns)
65 patterns=['MyMaster/*/*/*']).put()
71 'patterns': 'MyMaster/*/*/*',
79 self.assertEqual(['MyMaster/*/*/*'], anomaly_configs[0].patterns)
82 """Tests changing the patterns list of an existing AnomalyConfig."""
99 'patterns': '*/*/Suite1/aaa',
108 'patterns': '*/*/Suite1/*',
114 # The lists of test patterns in the AnomalyConfig entities in the datastore
118 anomaly_config.AnomalyConfig.get_by_id('2-Suite1-general').patterns)
    [all...]
edit_bug_labels_test.py 40 # The list of patterns should now contain the pattern that was added.
53 # The list of patterns should now contain both patterns.
list_monitored_tests_test.py 38 internal_only=False, summarize=False, patterns=None):
42 summarize=summarize, patterns=patterns or []).put()
45 self._AddSheriff('X', patterns=['*/*/Suite1/*'])
  /external/apache-xml/src/main/java/org/apache/xpath/patterns/
ContextMatchStepPattern.java 21 package org.apache.xpath.patterns;
52 * @return {@link org.apache.xpath.patterns.NodeTest#SCORE_NODETEST},
53 * {@link org.apache.xpath.patterns.NodeTest#SCORE_NONE},
54 * {@link org.apache.xpath.patterns.NodeTest#SCORE_NSWILD},
55 * {@link org.apache.xpath.patterns.NodeTest#SCORE_QNAME}, or
56 * {@link org.apache.xpath.patterns.NodeTest#SCORE_OTHER}.
77 * @return {@link org.apache.xpath.patterns.NodeTest#SCORE_NODETEST},
78 * {@link org.apache.xpath.patterns.NodeTest#SCORE_NONE},
79 * {@link org.apache.xpath.patterns.NodeTest#SCORE_NSWILD},
80 * {@link org.apache.xpath.patterns.NodeTest#SCORE_QNAME}, o
    [all...]
  /external/chromium-trace/catapult/dashboard/dashboard/templates/
edit_anomaly_configs.html 15 // which have the properties "config" and "patterns".
45 var patternsTextarea = document.getElementById('patterns-textarea');
47 patternsTextarea.value = selectedConfig['patterns'];
65 <p><b>Note</b>: If the test path patterns of two different anomaly
74 try separating the pattern into multiple patterns that match
96 <textarea name="patterns" id="patterns-textarea"
  /external/jetty/src/java/org/eclipse/jetty/webapp/
ClasspathPattern.java 57 public ClasspathPattern(String[] patterns)
59 setPatterns(patterns);
73 * @param patterns array of classpath patterns
75 private void setPatterns(String[] patterns)
79 addPatterns(patterns);
86 * @param patterns array of classpath patterns
88 private void addPatterns(String[] patterns)
90 if (patterns != null
152 ArrayList<String> patterns = new ArrayList<String>(); local
168 String[] patterns = null; local
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
dtitvinf.h 19 * \brief C++ API: Date/Time interval patterns for formatting date/time interval
33 * date time interval patterns. It is used by DateIntervalFormat.
42 * For power users, who want to create their own date interval patterns,
43 * or want to re-set date interval patterns, they could do so by
47 * Logically, the interval patterns are mappings
68 * in date time patterns, will be returned without honor the field pattern
86 * There are pre-defined interval patterns for those pre-defined skeletons
98 * For date skeleton, the interval patterns when year, or month, or date is
100 * For time skeleton, the interval patterns when am/pm, or hour, or minute is
125 * initialized with the pre-defined interval patterns for a given or
    [all...]
  /external/llvm/utils/TableGen/
DAGISelEmitter.cpp 76 // In particular, we want to match maximal patterns first and lowest cost within
94 // Otherwise, if the patterns might both match, sort based on complexity,
95 // which means that we prefer to match patterns that cover more nodes in the
102 // If the patterns have equal complexity, compare generated instruction cost
130 DEBUG(errs() << "\n\nALL PATTERNS TO MATCH:\n\n";
138 // Add all the patterns to a temporary list so we can sort them.
139 std::vector<const PatternToMatch*> Patterns;
142 Patterns.push_back(&*I);
144 // We want to process the matches in order of minimal cost. Sort the patterns
146 std::sort(Patterns.begin(), Patterns.end(), PatternSortingPredicate(CGP))
    [all...]
  /external/autotest/client/site_tests/policy_CookiesAllowedForUrls/
control 25 with a URL that matches one or more of the URL patterns listed in the
29 - Does not store cookies for URLs that match the URL patterns listed in the
31 - Stores cookies for URLs that do not match the URL patterns listed in the
  /external/autotest/client/site_tests/policy_CookiesBlockedForUrls/
control 26 with a URL that matches one or more of the URL patterns listed in the
30 -Stores cookies for Urls that match the url patterns listed in the
32 -Does not store cookies for Urls that do not match the url patterns listed
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
CalendarData.java 176 * in DateFormat. If date-time patterns by style are not available, it returns what
184 // code more brittle, but it is no more brittle than how we access patterns by style.
189 String[] patterns = null; local
191 patterns = getDateTimePatterns();
193 // ignore. patterns remains null.
195 if (patterns == null || patterns.length < 9) {
196 // Return hard-coded default. patterns array not available or it has too few
200 if (patterns.length < 13) {
201 // Offset 8 contains default pattern if we don't have per style patterns
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
CalendarData.java 174 * in DateFormat. If date-time patterns by style are not available, it returns what
182 // code more brittle, but it is no more brittle than how we access patterns by style.
187 String[] patterns = null; local
189 patterns = getDateTimePatterns();
191 // ignore. patterns remains null.
193 if (patterns == null || patterns.length < 9) {
194 // Return hard-coded default. patterns array not available or it has too few
198 if (patterns.length < 13) {
199 // Offset 8 contains default pattern if we don't have per style patterns
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
ChangedFileSet.java 25 * Collection of file path or path patterns to be checked for changes.
28 * Patterns can use Ant-type glob patterns.
  /external/guice/extensions/servlet/src/com/google/inject/servlet/
ServletModuleTargetVisitor.java 39 * If multiple patterns were specified, this will be called multiple times.
47 * If multiple patterns were specified, this will be called multiple times.
55 * If multiple patterns were specified, this will be called multiple times.
63 * If multiple patterns were specified, this will be called multiple times.
  /external/hyphenation-patterns/hu/
hyph-hu.lic.txt 1 Hungarian hyphenation patterns (v20110815)
7 % Huhyphn - hungarian hyphenation patterns v20110815
22 % The Original Code is the Huhyphn - hungarian hyphenation patterns.
48 \message{Huhyphn - hungarian hyphenation patterns v20110815}
  /external/selinux/policycoreutils/mcstrans/
TODO 3 In compute_raw_from_trans look for conflicting bit patterns and report errors.
  /frameworks/base/docs/html/training/
best-ux.jd 9 the best interaction patterns for Android. For instance, to help users quickly discover content

Completed in 3071 milliseconds

1 23 4 5 6 7 8 91011>>