/external/icu4c/i18n/ |
nfsubs.cpp | 56 virtual int64_t transformNumber(int64_t number) const { return number; } 57 virtual double transformNumber(double number) const { return number; } 100 virtual int64_t transformNumber(int64_t number) const { 101 return number / ldivisor; 104 virtual double transformNumber(double number) const { 106 return uprv_floor(number / divisor); 108 return number/divisor; 152 virtual void doSubstitution(int64_t number, UnicodeString& toInsertInto, int32_t pos) const [all...] |
tmutamt.cpp | 17 TimeUnitAmount::TimeUnitAmount(const Formattable& number, 20 : Measure(number, TimeUnit::createInstance(timeUnitField, status), status) {
|
upluralrules.cpp | 40 double number, 51 UnicodeString result = ((PluralRules*)uplrules)->select(number);
|
winnmfmt.cpp | 42 NUMBERFMTW number; member in union:FormatInfo 150 getNumberFormat(&fFormatInfo->number, fLCID); 170 freeNumberFormat(&fFormatInfo->number); 189 freeNumberFormat(&fFormatInfo->number); 190 getNumberFormat(&fFormatInfo->number, fLCID); 201 UnicodeString& Win32NumberFormat::format(double number, UnicodeString& appendTo, FieldPosition& pos) const 203 return format(getMaximumFractionDigits(), appendTo, L"%.16f", number); 206 UnicodeString& Win32NumberFormat::format(int32_t number, UnicodeString& appendTo, FieldPosition& pos) const 208 return format(getMinimumFractionDigits(), appendTo, L"%I32d", number); 211 UnicodeString& Win32NumberFormat::format(int64_t number, UnicodeString& appendTo, FieldPosition& pos) cons [all...] |
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
MimeVersionParser.java | 76 String majorVersion = this.lexer.number(); 79 String minorVersion = this.lexer.number(); 104 * Issue number: 111 * CVS: Issue number: 113 * CVS: then enter the issue number(s) here. 142 * Issue number: 150 * CVS: Issue number: 152 * CVS: then enter the issue number(s) here.
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
UnknownFieldSet.java | 108 /** Get a map of fields in the set by number. */ 113 /** Check if the given field number is present in the set. */ 114 public boolean hasField(final int number) { 115 return fields.containsKey(number); 119 * Get a field by number. Returns an empty field if not present. Never 122 public Field getField(final int number) { 123 final Field result = fields.get(number); 196 /** Get the number of bytes required to encode this set. */ 218 * Get the number of bytes required to encode this set using 299 * Get a field builder for the given field number which includes an 475 final int number = WireFormat.getTagFieldNumber(tag); local [all...] |
Internal.java | 119 T findValueByNumber(int number);
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/ |
CdmaCallWaitingNotification.java | 29 public String number = null; field in class:CdmaCallWaitingNotification 44 + " number: " + number
|
/packages/apps/Dialer/src/com/android/dialer/service/ |
CachedNumberLookupService.java | 21 * Perform a lookup using the cached number lookup service to return contact 22 * information stored in the cache that corresponds to the given number. 25 * @param number Phone number to lookup the cache for 27 * number is found in the cache, {@link ContactInfo#EMPTY} if the phone number was 30 public CachedContactInfo lookupCachedContactFromNumber(Context context, String number); 36 public boolean addPhoto(Context context, String number, byte[] photo); 39 * Remove all cached phone number entries from the cache, regardless of how old they
|
/libcore/luni/src/main/java/java/text/ |
DecimalFormat.java | 67 * manipulate aspects of the pattern, such as the minimum number of integer 103 * <td>Number</td> 109 * <td>Number</td> 116 * <td>Number</td> 122 * <td>Number</td> 128 * <td>Number</td> 134 * <td>Number</td> 140 * <td>Number</td> 202 * suffix; the number of digits, minimal digits, and other characteristics are 220 * is the number of digits between the grouping separators, such as 3 fo 871 Number number = ndf.parse(string, position); local [all...] |
/external/chromium_org/components/autofill/core/browser/ |
phone_number_i18n.h | 29 // Parses the number stored in |value| as a phone number interpreted in the 38 base::string16* number, 41 // Normalizes phone number, by changing digits in the extended fonts 46 // Constructs whole phone number from parts. 49 // |number| - local number, should not be empty. 51 // |whole_number| - constructed whole number. 56 const base::string16& number, 60 // Returns true if |number_a| and |number_b| parse to the same phone number i 80 base::string16 number() const { return number_; } function in class:autofill::i18n::PhoneObject [all...] |
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
AnimatableNumber.h | 66 static PassRefPtr<AnimatableNumber> create(double number, NumberUnitType unitType, CSSPrimitiveValue* cssPrimitiveValue = 0) 68 return adoptRef(new AnimatableNumber(number, unitType, cssPrimitiveValue)); 79 AnimatableNumber(double number, NumberUnitType unitType, CSSPrimitiveValue* cssPrimitiveValue) 81 , m_number(number)
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGParserUtilities.h | 38 bool parseSVGNumber(CharType* ptr, size_t length, double& number); 39 bool parseNumber(const LChar*& ptr, const LChar* end, float& number, bool skip = true); 40 bool parseNumber(const UChar*& ptr, const UChar* end, float& number, bool skip = true); 41 bool parseNumberFromString(const String&, float& number, bool skip = true);
|
/external/chromium_org/third_party/icu/source/i18n/ |
winnmfmt.cpp | 42 NUMBERFMTW number; member in union:FormatInfo 150 getNumberFormat(&fFormatInfo->number, fLCID); 170 freeNumberFormat(&fFormatInfo->number); 189 freeNumberFormat(&fFormatInfo->number); 190 getNumberFormat(&fFormatInfo->number, fLCID); 201 UnicodeString& Win32NumberFormat::format(double number, UnicodeString& appendTo, FieldPosition& pos) const 203 return format(getMaximumFractionDigits(), appendTo, L"%.16f", number); 206 UnicodeString& Win32NumberFormat::format(int32_t number, UnicodeString& appendTo, FieldPosition& pos) const 208 return format(getMinimumFractionDigits(), appendTo, L"%I32d", number); 211 UnicodeString& Win32NumberFormat::format(int64_t number, UnicodeString& appendTo, FieldPosition& pos) cons [all...] |
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/geocoding/ |
area_code_map.h | 37 // A utility that maps phone number prefixes to a string describing the 44 // Returns the description of the geographical area the number corresponds 48 // returned. If no description was found for the provided number, null is 50 const char* Lookup(const PhoneNumber& number) const; 56 // area_codes maps phone number prefixes to geographical area description.
|
/external/elfutils/backends/ |
ppc_retval.c | 44 { .atom = DW_OP_reg3 }, { .atom = DW_OP_piece, .number = 4 }, 45 { .atom = DW_OP_reg4 }, { .atom = DW_OP_piece, .number = 4 }, 53 { .atom = DW_OP_regx, .number = 33 } 62 { .atom = DW_OP_breg3, .number = 0 }
|
/external/icu4c/test/cintltst/ |
cpluralrulestest.c | 31 double number; member in struct:__anon20833 72 int32_t keywdLen = uplrules_select(uplrules, testItemPtr->number, keyword, kKeywordBufLen, &status); 80 log_data_err("ERROR: uplrules_select for locale %s, number %.1f: expect %s, get %s\n", 81 testItemPtr->locale, testItemPtr->number, testItemPtr->keywordExpected, u_austrcpy(bcharBuf,keyword) ); 84 log_err("FAIL: uplrules_select for locale %s, number %.1f: %s\n", 85 testItemPtr->locale, testItemPtr->number, myErrorName(status) );
|
/external/iptables/include/linux/netfilter/ |
xt_u32.h | 12 __u32 number; member in struct:xt_u32_location_element 22 * Any way to allow for an arbitrary number of elements?
|
/external/qemu/android/ |
charmap.h | 25 unsigned short number; member in struct:AKeyEntry
|
/external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/ |
Xinerama.h | 32 Returns the number of heads and a pointer to an array of 34 heads. Returns NULL and number = 0 if Xinerama is not active. 42 int *number
|
/external/valgrind/main/none/tests/x86/ |
bug126147-x86.c | 121 check (int thing, int number) 125 printf("%s flunked test %d\n", it, number); 132 equal (const char *a, const char *b, int number) 134 check(a != NULL && b != NULL && STREQ (a, b), number);
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/ |
SimulatedRadioControl.java | 21 public void triggerRing(String number);
|
/packages/apps/Dialer/src/com/android/dialer/calllog/ |
ContactInfo.java | 33 public String number; field in class:ContactInfo 69 if (!TextUtils.equals(number, other.number)) return false; 80 "type", type).add("label", label).add("number", number).add("formattedNumber",
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
lock_dlm_plock.h | 34 __u64 number; member in struct:gdlm_plock_info
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
lock_dlm_plock.h | 34 __u64 number; member in struct:gdlm_plock_info
|