OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:processQuantity
(Results
1 - 25
of
33
) sorted by null
1
2
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/
MicroPropsGenerator.java
8
* for the quantity itself. The {@link #
processQuantity
} method performs the final step in the number
21
* calls {@link #
processQuantity
} on its "parent", then does its work, and then returns the result.
35
* public MicroProps
processQuantity
(DecimalQuantity quantity) {
36
* MicroProps micros = this.parent.
processQuantity
(quantity);
56
public MicroProps
processQuantity
(DecimalQuantity quantity);
MultiplierFormatHandler.java
22
public MicroProps
processQuantity
(DecimalQuantity quantity) {
23
MicroProps micros = parent.
processQuantity
(quantity);
MicroProps.java
45
public MicroProps
processQuantity
(DecimalQuantity quantity) {
MutablePatternModifier.java
236
public MicroProps
processQuantity
(DecimalQuantity quantity) {
237
MicroProps micros = parent.
processQuantity
(quantity);
273
public MicroProps
processQuantity
(DecimalQuantity fq) {
274
MicroProps micros = parent.
processQuantity
(fq);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
MicroPropsGenerator.java
7
* for the quantity itself. The {@link #
processQuantity
} method performs the final step in the number
20
* calls {@link #
processQuantity
} on its "parent", then does its work, and then returns the result.
34
* public MicroProps
processQuantity
(DecimalQuantity quantity) {
35
* MicroProps micros = this.parent.
processQuantity
(quantity);
54
public MicroProps
processQuantity
(DecimalQuantity quantity);
MultiplierFormatHandler.java
20
public MicroProps
processQuantity
(DecimalQuantity quantity) {
21
MicroProps micros = parent.
processQuantity
(quantity);
MicroProps.java
41
public MicroProps
processQuantity
(DecimalQuantity quantity) {
MutablePatternModifier.java
231
public MicroProps
processQuantity
(DecimalQuantity quantity) {
232
MicroProps micros = parent.
processQuantity
(quantity);
268
public MicroProps
processQuantity
(DecimalQuantity fq) {
269
MicroProps micros = parent.
processQuantity
(fq);
/external/icu/icu4c/source/i18n/
number_microprops.h
58
void
processQuantity
(DecimalQuantity&, MicroProps& micros, UErrorCode& status) const U_OVERRIDE {
number_multiplier.h
27
void
processQuantity
(DecimalQuantity& quantity, MicroProps& micros,
number_patternmodifier.h
43
void
processQuantity
(DecimalQuantity&, MicroProps& micros, UErrorCode& status) const U_OVERRIDE;
178
void
processQuantity
(DecimalQuantity &, MicroProps µs, UErrorCode &status) const U_OVERRIDE;
number_compact.h
67
processQuantity
(DecimalQuantity &quantity, MicroProps µs, UErrorCode &status) const U_OVERRIDE;
number_longnames.h
29
processQuantity
(DecimalQuantity &quantity, MicroProps µs, UErrorCode &status) const U_OVERRIDE;
number_scientific.h
50
processQuantity
(DecimalQuantity &quantity, MicroProps µs, UErrorCode &status) const U_OVERRIDE;
number_multiplier.cpp
150
void MultiplierFormatHandler::
processQuantity
(DecimalQuantity& quantity, MicroProps& micros,
152
fParent->
processQuantity
(quantity, micros, status);
number_scientific.cpp
122
void ScientificHandler::
processQuantity
(DecimalQuantity &quantity, MicroProps µs,
124
fParent->
processQuantity
(quantity, micros, status);
number_patternmodifier.cpp
126
void ImmutablePatternModifier::
processQuantity
(DecimalQuantity& quantity, MicroProps& micros,
128
parent->
processQuantity
(quantity, micros, status);
159
void MutablePatternModifier::
processQuantity
(DecimalQuantity& fq, MicroProps& micros,
161
fParent->
processQuantity
(fq, micros, status);
number_types.h
236
* itself. The {@link #
processQuantity
} method performs the final step in the number processing pipeline: it uses the
246
* quantity-dependent. Each element in the linked list calls {@link #
processQuantity
} on its "parent", then does its
265
virtual void
processQuantity
(DecimalQuantity& quantity, MicroProps& micros,
number_compact.cpp
270
void CompactHandler::
processQuantity
(DecimalQuantity &quantity, MicroProps µs,
272
parent->
processQuantity
(quantity, micros, status);
/external/icu/android_icu4j/src/main/java/android/icu/number/
CompactNotation.java
121
public MicroProps
processQuantity
(DecimalQuantity quantity) {
122
MicroProps micros = parent.
processQuantity
(quantity);
ScientificNotation.java
158
public MicroProps
processQuantity
(DecimalQuantity quantity) {
159
MicroProps micros = parent.
processQuantity
(quantity);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
CompactNotation.java
120
public MicroProps
processQuantity
(DecimalQuantity quantity) {
121
MicroProps micros = parent.
processQuantity
(quantity);
ScientificNotation.java
160
public MicroProps
processQuantity
(DecimalQuantity quantity) {
161
MicroProps micros = parent.
processQuantity
(quantity);
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/number/
MutablePatternModifierTest.java
90
mod.
processQuantity
(fq);
102
mod.
processQuantity
(fq);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
MutablePatternModifierTest.java
87
mod.
processQuantity
(fq);
99
mod.
processQuantity
(fq);
Completed in 133 milliseconds
1
2