/external/chromium_org/chrome/browser/renderer_host/ |
safe_browsing_resource_throttle_factory.cc | 29 #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)) { 306 folder_type != BookmarkNode::MOBILE) { 307 // The other/mobile folder name are not written out. This gives the effect 350 folder_type != BookmarkNode::MOBILE) {
|
bookmark_model.cc | 763 case BookmarkNode::MOBILE: 963 type == BookmarkNode::MOBILE); 966 if (type == BookmarkNode::MOBILE) 967 node->set_visible(false); // Mobile node is initially hidden. 977 case BookmarkNode::MOBILE: [all...] |
bookmark_model.h | 57 MOBILE 234 // bar', those in the 'other bookmarks' folder and those in the 'mobile' folder. 268 // Returns the 'mobile' node. This is NULL until loaded. 274 // 'bookmark bar' node, 'other' node or 'mobile' node. 492 // and mobile node) from |type|.
|
bookmark_codec.cc | 202 // Fail silently if we can't deserialize mobile bookmarks. We can't require 211 // If we didn't find the mobile folder, we're almost guaranteed to have a 212 // duplicate id when we add the mobile folder. Consequently, if we don't 214 // least reassign the mobile bookmarks to avoid it colliding with anything 236 mobile_folder_node->set_type(BookmarkNode::MOBILE);
|
bookmark_model_unittest.cc | 302 EXPECT_EQ(BookmarkNode::MOBILE, mobile_node->type()); 956 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 192 // all characters which are not diallable on a mobile phone keypad (including 234 // - subscriber numbers may not be diallable from all devices (notably mobile 275 // Returns the mobile token for the provided country calling code if it has 276 // one, otherwise returns an empty string. A mobile token is a number inserted 277 // before the area code when dialing a mobile number from that country from 325 // mobile phone in a specific region. If the number cannot be reached from [all...] |
phonenumberutil.cc | 83 // number when dialed from a mobile phone in Colombia. 130 case PhoneNumberUtil::MOBILE: 131 return &metadata.mobile(); 252 VLOG(4) << "Fixed-line and mobile patterns equal, number is fixed-line" 253 << " or mobile"; 255 } else if (IsNumberMatchingDesc(national_number, metadata.mobile(), 257 VLOG(4) << "Fixed-line and mobile patterns differ, but number is " 258 << "still fixed-line or mobile"; 264 // Otherwise, test to see if the number is mobile. Only do this if certain 265 // 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 | 65 case BookmarkNode::MOBILE: 66 return "MOBILE"; 283 // 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, 432 "Mobile bookmarks node not found",
|
/external/chromium_org/chrome/browser/ui/views/bookmarks/ |
bookmark_editor_view.cc | 492 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...] |