HomeSort by relevance Sort by last modified time
    Searched defs:getValue (Results 451 - 475 of 4901) sorted by null

<<11121314151617181920>>

  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
Optional.h 121 const T& getValue() const LLVM_LVALUE_FUNCTION { assert(hasVal); return *getPointer(); }
122 T& getValue() LLVM_LVALUE_FUNCTION { assert(hasVal); return *getPointer(); }
133 return hasValue() ? getValue() : std::forward<U>(value);
137 T&& getValue() && { assert(hasVal); return std::move(*getPointer()); }
142 return hasValue() ? std::move(getValue()) : std::forward<U>(value);
Statistic.h 47 unsigned getValue() const { return Value.load(std::memory_order_relaxed); }
62 operator unsigned() const { return getValue(); }
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPSerializerRDF.java 427 appendNodeValue(prop.getValue(), true);
531 appendNodeValue(qualifier.getValue(), true);
596 appendNodeValue(node.getValue(), true);
601 else if (node.getValue() == null || node.getValue().length() == 0)
610 appendNodeValue (node.getValue(), false);
836 String prefix = node.getValue().substring(0, node.getValue().length() - 1);
991 appendNodeValue(qualifier.getValue(), true);
1037 appendNodeValue(node.getValue(), true)
    [all...]
  /frameworks/base/core/java/android/text/
PackedObjectVector.java 46 getValue(int row, int column)
  /frameworks/base/core/java/com/android/internal/preference/
YesNoPreference.java 79 public boolean getValue() {
108 myState.wasPositiveResult = getValue();
  /frameworks/base/core/tests/coretests/src/android/text/
PackedIntVectorTest.java 70 assertEquals(0, p.getValue(at, j));
72 assertEquals(p.getValue(at, j), i + j);
83 assertEquals(p.getValue(i, j), i * j);
101 assertEquals(p.getValue(i, j), expect);
120 assertEquals(p.getValue(i, j), expect);
133 assertEquals(p.getValue(i, j), i * j);
154 assertEquals(p.getValue(i, j), i * j);
160 assertEquals(p.getValue(i, j), (i + height - p.size()) * j);
  /frameworks/base/libs/hwui/
PropertyValuesAnimatorSet.cpp 62 float PropertyValuesAnimatorSet::getValue(RenderNode* target) const {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
SecureSetting.java 47 public int getValue() {
60 mObservedValue = getValue();
71 final int value = getValue();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
ColorInversionTile.java 73 handleRefreshState(mSetting.getValue());
93 final int value = arg instanceof Integer ? (Integer) arg : mSetting.getValue();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
TunerService.java 42 public abstract String getValue(String setting);
43 public abstract int getValue(String setting, int def);
44 public abstract String getValue(String setting, String def);
  /frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/
TestOnlyInsecureCertificateHelper.java 102 filteredKeys.put(entry.getKey(), entry.getValue());
  /frameworks/compile/mclinker/include/mcld/Target/
PLT.h 33 const unsigned char* getValue() const { return m_pValue; }
  /frameworks/ex/common/java/com/android/common/content/
ProjectionMap.java 51 mMap.putColumn(entry.getKey(), entry.getValue());
  /frameworks/opt/chips/src/com/android/ex/chips/recipientchip/
InvisibleRecipientChip.java 56 public CharSequence getValue() {
57 return mDelegate.getValue();
SimpleRecipientChip.java 68 public CharSequence getValue() {
VisibleRecipientChip.java 54 public CharSequence getValue() {
55 return mDelegate.getValue();
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
IMSIParameterTest.java 57 assertEquals(entry.getValue(), IMSIParameter.build(entry.getKey()));
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
UiccPkcs15.java 267 String ruleString = tlvRule.getValue();
282 tlvAid.parse(tlvTarget.getValue(), true);
284 if (CARRIER_RULE_AID.equals(tlvAid.getValue())) {
286 tlvPath.parse(tlvAsnPath.getValue(), true);
287 ret = tlvPath.getValue();
307 tlvCert.parse(tlvCondition.getValue(), true);
308 if (!tlvCert.getValue().isEmpty()) {
309 mRules.add(tlvCert.getValue());
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/test/
FunnyNamedDaoTest.java 59 assertThat(loaded.getValue(), is("b"));
  /hardware/intel/common/libmix/videoencoder/
VideoEncoderUtils.h 39 intptr_t getValue() {return mValue;}
  /hardware/libhardware/modules/input/evdev/
InputHost.cpp 64 const char* InputProperty::getValue() const {
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
AttrImpl.java 85 return getValue();
101 public String getValue() {
  /libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
SAXParserImpl.java 52 reader.setFeature(entry.getKey(), entry.getValue());
  /libcore/ojluni/src/main/java/java/time/
DayOfWeek.java 98 * Use {@code getValue()} instead.</b>
208 public int getValue() {
220 * If no textual mapping is found then the {@link #getValue() numeric value} is returned.
316 return getValue();
346 return getValue();
454 return temporal.with(DAY_OF_WEEK, getValue());
  /libcore/ojluni/src/main/java/javax/net/ssl/
SSLSession.java 183 public Object getValue(String name);

Completed in 817 milliseconds

<<11121314151617181920>>