HomeSort by relevance Sort by last modified time
    Searched full:getvalue (Results 126 - 150 of 7083) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/value/
BaseCharEncodedValue.java 46 return getValue();
52 return getValue() == ((CharEncodedValue)o).getValue();
61 return Chars.compare(getValue(), ((CharEncodedValue)o).getValue());
BaseDoubleEncodedValue.java 45 long v = Double.doubleToRawLongBits(getValue());
52 return Double.doubleToRawLongBits(getValue()) ==
53 Double.doubleToRawLongBits(((DoubleEncodedValue)o).getValue());
62 return Double.compare(getValue(), ((DoubleEncodedValue)o).getValue());
BaseEnumEncodedValue.java 45 return getValue().hashCode();
51 return getValue().equals(((EnumEncodedValue)o).getValue());
60 return getValue().compareTo(((EnumEncodedValue)o).getValue());
BaseFieldEncodedValue.java 45 return getValue().hashCode();
51 return getValue().equals(((FieldEncodedValue)o).getValue());
60 return getValue().compareTo(((FieldEncodedValue)o).getValue());
BaseFloatEncodedValue.java 45 return Float.floatToRawIntBits(getValue());
51 return Float.floatToRawIntBits(getValue()) == Float.floatToRawIntBits(((FloatEncodedValue)o).getValue());
60 return Float.compare(getValue(), ((FloatEncodedValue)o).getValue());
BaseIntEncodedValue.java 45 return getValue();
51 return getValue() == ((IntEncodedValue)o).getValue();
60 return Ints.compare(getValue(), ((IntEncodedValue)o).getValue());
BaseLongEncodedValue.java 46 long value = getValue();
54 return getValue() == ((LongEncodedValue)o).getValue();
63 return Longs.compare(getValue(), ((LongEncodedValue)o).getValue());
BaseMethodEncodedValue.java 45 return getValue().hashCode();
51 return getValue().equals(((MethodEncodedValue)o).getValue());
60 return getValue().compareTo(((MethodEncodedValue)o).getValue());
BaseShortEncodedValue.java 46 return getValue();
52 return getValue() == ((ShortEncodedValue)o).getValue();
61 return Shorts.compare(getValue(), ((ShortEncodedValue)o).getValue());
BaseStringEncodedValue.java 45 return getValue().hashCode();
51 return getValue().equals(((StringEncodedValue)o).getValue());
60 return getValue().compareTo(((StringEncodedValue)o).getValue());
BaseTypeEncodedValue.java 45 return getValue().hashCode();
51 return getValue().equals(((TypeEncodedValue)o).getValue());
60 return getValue().compareTo(((TypeEncodedValue)o).getValue());
  /system/update_engine/update_manager/
