HomeSort by relevance Sort by last modified time
    Searched refs:MOBILE (Results 1 - 22 of 22) sorted by null

  /external/chromium_org/chrome/browser/renderer_host/
safe_browsing_resource_throttle_factory.cc 33 #error Need to define {FULL|MOBILE} SAFE_BROWSING mode.
  /external/protobuf/examples/
add_person.py 25 type = raw_input("Is this a mobile, home, or work phone? ")
26 if type == "mobile":
27 phone_number.type = addressbook_pb2.Person.MOBILE
list_people.py 17 if phone_number.type == addressbook_pb2.Person.MOBILE:
18 print " Mobile phone #:",
ListPeople.java 21 case MOBILE:
22 System.out.print(" Mobile phone #: ");
add_person.cc 38 cout << "Is this a mobile, home, or work phone? ";
41 if (type == "mobile") {
42 phone_number->set_type(tutorial::Person::MOBILE);
list_people.cc 24 case tutorial::Person::MOBILE:
25 cout << " Mobile phone #: ";
AddPerson.java 41 stdout.print("Is this a mobile, home, or work phone? ");
43 if (type.equals("mobile")) {
44 phoneNumber.setType(Person.PhoneType.MOBILE);
  /external/libphonenumber/java/test/com/android/i18n/phonenumbers/
ExampleNumbersTest.java 102 Set<PhoneNumberType> mobileTypes = EnumSet.of(PhoneNumberType.MOBILE,
104 checkNumbersValidAndCorrectType(PhoneNumberType.MOBILE, mobileTypes);
PhoneNumberUtilTest.java 212 assertFalse(phoneUtil.isNumberGeographical(BS_MOBILE)); // Bahamas, mobile phone number.
237 // A UK mobile phone, which has no area code.
269 // A UK mobile phone, which has NDC "7912".
275 // An Argentinian mobile which has NDC "911".
298 // An Italian mobile number.
315 PhoneNumberUtil.PhoneNumberType.MOBILE));
317 // for both fixed line and mobile, so neither of these should return null.
321 PhoneNumberUtil.PhoneNumberType.MOBILE));
324 PhoneNumberUtil.PhoneNumberType.MOBILE));
    [all...]
  /external/chromium_org/chrome/browser/bookmarks/
bookmark_html_writer.cc 139 BookmarkNode::MOBILE)) {
307 folder_type != BookmarkNode::MOBILE) {
308 // The other/mobile folder name are not written out. This gives the effect
351 folder_type != BookmarkNode::MOBILE) {
bookmark_model.cc 735 case BookmarkNode::MOBILE:
934 type == BookmarkNode::MOBILE);
937 if (type == BookmarkNode::MOBILE)
938 node->set_visible(false); // Mobile node is initially hidden.
948 case BookmarkNode::MOBILE:
    [all...]
bookmark_model.h 56 MOBILE
222 // bar', those in the 'other bookmarks' folder and those in the 'mobile' folder.
256 // Returns the 'mobile' node. This is NULL until loaded.
262 // 'bookmark bar' node, 'other' node or 'mobile' node.
474 // and mobile node) from |type|.
bookmark_codec.cc 174 // Fail silently if we can't deserialize mobile bookmarks. We can't require
183 // If we didn't find the mobile folder, we're almost guaranteed to have a
184 // duplicate id when we add the mobile folder. Consequently, if we don't
186 // least reassign the mobile bookmarks to avoid it colliding with anything
199 mobile_folder_node->set_type(BookmarkNode::MOBILE);
bookmark_model_unittest.cc 304 EXPECT_EQ(BookmarkNode::MOBILE, mobile_node->type());
959 TestNode mobile; local
    [all...]
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/
PhoneNumberOfflineGeocoder.java 153 * the number is suitable for geocoding. We consider fixed-line and mobile numbers possible
256 numberType == PhoneNumberType.MOBILE ||
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
phonenumberutil.h 97 MOBILE,
99 // fixed-line and mobile numbers by looking at the phone number itself.
111 // routed to either a MOBILE or FIXED_LINE number. Some more information can
229 // - subscriber numbers may not be diallable from all devices (notably mobile
313 // mobile phone in a specific region. If the number cannot be reached from
    [all...]
phonenumberutil.cc 90 // number when dialed from a mobile phone in Colombia.
137 case PhoneNumberUtil::MOBILE:
138 return &metadata.mobile();
259 VLOG(4) << "Fixed-line and mobile patterns equal, number is fixed-line"
260 << " or mobile";
262 } else if (IsNumberMatchingDesc(national_number, metadata.mobile(),
264 VLOG(4) << "Fixed-line and mobile patterns differ, but number is "
265 << "still fixed-line or mobile";
271 // Otherwise, test to see if the number is mobile. Only do this if certain
272 // that the patterns for mobile and fixed line aren't the same
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/ntp/android/
bookmarks_handler.cc 46 case BookmarkNode::MOBILE:
47 return "MOBILE";
133 // Attach the Partner Bookmarks shim under the Mobile Bookmarks.
219 // If this is the Mobile bookmarks folder then add the "Managed bookmarks"
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/
PhoneNumberUtil.java 96 // a mobile phone in Colombia.
403 MOBILE,
405 // mobile numbers by looking at the phone number itself.
417 // MOBILE or FIXED_LINE number. Some more information can be found here:
    [all...]
  /external/chromium_org/chrome/browser/sync/glue/
bookmark_model_associator.cc 221 BookmarkNode::MOBILE,
426 "Mobile bookmarks node not found",
  /external/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_editor_view.cc 488 DCHECK_EQ(BookmarkNode::MOBILE, bb_root_node->GetChild(2)->type());
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
ChromeBrowserProvider.java 626 // is the Mobile Bookmarks folder.
648 // then use the synced node (Mobile Bookmarks).
    [all...]

Completed in 306 milliseconds