HomeSort by relevance Sort by last modified time
    Searched refs:value (Results 51 - 75 of 36195) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
LayoutMetric.java 26 private float value; field in class:LayoutMetric
29 public LayoutMetric(float value, LayoutType layoutType) {
30 validatePair(value, layoutType);
31 set(value, layoutType);
33 //setValue(value);
39 * @param value
42 protected abstract void validatePair(float value, LayoutType layoutType);
44 public void set(float value, LayoutType layoutType) {
45 validatePair(value, layoutType);
46 this.value = value;
    [all...]
  /external/guice/core/src/com/google/inject/binder/
ConstantBindingBuilder.java 20 * Binds to a constant value.
25 * Binds constant to the given value.
27 void to(String value);
30 * Binds constant to the given value.
32 void to(int value);
35 * Binds constant to the given value.
37 void to(long value);
40 * Binds constant to the given value.
42 void to(boolean value);
45 * Binds constant to the given value
    [all...]
  /external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/atomic/
AtomicInteger.java 27 private int value; field in class:AtomicInteger
30 value = initialValue;
37 return value;
41 value = newValue;
49 int current = value;
50 value = newValue;
55 if (value == expect) {
56 value = update;
64 return value++;
68 return value--
    [all...]
AtomicLong.java 27 private long value; field in class:AtomicLong
30 this.value = initialValue;
37 return value;
41 value = newValue;
49 long current = value;
50 value = newValue;
55 if (value == expect) {
56 value = update;
64 return value++;
68 return value--
    [all...]
  /external/libmojo/ui/gfx/geometry/
safe_integer_conversions.h 16 inline int ToFlooredInt(float value) {
17 return base::saturated_cast<int>(std::floor(value));
20 inline int ToCeiledInt(float value) {
21 return base::saturated_cast<int>(std::ceil(value));
24 inline int ToFlooredInt(double value) {
25 return base::saturated_cast<int>(std::floor(value));
28 inline int ToCeiledInt(double value) {
29 return base::saturated_cast<int>(std::ceil(value));
32 inline int ToRoundedInt(float value) {
34 if (value >= 0.0f
    [all...]
  /system/core/libutils/include/utils/
BitSet.h 33 uint32_t value; member in struct:android::BitSet32
35 inline BitSet32() : value(0UL) { }
36 explicit inline BitSet32(uint32_t value) : value(value) { }
38 // Gets the value associated with a particular bit index.
42 inline void clear() { clear(value); }
44 static inline void clear(uint32_t& value) { value = 0UL; }
47 inline uint32_t count() const { return count(value); }
175 uint64_t value; member in struct:android::BitSet64
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
template_util_unittest.cc 36 // value is assigned true or false sequentially.
56 EXPECT_TRUE(true_type::value);
57 EXPECT_FALSE(false_type::value);
60 EXPECT_EQ(1, one_type::value);
65 EXPECT_TRUE(if_true::value);
68 EXPECT_FALSE(if_false::value);
73 bool value = false; local
76 value = type_equals_<int, int>::value;
77 EXPECT_TRUE(value);
91 bool value = false; local
    [all...]
  /external/clang/test/Modules/Inputs/merge-anon-in-template/
c.h 2 enum { value = 0 }; enumerator in enum:is_floating::__anon16379
6 bool n20 = is_floating<int>::value;
  /external/clang/test/SemaTemplate/
ackermann.cpp 7 // value = M ? (N ? Ackermann<M-1, Ackermann<M, N-1> >::value
8 // : Ackermann<M-1, 1>::value)
16 value = Ackermann<M-1, Ackermann<M, N-1>::value >::value enumerator in enum:Ackermann::__anon16947
22 value = Ackermann<M-1, 1>::value enumerator in enum:Ackermann::__anon16948
28 value = N + 1 enumerator in enum:Ackermann::__anon16949
34 value = enumerator in enum:Ackermann::__anon16950
    [all...]
  /external/hamcrest/hamcrest-core/src/test/java/org/hamcrest/core/
SampleBaseClass.java 4 String value; field in class:SampleBaseClass
6 public SampleBaseClass(String value) {
7 this.value = value;
12 return value;
17 return obj instanceof SampleBaseClass && value.equals(((SampleBaseClass) obj).value);
22 return value.hashCode();
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/
HeaderProperty.java 5 * HeaderProperty is a key - value pojo for storing http header properties.
9 private String value; field in class:HeaderProperty
11 public HeaderProperty(String key, String value) {
13 this.value = value;
25 return value;
28 public void setValue(String value) {
29 this.value = value;
  /external/v8/src/arm64/
utils-arm64.cc 16 int CountLeadingZeros(uint64_t value, int width) {
21 while ((count < width) && ((bit_test & value) == 0)) {
29 int CountLeadingSignBits(int64_t value, int width) {
32 if (value >= 0) {
33 return CountLeadingZeros(value, width) - 1;
35 return CountLeadingZeros(~value, width) - 1;
40 int CountTrailingZeros(uint64_t value, int width) {
44 while ((count < width) && (((value >> count) & 1) == 0)) {
51 int CountSetBits(uint64_t value, int width) {
57 value &= (0xffffffffffffffffUL >> (64-width))
    [all...]
  /external/v8/src/base/
bits.h 29 // CountPopulation32(value) returns the number of bits set in |value|.
30 inline unsigned CountPopulation32(uint32_t value) {
32 return __builtin_popcount(value);
34 value = ((value >> 1) & 0x55555555) + (value & 0x55555555);
35 value = ((value >> 2) & 0x33333333) + (value & 0x33333333)
    [all...]
  /external/desugar/java/com/google/devtools/common/options/
OptionMetadataTag.java 60 private final int value; field in class:OptionMetadataTag
62 OptionMetadataTag(int value) {
63 this.value = value;
67 return value;
  /external/proguard/src/proguard/gui/splash/
ConstantColor.java 32 private final Color value; field in class:ConstantColor
37 * @param value the constant value.
39 public ConstantColor(Color value)
41 this.value = value;
49 return value;
ConstantFont.java 32 private final Font value; field in class:ConstantFont
34 public ConstantFont(Font value)
36 this.value = value;
44 return value;
ConstantString.java 30 private final String value; field in class:ConstantString
35 * @param value the constant value.
37 public ConstantString(String value)
39 this.value = value;
47 return value;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
AnglesVarianceEvaluator.java 20 public static float evaluate(float value, int type) {
22 if (value > 0.20) evaluation++;
23 if (value > 0.40) evaluation++;
24 if (value > 0.80) evaluation++;
25 if (value > 1.50) evaluation++;
SpeedEvaluator.java 20 public static float evaluate(float value) {
22 if (value < 4.0) evaluation++;
23 if (value < 2.2) evaluation++;
24 if (value > 35.0) evaluation++;
25 if (value > 50.0) evaluation++;
SpeedVarianceEvaluator.java 20 public static float evaluate(float value) {
22 if (value > 0.06) evaluation++;
23 if (value > 0.15) evaluation++;
24 if (value > 0.3) evaluation++;
25 if (value > 0.6) evaluation++;
  /frameworks/base/services/core/java/com/android/server/broadcastradio/hal2/
Mutable.java 23 * @param <E> type of boxed value.
27 * A mutable value.
29 public E value; field in class:Mutable
32 * Initialize value with null pointer.
35 value = null;
39 * Initialize value with specific value.
41 * @param value initial value.
43 public Mutable(E value) {
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
GeneralUtil.java 33 public E value; field in class:GeneralUtil.Mutable
36 value = null;
39 public Mutable(E value) {
40 this.value = value;
  /packages/apps/Dialer/java/com/android/incallui/answer/impl/classifier/
SpeedEvaluator.java 20 public static float evaluate(float value) {
22 if (value < 4.0) {
25 if (value < 2.2) {
28 if (value > 35.0) {
31 if (value > 50.0) {
SpeedVarianceEvaluator.java 20 public static float evaluate(float value) {
22 if (value > 0.06) {
25 if (value > 0.15) {
28 if (value > 0.3) {
31 if (value > 0.6) {
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue38/
Bean.java 19 int value; field in class:Bean
24 public Bean(int value) {
25 this.value = value;
35 return value;
40 return "Bean " + String.valueOf(value);
44 return value;
47 public void setValue(int value) {
48 this.value = value;
    [all...]

Completed in 759 milliseconds

1 23 4 5 6 7 8 91011>>