HomeSort by relevance Sort by last modified time
    Searched refs:number (Results 226 - 250 of 2605) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/icu/icu4c/source/i18n/
tmutamt.cpp 19 TimeUnitAmount::TimeUnitAmount(const Formattable& number,
22 : Measure(number, TimeUnit::createInstance(timeUnitField, status), status) {
nfsubs.h 109 * Performs a mathematical operation on the number, formats it using
112 * @param number The number being formatted.
118 virtual void doSubstitution(int64_t number, UnicodeString& toInsertInto, int32_t pos, int32_t recursionCount, UErrorCode& status) const;
121 * Performs a mathematical operation on the number, formats it using
124 * @param number The number being formatted.
130 virtual void doSubstitution(double number, UnicodeString& toInsertInto, int32_t pos, int32_t recursionCount, UErrorCode& status) const;
135 * mathematical operation on the number. The result of this operation
139 * @param The number being formatte
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
plurfmt.h 42 * the number.
50 * doesn't handle this well, because it attaches a number interval to
52 * given number. This can only handle a finite number of
85 * method takes a number object and selects the message of the
94 * offsetValue = "offset:" number
96 * explicitValue = '=' number // adjacent, no white space in between
102 * and between the '=' and the number of an explicitValue.
112 * When formatting, the input number is first matched against the explicitValue clauses.
113 * If there is no exact-number match, then a keyword is selected by callin
    [all...]
upluralrules.h 31 * returns the keyword for the first condition that matches the number.
82 * Opens a new UPluralRules object using the predefined cardinal-number plural rules for a
135 * Given a number, returns the keyword of the first rule that
136 * applies to the number, according to the supplied UPluralRules object.
138 * @param number The number for which the rule has to be determined.
139 * @param keyword The keyword of the rule that applies to number.
147 double number,
153 * Given a number, returns the keyword of the first rule that applies to the
154 * number, according to the UPluralRules object and given the number forma
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
MacroProps.java 3 package com.ibm.icu.impl.number;
8 import com.ibm.icu.number.IntegerWidth;
9 import com.ibm.icu.number.Notation;
10 import com.ibm.icu.number.NumberFormatter.DecimalSeparatorDisplay;
11 import com.ibm.icu.number.NumberFormatter.SignDisplay;
12 import com.ibm.icu.number.NumberFormatter.UnitWidth;
13 import com.ibm.icu.number.Precision;
14 import com.ibm.icu.number.Scale;
Modifier.java 3 package com.ibm.icu.impl.number;
24 * The left index of the string within the builder. Equal to 0 when only one number is
28 * number is being formatted.
29 * @return The number of characters (UTF-16 code units) that were added to the string builder.
37 * @return The number of characters (UTF-16 code units) in the prefix.
42 * Returns the number of code points in the modifier, prefix plus suffix.
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
IntegerWidth.java 3 package com.ibm.icu.number;
5 import com.ibm.icu.impl.number.RoundingUtils;
30 * Pad numbers at the beginning with zeros to guarantee a certain number of numerals before the
34 * For example, with minInt=3, the number 55 will get printed as "055".
37 * The minimum number of places before the decimal separator.
56 * Truncate numbers exceeding a certain number of numerals before the decimal separator.
58 * For example, with maxInt=3, the number 1234 will get printed as "234".
61 * The maximum number of places before the decimal separator. maxInt == -1 means no
FormattedNumberRange.java 3 package com.ibm.icu.number;
11 import com.ibm.icu.impl.number.DecimalQuantity;
12 import com.ibm.icu.impl.number.NumberStringBuilder;
13 import com.ibm.icu.number.NumberRangeFormatter.RangeIdentityResult;
17 * The result of a number range formatting operation. This class allows the result to be exported in several data types,
40 * Creates a String representation of the the formatted number range.
42 * @return a String containing the localized number range.
53 * Append the formatted number range to an Appendable, such as a StringBuilder. This may be slightly more efficient
61 * The Appendable to which to append the formatted number range string.
112 * Export the formatted number range as an AttributedCharacterIterator. This allows you to determine whic
    [all...]
  /external/icu/libandroidicu/include/unicode/
upluralrules.h 31 * returns the keyword for the first condition that matches the number.
82 * Opens a new UPluralRules object using the predefined cardinal-number plural rules for a
135 * Given a number, returns the keyword of the first rule that
136 * applies to the number, according to the supplied UPluralRules object.
138 * @param number The number for which the rule has to be determined.
139 * @param keyword The keyword of the rule that applies to number.
147 double number,
153 * Given a number, returns the keyword of the first rule that applies to the
154 * number, according to the UPluralRules object and given the number forma
    [all...]
  /external/ims/rcs/rcsmanager/src/java/com/android/ims/internal/
Logger.java 201 public static String hidePhoneNumberPii(String number) {
202 if(TextUtils.isEmpty(number) || mRcsTestMode || number.length() <= 2) {
203 return number;
205 StringBuilder sb = new StringBuilder(number.length());
207 sb.append(number.substring(number.length()-2, number.length()));
  /external/junit-params/src/test/java/junitparams/
ParametersReaderForMethodTest.java 15 public void oneParamDifferentTypes(int number, String a) {
16 assertThat(number).isEqualTo(1);
  /external/lzma/CPP/Common/
StdOutStream.cpp 137 CStdOutStream & CStdOutStream::operator<<(Int32 number) throw()
140 ConvertInt64ToString(number, s);
144 CStdOutStream & CStdOutStream::operator<<(Int64 number) throw()
147 ConvertInt64ToString(number, s);
151 CStdOutStream & CStdOutStream::operator<<(UInt32 number) throw()
154 ConvertUInt32ToString(number, s);
158 CStdOutStream & CStdOutStream::operator<<(UInt64 number) throw()
161 ConvertUInt64ToString(number, s);
  /external/nanopb-c/examples/cmake_relpath/
simple.c 27 /* Fill in the lucky number */
29 message.unlucky.number = 42;
67 printf("Your lucky number was %d!\n", message.lucky_number);
68 printf("Your unlucky number was %u!\n", message.unlucky.number);
  /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/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
ScopedPrinter.cpp 16 std::string number; local
17 llvm::raw_string_ostream stream(number);
  /external/v8/src/compiler/arm/
unwinding-info-writer-arm.h 27 void SetNumberOfInstructionBlocks(int number) {
28 if (enabled()) block_initial_states_.resize(number);
  /external/v8/src/compiler/arm64/
unwinding-info-writer-arm64.h 27 void SetNumberOfInstructionBlocks(int number) {
28 if (enabled()) block_initial_states_.resize(number);
  /bionic/libc/kernel/uapi/linux/
dlm_plock.h 42 __u64 number; member in struct:dlm_plock_info
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_u32.h 29 __u32 number; member in struct:xt_u32_location_element
  /external/icu/android_icu4j/src/main/java/android/icu/impl/number/
AffixPatternProvider.java 4 package android.icu.impl.number;
43 * True if the pattern has a number placeholder like "0" or "#,##0.00"; false if the pattern does not
45 * number instead of rendering the number.
Modifier.java 4 package android.icu.impl.number;
26 * The left index of the string within the builder. Equal to 0 when only one number is
30 * number is being formatted.
31 * @return The number of characters (UTF-16 code units) that were added to the string builder.
39 * @return The number of characters (UTF-16 code units) in the prefix.
44 * Returns the number of code points in the modifier, prefix plus suffix.
  /external/icu/android_icu4j/src/main/java/android/icu/number/
FormattedNumberRange.java 4 package android.icu.number;
12 import android.icu.impl.number.DecimalQuantity;
13 import android.icu.impl.number.NumberStringBuilder;
14 import android.icu.number.NumberRangeFormatter.RangeIdentityResult;
18 * The result of a number range formatting operation. This class allows the result to be exported in several data types,
41 * Creates a String representation of the the formatted number range.
43 * @return a String containing the localized number range.
53 * Append the formatted number range to an Appendable, such as a StringBuilder. This may be slightly more efficient
61 * The Appendable to which to append the formatted number range string.
110 * Export the formatted number range as an AttributedCharacterIterator. This allows you to determine whic
    [all...]
NumberPropertyMapper.java 4 package android.icu.number;
9 import android.icu.impl.number.AffixPatternProvider;
10 import android.icu.impl.number.CurrencyPluralInfoAffixProvider;
11 import android.icu.impl.number.CustomSymbolCurrency;
12 import android.icu.impl.number.DecimalFormatProperties;
13 import android.icu.impl.number.Grouper;
14 import android.icu.impl.number.MacroProps;
15 import android.icu.impl.number.Padder;
16 import android.icu.impl.number.PatternStringParser;
17 import android.icu.impl.number.PropertiesAffixPatternProvider
    [all...]
  /external/iptables/include/linux/netfilter/
xt_u32.h 14 __u32 number; member in struct:xt_u32_location_element
24 * Any way to allow for an arbitrary number of elements?
  /external/kernel-headers/original/uapi/linux/
dlm_plock.h 39 __u64 number; member in struct:dlm_plock_info

Completed in 2505 milliseconds

1 2 3 4 5 6 7 8 91011>>