fake_variable.h 39 // returned by GetValue(), the pointer is released and has to be set again.
40 // A value of null means that the GetValue() call will fail and return
55 // call to GetValue() without reset() will return null and set the error
57 const T* GetValue(base::TimeDelta /* timeout */,
66 // The pointer returned by GetValue().
evaluation_context_unittest.cc 64 ec->GetValue(var);
145 EXPECT_EQ(nullptr, eval_ctx_->GetValue(&fake_int_var_));
149 EXPECT_EQ(nullptr, eval_ctx_->GetValue(static_cast<Variable<int>*>(nullptr)));
156 p_fake_int = eval_ctx_->GetValue(&fake_int_var_);
165 p_fake_int = eval_ctx_->GetValue(&fake_int_var_);
171 p_fake_int = eval_ctx_->GetValue(&fake_int_var_);
177 const int* p_fake_int = eval_ctx_->GetValue(&fake_int_var_);
183 p_fake_int = eval_ctx_->GetValue(&fake_int_var_);
195 p_fake_int = eval_ctx_->GetValue(&fake_int_var_);
196 p_fake_string = eval_ctx_->GetValue(&fake_poll_var_)
    [all...]
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
SoundTest.java 84 soundId = sound.play(volume.getValue());
85 sound.setPitch(soundId, pitch.getValue());
86 sound.setPan(soundId, pan.getValue(), volume.getValue());
97 sound.setPitch(soundId, pitch.getValue());
98 pitchValue.setText("" + pitch.getValue());
103 sound.setVolume(soundId, volume.getValue());
104 volumeValue.setText("" + volume.getValue());
109 sound.setPan(soundId, pan.getValue(), volume.getValue());
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Challenge.java 109 return (String) authParams.getValue(DOMAIN);
117 return (String) authParams.getValue(URI);
125 return (String) authParams.getValue(OPAQUE);
133 return (String) authParams.getValue(QOP);
141 return (String) authParams.getValue(ALGORITHM);
149 return (String) authParams.getValue(STALE);
157 return (String) authParams.getValue(SIGNATURE);
165 return (String) authParams.getValue(SIGNED_BY);
173 return (String) authParams.getValue(RESPONSE);
181 return (String) authParams.getValue(REALM)
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
LazyField.java 66 public MessageLite getValue() {
67 return getValue(defaultInstance);
72 return getValue().hashCode();
77 return getValue().equals(obj);
82 return getValue().toString();
104 public Object getValue() {
105 LazyField field = entry.getValue();
109 return field.getValue();
113 return entry.getValue();
123 return entry.getValue().setValue((MessageLite) value)
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/connectivity/
MetricsLoggerServiceTest.java 73 assertEquals(0, r.getValue());
82 assertEquals(N_EVENTS, r.getValue());
85 assertEquals(N_EVENTS, r.getValue());
96 assertEquals(N_EVENTS, r.getValue());
99 assertEquals(N_EVENTS, r.getValue());
108 assertEquals(3, r.getValue());
114 assertEquals(N_EVENTS, r.getValue());
117 assertEquals(N_EVENTS, r.getValue());
125 assertEquals(3, r1.getValue());
131 assertEquals(N_EVENTS, r2.getValue());
    [all...]
  /external/javassist/src/main/javassist/bytecode/annotation/
EnumMemberValue.java 58 Object getValue(ClassLoader cl, ClassPool cp, Method m)
62 return getType(cl).getField(getValue()).get(null);
65 throw new ClassNotFoundException(getType() + "." + getValue());
68 throw new ClassNotFoundException(getType() + "." + getValue());
97 public String getValue() {
109 return getType() + "." + getValue();
116 writer.enumConstValue(cp.getUtf8Info(typeIndex), getValue());
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidChecksumTest.java 45 assertEquals(adler.getValue(), expected);
52 assertEquals(adler.getValue(), expected);
60 assertEquals(crc.getValue(), expected);
67 assertEquals(crc.getValue(), expected);
86 long arrayChecksum = adler.getValue();
92 " actual: " + adler.getValue(), arrayChecksum, adler.getValue());
  /art/runtime/mirror/
string.cc 44 const uint16_t* chars = GetValue();
68 const int32_t hash_code = ComputeUtf16Hash(GetValue(), GetLength());
74 return CountUtf8Bytes(GetValue(), GetLength());
79 GetValue()[index] = c;
91 uint16_t* new_value = new_string->GetValue();
92 memcpy(new_value, string->GetValue(), length * sizeof(uint16_t));
93 memcpy(new_value + length, string2->GetValue(), length2 * sizeof(uint16_t));
105 uint16_t* array = string->GetValue();
129 uint16_t* utf16_data_out = string->GetValue();
222 const uint16_t* chars = GetValue();
    [all...]
  /external/webrtc/webrtc/base/
win32regkey_unittest.cc 198 EXPECT_EQ(r_key.GetValue(kValNameInt, &int_val),
210 EXPECT_SUCCEEDED(r_key.GetValue(kValNameInt, &int_val));
217 EXPECT_SUCCEEDED(r_key.GetValue(kValNameInt, &int_val));
233 EXPECT_SUCCEEDED(r_key.GetValue(kValNameInt64, &int64_val));
249 EXPECT_SUCCEEDED(r_key.GetValue(kValNameStr, &str_val));
257 EXPECT_SUCCEEDED(r_key.GetValue(kValNameStr, &str_val));
276 EXPECT_SUCCEEDED(r_key.GetValue(kValNameBinary, &binary_val, &uint8_count));
286 EXPECT_SUCCEEDED(r_key.GetValue(kValNameBinary, &binary_val, &uint8_count));
381 EXPECT_EQ(RegKey::GetValue(kFullRkey1, kValNameInt, &int_val),
391 EXPECT_EQ(RegKey::GetValue(kFullRkey1, L"bogus", &int_val)
    [all...]
  /development/tools/apkcheck/src/com/android/apkcheck/
ApiDescrHandler.java 74 attributes.getValue("name"));
78 attributes.getValue("name"),
79 attributes.getValue("extends"),
80 attributes.getValue("static"));
83 mCurrentClass.addInterface(attributes.getValue("name"));
86 mCurrentMethod = new MethodInfo(attributes.getValue("name"),
87 attributes.getValue("return"));
121 FieldInfo fInfo = new FieldInfo(attributes.getValue("name"),
122 attributes.getValue("type"));
126 mCurrentMethod.addParameter(attributes.getValue("type"))
    [all...]
  /external/deqp/framework/randomshaders/
rsgExecutionContext.cpp 35 ExecValueAccess ExecMaskStorage::getValue (void)
40 ExecConstValueAccess ExecMaskStorage::getValue (void) const
51 pushExecutionMask(initVal.getValue());
61 ExecValueAccess ExecutionContext::getValue (const Variable* variable)
71 return storage->getValue(variable->getType());
78 int samplerNdx = samplerVal->getValue(sampler->getType()).asInt(0);
87 int samplerNdx = samplerVal->getValue(sampler->getType()).asInt(0);
95 ExecValueAccess newValue = tmp.getValue();
107 tmp.getValue() = value.value();
118 return m_execMaskStack[m_execMaskStack.size()-1].getValue();
    [all...]
  /external/deqp/modules/glshared/
glsVertexArrayTests.hpp 246 inline Type getValue (void) const { return m_value; }
248 inline WrappedType<Type> operator+ (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value + other.getValue())); }
249 inline WrappedType<Type> operator* (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value * other.getValue())); }
250 inline WrappedType<Type> operator/ (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value / other.getValue())); }
251 inline WrappedType<Type> operator% (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value % other.getValue())); }
252 inline WrappedType<Type> operator- (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value - other.getValue())); }
254 inline WrappedType<Type>& operator+= (const WrappedType<Type>& other) { m_value += other.getValue(); return *this; }
255 inline WrappedType<Type>& operator*= (const WrappedType<Type>& other) { m_value *= other.getValue(); return *this; }
256 inline WrappedType<Type>& operator/= (const WrappedType<Type>& other) { m_value /= other.getValue(); return *this; }
257 inline WrappedType<Type>& operator-= (const WrappedType<Type>& other) { m_value -= other.getValue(); return *this;
    [all...]
  /external/guava/guava/src/com/google/common/collect/
DenseImmutableTable.java 72 values[rowIndex][columnIndex] = cell.getValue();
96 // True if getValue never returns null.
105 @Nullable abstract V getValue(int keyIndex);
120 return (keyIndex == null) ? null : getValue(keyIndex);
139 V value = getValue(index);
166 V getValue(int keyIndex) {
190 V getValue(int keyIndex) {
211 Map<C, V> getValue(int keyIndex) {
232 Map<R, V> getValue(int keyIndex) {
275 V getValue(int index)
    [all...]

Completed in 2233 milliseconds

1 2 3 4 56 7 8 91011>>