HomeSort by relevance Sort by last modified time
    Searched full:measure (Results 1 - 25 of 455) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/third_party/icu/source/i18n/
measure.cpp 15 #include "unicode/measure.h"
20 Measure::Measure() {}
22 Measure::Measure(const Formattable& _number, MeasureUnit* adoptedUnit,
31 Measure::Measure(const Measure& other) :
36 Measure& Measure::operator=(const Measure& other)
    [all...]
curramt.cpp 22 Measure(amount, new CurrencyUnit(isoCode, ec), ec) {
27 Measure(Formattable(amount), new CurrencyUnit(isoCode, ec), ec) {
31 Measure(other) {
35 Measure::operator=(other);
tmutamt.cpp 20 : Measure(number, TimeUnit::createInstance(timeUnitField, status), status) {
27 : Measure(Formattable(amount),
34 : Measure(other)
41 Measure::operator=(other);
48 return Measure::operator==(other);
tmunit.cpp 23 * But the constraint is TimeUnit is a data member of Measure.
24 * But Measure (which is an existing API) does not expect it's "unit" member
27 * Also, Measure can clone and destruct the "unit" pointer.
28 * In order to preserve the old behavior and let Measure handle singleton "unit",
29 * 1. a flag need to be added in Measure;
  /external/icu4c/i18n/
measure.cpp 15 #include "unicode/measure.h"
20 Measure::Measure() {}
22 Measure::Measure(const Formattable& _number, MeasureUnit* adoptedUnit,
31 Measure::Measure(const Measure& other) :
36 Measure& Measure::operator=(const Measure& other)
    [all...]
curramt.cpp 22 Measure(amount, new CurrencyUnit(isoCode, ec), ec) {
27 Measure(Formattable(amount), new CurrencyUnit(isoCode, ec), ec) {
31 Measure(other) {
35 Measure::operator=(other);
tmutamt.cpp 20 : Measure(number, TimeUnit::createInstance(timeUnitField, status), status) {
27 : Measure(Formattable(amount),
34 : Measure(other)
41 Measure::operator=(other);
48 return Measure::operator==(other);
tmunit.cpp 23 * But the constraint is TimeUnit is a data member of Measure.
24 * But Measure (which is an existing API) does not expect it's "unit" member
27 * Also, Measure can clone and destruct the "unit" pointer.
28 * In order to preserve the old behavior and let Measure handle singleton "unit",
29 * 1. a flag need to be added in Measure;
  /external/chromium/third_party/icu/public/i18n/unicode/
measure.h 31 * For example, a length measure consists of a number and a length
35 * <p>Measure objects are parsed and formatted by subclasses of
38 * <p>Measure objects are immutable.
45 class U_I18N_API Measure: public UObject {
57 Measure(const Formattable& number, MeasureUnit* adoptedUnit,
64 Measure(const Measure& other);
70 Measure& operator=(const Measure& other);
83 virtual ~Measure();
    [all...]
measfmt.h 22 * \brief C++ API: Formatter for measure objects.
29 * A formatter for measure objects. This is an abstract base class.
31 * <p>To format or parse a measure object, first create a formatter
measunit.h 29 * coupled with a numeric amount to produce a Measure.
68 // NOTE: There is no measunit.cpp. For implementation, see measure.cpp. [alan]
  /external/icu4c/i18n/unicode/
measure.h 31 * For example, a length measure consists of a number and a length
35 * <p>Measure objects are parsed and formatted by subclasses of
38 * <p>Measure objects are immutable.
45 class U_I18N_API Measure: public UObject {
57 Measure(const Formattable& number, MeasureUnit* adoptedUnit,
64 Measure(const Measure& other);
70 Measure& operator=(const Measure& other);
83 virtual ~Measure();
    [all...]
measfmt.h 22 * \brief C++ API: Formatter for measure objects.
29 * A formatter for measure objects. This is an abstract base class.
31 * <p>To format or parse a measure object, first create a formatter
measunit.h 29 * coupled with a numeric amount to produce a Measure.
68 // NOTE: There is no measunit.cpp. For implementation, see measure.cpp. [alan]
  /packages/experimental/procstatlog/
README 4 on an ongoing basis, to measure CPU and other activity as a function
  /frameworks/base/docs/html/guide/topics/ui/
how-android-draws.jd 11 <p>Drawing begins with the root node of the layout. It is requested to measure and
31 Drawing the layout is a two pass process: a measure pass and a layout pass. The measuring
32 pass is implemented in <code>{@link android.view.View#measure(int, int)}</code> and is a top-down traversal
34 during the recursion. At the end of the measure pass, every View has stored
38 using the sizes computed in the measure pass.
42 When a View's <code>measure()</code> method returns, its <code>{@link android.view.View#getMeasuredWidth()}</code> and
46 that at the end of the measure pass, all parents accept all of their
47 children's measurements. A parent View may call <code>measure()</code> more than once on
48 its children. For example, the parent may measure each child once with
50 <code>measure()</code> on them again with actual numbers if the sum of all the children'
    [all...]
  /packages/apps/Camera/src/com/android/camera/ui/
LinearLayout.java 30 view.measure(MeasureSpec.UNSPECIFIED, MeasureSpec.UNSPECIFIED);
36 .measure(widthSpec, heightSpec);
47 view.measure(MeasureSpec.UNSPECIFIED, MeasureSpec.UNSPECIFIED);
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathMeasureTest.java 126 PathMeasure measure = new PathMeasure(circle, false); local
127 assertTrue(measure.isClosed());
128 measure.setPath(circle, true);
129 assertTrue(measure.isClosed());
134 measure.setPath(line, false);
135 assertFalse(measure.isClosed());
136 measure.setPath(line, true);
137 assertTrue(measure.isClosed());
  /frameworks/base/graphics/java/android/graphics/
PathMeasure.java 22 * Create an empty PathMeasure object. To uses this to measure the length
26 * Note that once a path is associated with the measure object, it is
27 * undefined if the path is subsequently modified and the the measure object
40 * Note that once a path is associated with the measure object, it is
41 * undefined if the path is subsequently modified and the the measure object
68 * associated with this measure object.
83 * @return false if there was no path associated with this measure object
Paint.java 896 * and values that measure distances going up will be negative. This class
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
WeightedLinearLayout.java 64 boolean measure = false;
74 measure = true;
80 if (measure) {
  /external/skia/include/core/
SkPathMeasure.h 27 for the lifetime of the measure object, or until setPath() is called with
28 a different path (or null), since the measure object keeps a pointer to the
35 for the lifetime of the measure object, or until setPath() is called with
36 a different path (or null), since the measure object keeps a pointer to the
  /frameworks/base/core/java/android/text/
AndroidCharacter.java 49 * @param input the character to measure
64 * @param src character array of input to measure
65 * @param start first character in array to measure
66 * @param count maximum number of characters to measure
  /frameworks/base/core/tests/coretests/src/android/widget/
ListViewTest.java 51 listView.measure(measureSpec, measureSpec);
58 listView.measure(measureSpec, measureSpec);
83 listView.measure(measureSpec, measureSpec);
89 listView.measure(measureSpec, measureSpec);
  /external/chromium/net/tools/flip_server/
loadtime_measurement.h 18 // Class to handle loadtime measure related urls, which all start with testing
22 // measure and start with downloading the html file from browser.
34 // This is the entry function for all the loadtime measure related urls

Completed in 207 milliseconds

1 2 3 4 5 6 7 8 91011>>