Lines Matching refs:phonenumbers
39 i18n.phonenumbers.PhoneNumber = function() {
42 goog.inherits(i18n.phonenumbers.PhoneNumber, goog.proto2.Message);
49 i18n.phonenumbers.PhoneNumber.descriptor_ = null;
57 i18n.phonenumbers.PhoneNumber.prototype.clone;
64 i18n.phonenumbers.PhoneNumber.prototype.getCountryCode = function() {
73 i18n.phonenumbers.PhoneNumber.prototype.getCountryCodeOrDefault = function() {
82 i18n.phonenumbers.PhoneNumber.prototype.setCountryCode = function(value) {
90 i18n.phonenumbers.PhoneNumber.prototype.hasCountryCode = function() {
98 i18n.phonenumbers.PhoneNumber.prototype.countryCodeCount = function() {
106 i18n.phonenumbers.PhoneNumber.prototype.clearCountryCode = function() {
115 i18n.phonenumbers.PhoneNumber.prototype.getNationalNumber = function() {
124 i18n.phonenumbers.PhoneNumber.prototype.getNationalNumberOrDefault = function() {
133 i18n.phonenumbers.PhoneNumber.prototype.setNationalNumber = function(value) {
141 i18n.phonenumbers.PhoneNumber.prototype.hasNationalNumber = function() {
149 i18n.phonenumbers.PhoneNumber.prototype.nationalNumberCount = function() {
157 i18n.phonenumbers.PhoneNumber.prototype.clearNationalNumber = function() {
166 i18n.phonenumbers.PhoneNumber.prototype.getExtension = function() {
175 i18n.phonenumbers.PhoneNumber.prototype.getExtensionOrDefault = function() {
184 i18n.phonenumbers.PhoneNumber.prototype.setExtension = function(value) {
192 i18n.phonenumbers.PhoneNumber.prototype.hasExtension = function() {
200 i18n.phonenumbers.PhoneNumber.prototype.extensionCount = function() {
208 i18n.phonenumbers.PhoneNumber.prototype.clearExtension = function() {
217 i18n.phonenumbers.PhoneNumber.prototype.getItalianLeadingZero = function() {
226 i18n.phonenumbers.PhoneNumber.prototype.getItalianLeadingZeroOrDefault = function() {
235 i18n.phonenumbers.PhoneNumber.prototype.setItalianLeadingZero = function(value) {
243 i18n.phonenumbers.PhoneNumber.prototype.hasItalianLeadingZero = function() {
251 i18n.phonenumbers.PhoneNumber.prototype.italianLeadingZeroCount = function() {
259 i18n.phonenumbers.PhoneNumber.prototype.clearItalianLeadingZero = function() {
268 i18n.phonenumbers.PhoneNumber.prototype.getNumberOfLeadingZeros = function() {
277 i18n.phonenumbers.PhoneNumber.prototype.getNumberOfLeadingZerosOrDefault = function() {
286 i18n.phonenumbers.PhoneNumber.prototype.setNumberOfLeadingZeros = function(value) {
294 i18n.phonenumbers.PhoneNumber.prototype.hasNumberOfLeadingZeros = function() {
302 i18n.phonenumbers.PhoneNumber.prototype.numberOfLeadingZerosCount = function() {
310 i18n.phonenumbers.PhoneNumber.prototype.clearNumberOfLeadingZeros = function() {
319 i18n.phonenumbers.PhoneNumber.prototype.getRawInput = function() {
328 i18n.phonenumbers.PhoneNumber.prototype.getRawInputOrDefault = function() {
337 i18n.phonenumbers.PhoneNumber.prototype.setRawInput = function(value) {
345 i18n.phonenumbers.PhoneNumber.prototype.hasRawInput = function() {
353 i18n.phonenumbers.PhoneNumber.prototype.rawInputCount = function() {
361 i18n.phonenumbers.PhoneNumber.prototype.clearRawInput = function() {
370 i18n.phonenumbers.PhoneNumber.prototype.getCountryCodeSource = function() {
379 i18n.phonenumbers.PhoneNumber.prototype.getCountryCodeSourceOrDefault = function() {
388 i18n.phonenumbers.PhoneNumber.prototype.setCountryCodeSource = function(value) {
396 i18n.phonenumbers.PhoneNumber.prototype.hasCountryCodeSource = function() {
404 i18n.phonenumbers.PhoneNumber.prototype.countryCodeSourceCount = function() {
412 i18n.phonenumbers.PhoneNumber.prototype.clearCountryCodeSource = function() {
421 i18n.phonenumbers.PhoneNumber.prototype.getPreferredDomesticCarrierCode = function() {
430 i18n.phonenumbers.PhoneNumber.prototype.getPreferredDomesticCarrierCodeOrDefault = function() {
439 i18n.phonenumbers.PhoneNumber.prototype.setPreferredDomesticCarrierCode = function(value) {
447 i18n.phonenumbers.PhoneNumber.prototype.hasPreferredDomesticCarrierCode = function() {
455 i18n.phonenumbers.PhoneNumber.prototype.preferredDomesticCarrierCodeCount = function() {
463 i18n.phonenumbers.PhoneNumber.prototype.clearPreferredDomesticCarrierCode = function() {
472 i18n.phonenumbers.PhoneNumber.CountryCodeSource = {
482 i18n.phonenumbers.PhoneNumber.prototype.getDescriptor = function() {
483 var descriptor = i18n.phonenumbers.PhoneNumber.descriptor_;
527 defaultValue: i18n.phonenumbers.PhoneNumber.CountryCodeSource.UNSPECIFIED,
528 type: i18n.phonenumbers.PhoneNumber.CountryCodeSource
536 i18n.phonenumbers.PhoneNumber.descriptor_ = descriptor =
538 i18n.phonenumbers.PhoneNumber, descriptorObj);
545 i18n.phonenumbers.PhoneNumber['ctor'] = i18n.phonenumbers.PhoneNumber;
546 i18n.phonenumbers.PhoneNumber['ctor'].getDescriptor =
547 i18n.phonenumbers.PhoneNumber.prototype.getDescriptor;