HomeSort by relevance Sort by last modified time
    Searched refs:Patterns (Results 1 - 25 of 44) sorted by null

1 2

  /frameworks/base/core/tests/coretests/src/android/util/
PatternsTest.java 19 import android.util.Patterns;
31 t = Patterns.TOP_LEVEL_DOMAIN.matcher("com").matches();
35 t = Patterns.TOP_LEVEL_DOMAIN.matcher("me").matches();
39 t = Patterns.TOP_LEVEL_DOMAIN.matcher("xn--0zwm56d").matches();
43 t = Patterns.TOP_LEVEL_DOMAIN.matcher("\uD55C\uAD6D").matches();
46 t = Patterns.TOP_LEVEL_DOMAIN.matcher("mem").matches();
49 t = Patterns.TOP_LEVEL_DOMAIN.matcher("xn").matches();
52 t = Patterns.TOP_LEVEL_DOMAIN.matcher("xer").matches();
60 t = Patterns.WEB_URL.matcher("http://www.google.com").matches();
64 t = Patterns.WEB_URL.matcher("http://www.google.me").matches()
    [all...]
  /external/chromium_org/extensions/common/
url_pattern_set_unittest.cc 20 URLPatternSet Patterns(const std::string& pattern) {
26 URLPatternSet Patterns(const std::string& pattern1,
201 // Note that this checks if individual patterns contain other patterns, not
225 std::vector<std::string> patterns; local
226 patterns.push_back("http://www.google.com/*");
227 patterns.push_back("http://www.yahoo.com/*");
229 for (size_t i = 0; i < patterns.size(); ++i)
230 AddPattern(&set1, patterns[i]);
239 set2.Populate(patterns, URLPattern::SCHEME_ALL, allow_file_access, &error)
    [all...]
  /external/llvm/utils/TableGen/
DAGISelEmitter.cpp 74 // 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...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardStatusView.java 101 Patterns.update(mContext);
103 mDateView.setFormat24Hour(Patterns.dateView);
104 mDateView.setFormat12Hour(Patterns.dateView);
106 mClockView.setFormat12Hour(Patterns.clockView12);
107 mClockView.setFormat24Hour(Patterns.clockView24);
140 // This is an optimization to ensure we only recompute the patterns when the inputs change.
141 private static final class Patterns {
  /frameworks/base/core/java/android/util/
Patterns.java 23 * Commonly used regular expression patterns.
25 public class Patterns {
231 private Patterns() {}
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/personalization/
AccountUtils.java 22 import android.util.Patterns;
41 if (Patterns.EMAIL_ADDRESS.matcher(name).matches()) {
  /packages/apps/Browser/src/com/android/browser/
UrlUtils.java 20 import android.util.Patterns;
117 if (hasSpace && Patterns.WEB_URL.matcher(inUrl).matches()) {
123 if (Patterns.WEB_URL.matcher(inUrl).matches()) {
UrlInputView.java 28 import android.util.Patterns;
280 if (Patterns.WEB_URL.matcher(url).matches()
IntentHandler.java 32 import android.util.Patterns;
283 if (Patterns.WEB_URL.matcher(url).matches()
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
IntentHelper.java 14 import android.util.Patterns;
49 Pattern emailPattern = Patterns.EMAIL_ADDRESS;
  /external/chromium_org/chrome/browser/extensions/api/web_request/
form_data_parser.cc 32 struct Patterns {
33 Patterns();
34 ~Patterns();
49 Patterns::Patterns()
69 Patterns::~Patterns() {}
71 static base::LazyInstance<Patterns>::Leaky g_patterns =
113 const Patterns* patterns_;
284 const Patterns* patterns_
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Patterns.java 25 public class Patterns extends GraphicsActivity {
  /frameworks/base/core/java/android/net/
WebAddress.java 19 import static android.util.Patterns.GOOD_IRI_CHAR;
  /frameworks/base/core/java/android/text/util/
Linkify.java 26 import android.util.Patterns;
86 * Bit mask indicating that all available patterns should be matched in
144 return Patterns.digitsAndPlusOnly(match);
178 * how matched patterns are represented as URLs.
218 gatherLinks(links, text, Patterns.WEB_URL,
224 gatherLinks(links, text, Patterns.EMAIL_ADDRESS,
  /frameworks/base/packages/Shell/src/com/android/shell/
BugreportReceiver.java 36 import android.util.Patterns;
154 if (Patterns.EMAIL_ADDRESS.matcher(account.name).matches()) {
  /frameworks/opt/telephony/src/java/android/provider/
Telephony.java 32 import android.util.Patterns;
    [all...]
  /frameworks/base/docs/html/design/
design_toc.cs 28 <div class="nav-section-header"><a href="<?cs var:toroot ?>design/patterns/index.html">Patterns</a></div>
30 <li><a href="<?cs var:toroot ?>design/patterns/new.html">New in Android</a></li>
31 <li><a href="<?cs var:toroot ?>design/patterns/gestures.html">Gestures</a></li>
32 <li><a href="<?cs var:toroot ?>design/patterns/app-structure.html">App Structure</a></li>
33 <li><a href="<?cs var:toroot ?>design/patterns/navigation.html">Navigation</a></li>
34 <li><a href="<?cs var:toroot ?>design/patterns/actionbar.html">Action Bar</a></li>
35 <li><a href="<?cs var:toroot ?>design/patterns/navigation-drawer.html">Navigation Drawer</a></li>
36 <li><a href="<?cs var:toroot ?>design/patterns/multi-pane-layouts.html">Multi-pane Layouts</a></li>
37 <li><a href="<?cs var:toroot ?>design/patterns/swipe-views.html">Swipe Views</a></li
    [all...]
  /external/chromium/chrome/browser/content_settings/
content_settings_pref_provider_unittest.cc 258 TEST_F(PrefProviderTest, Patterns) {
  /external/chromium_org/chrome/browser/content_settings/
content_settings_pref_provider_unittest.cc 261 TEST_F(PrefProviderTest, Patterns) {
  /external/chromium/chrome/browser/extensions/
extension_context_menu_browsertest.cc 219 IN_PROC_BROWSER_TEST_F(ExtensionContextMenuBrowserTest, Patterns) {
222 ASSERT_TRUE(LoadContextMenuExtension("patterns"));
224 // Wait for the js test code to create its two items with patterns.
227 // Check that a document url that should match the items' patterns appears.
  /external/chromium_org/third_party/skia/src/sfnt/
SkPanose.h 534 ((Patterns, 8))
  /external/skia/src/sfnt/
SkPanose.h 534 ((Patterns, 8))
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
wizard.rb 44 define <i>tree patterns</i>, objects that are conceptually similar to regular
45 expressions. Patterns allow a simple method for recursively searching through an
110 === Additional Syntax for Tree Matching Patterns
124 A class that is used internally by AST::Wizard to tokenize tree patterns
133 PATTERNS = [
156 type, = PATTERNS.find do |type, pattern|
316 A customized TreeAdaptor used by AST::Wizards to build tree patterns.
  /external/valgrind/main/none/tests/
cmdline1.stdout.exp 84 text symbol. Patterns can contain ? and *.
86 specify patterns for function wrapping or replacement.
  /packages/apps/Browser/src/com/android/browser/provider/
BrowserProvider.java 43 import android.util.Patterns;
    [all...]

Completed in 897 milliseconds

1 2