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

1 23 4 5 6 7 8 91011>>

  /hardware/ti/wpan/tools/FM/FmRadioIf/src/java/com/ti/core/
JFmContext.java 38 return (value == ((JFmContext) otherContextAsObject).getValue());
49 public final long getValue() {
  /external/guava/guava/src/com/google/common/collect/
ForwardingMapEntry.java 36 * overriding {@link #getValue} alone <i>will not</i> change the behavior of
70 public V getValue() {
71 return delegate().getValue();
89 * #getKey()} and {@link #getValue()}. If you override either of these
99 && Objects.equal(this.getValue(), that.getValue());
106 * and {@link #getValue()}. If you override either of these methods, you may
113 V v = getValue();
119 * #getKey} and {@link #getValue}. If you override either of these
126 return getKey() + "=" + getValue();
    [all...]
AbstractMapEntry.java 39 public abstract V getValue();
50 && Objects.equal(this.getValue(), that.getValue());
57 V v = getValue();
65 return getKey() + "=" + getValue();
  /external/jdiff/src/jdiff/
APIHandler.java 78 String apiName = attributes.getValue("name");
79 String version = attributes.getValue("jdversion"); // Not used yet
83 String pkgName = attributes.getValue("name");
87 String className = attributes.getValue("name");
88 String parentName = attributes.getValue("extends");
90 if (attributes.getValue("abstract").compareTo("true") == 0)
95 String className = attributes.getValue("name");
96 String parentName = attributes.getValue("extends");
98 if (attributes.getValue("abstract").compareTo("true") == 0)
102 String interfaceName = attributes.getValue("name")
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
AbstractData.java 34 return TypeConverter.asNumber(getValue());
41 return TypeConverter.asBoolean(getValue());
49 * Use {@link #getValue(String)} in preference to ensure ClearSilver compatibility.
51 public String getValue(String path, String defaultValue) {
56 String result = child.getValue();
65 * Use {@link #getValue(String)} in preference to ensure ClearSilver compatibility.
72 String result = child.getValue();
85 public String getValue(String path) {
86 return getValue(path, null);
  /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());
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
CachedLaterTest.java 46 assertNull(mTrap.getValue());
48 assertEquals("foo", mTrap.getValue());
55 assertEquals("foo", mTrap2.getValue());
62 assertEquals("foo", mTrap.getValue());
63 assertEquals("foo", mTrap2.getValue());
72 assertEquals("bar", mTrap2.getValue());
89 assertNull(mTrap2.getValue());
  /external/clang/lib/StaticAnalyzer/Core/
BasicValueFactory.cpp 65 I->getValue().~APSInt();
71 const llvm::APSInt& BasicValueFactory::getValue(const llvm::APSInt& X) {
88 const llvm::APSInt& BasicValueFactory::getValue(const llvm::APInt& X,
91 return getValue(V);
94 const llvm::APSInt& BasicValueFactory::getValue(uint64_t X, unsigned BitWidth,
98 return getValue(V);
101 const llvm::APSInt& BasicValueFactory::getValue(uint64_t X, QualType T) {
107 return getValue(V);
157 return &getValue( V1 * V2 );
160 return &getValue( V1 / V2 )
    [all...]
  /external/guava/guava/src/com/google/common/cache/
RemovalNotification.java 70 @Nullable @Override public V getValue() {
82 && Objects.equal(this.getValue(), that.getValue());
89 V v = getValue();
97 return getKey() + "=" + getValue();
  /external/llvm/include/llvm/Support/
StringPool.h 87 if (S) ++S->getValue().Refcount;
91 if (S) ++S->getValue().Refcount;
98 if (S) ++S->getValue().Refcount;
106 if (--S->getValue().Refcount == 0) {
107 S->getValue().Pool->InternTable.remove(S);
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
SceneLoader.java 110 if (attribs.getValue("x") != null){
112 float x = parseFloat(attribs.getValue("x"));
113 float y = parseFloat(attribs.getValue("y"));
114 float z = parseFloat(attribs.getValue("z"));
115 float w = parseFloat(attribs.getValue("w"));
117 }else if (attribs.getValue("qx") != null){
119 float x = parseFloat(attribs.getValue("qx"));
120 float y = parseFloat(attribs.getValue("qy"));
121 float z = parseFloat(attribs.getValue("qz"));
122 float w = parseFloat(attribs.getValue("qw"))
    [all...]
  /ndk/tests/device/test-gabi++-guard/jni/
test_guard.cpp 14 int getValue() { return mValue; }
59 if (foo->getValue() != 1) {
61 foo->getValue());
  /external/jmonkeyengine/engine/src/core/com/jme3/util/xml/
SAXUtil.java 127 float x = parseFloat(attribs.getValue("x"));
128 float y = parseFloat(attribs.getValue("y"));
129 float z = parseFloat(attribs.getValue("z"));
134 float r = parseFloat(attribs.getValue("r"));
135 float g = parseFloat(attribs.getValue("g"));
136 float b = parseFloat(attribs.getValue("b"));
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
CurrentXmlHandler.java 54 mCurrentPackageName = getValue(attributes, "name");
61 mCurrentClassName = getValue(attributes, "name");
73 mCurrentMethodName = getValue(attributes, "name");
74 mCurrentMethodReturnType = getValue(attributes, "return");
77 mCurrentParameterTypes.add(getValue(attributes, "type"));
103 static String getValue(Attributes attributes, String key) {
105 return attributes.getValue(key)
111 return "deprecated".equals(attributes.getValue("deprecated"));
  /cts/tools/signature-tools/src/signature/model/impl/
SigAnnotationElement.java 38 public Object getValue() {
51 builder.append(getValue());
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
AnnotationTest.java 35 * @tests java.text.Annotation.getValue()
39 assertNull(a.getValue());
41 assertEquals("value", a.getValue());
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
CRLReason.java 94 super(reason.getValue().intValue());
100 int reason = getValue().intValue();
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
LocalePropertyEditor.java 41 Object value = property.getValue();
56 Object value = property.getValue();
  /external/webkit/Source/JavaScriptCore/wtf/
PossiblyNull.h 44 bool getValue(T& out) WARN_UNUSED_RETURN;
49 template <typename T> bool PossiblyNull<T>::getValue(T& out)
  /sdk/apigenerator/src/com/android/apigenerator/
XmlApiParser.java 63 mParserState.addPackage(attributes.getValue(ATTR_NAME));
66 mParserState.addClass(attributes.getValue(ATTR_NAME));
68 String extendsAttr = attributes.getValue(ATTR_EXTENDS);
74 mParserState.addInterface(attributes.getValue(ATTR_NAME));
77 mParserState.addField(attributes.getValue(ATTR_NAME));
99 mParserState.startNewMethod(attributes.getValue(ATTR_NAME),
100 attributes.getValue(ATTR_RETURN));
104 mParserState.addMethodParameter(attributes.getValue(ATTR_TYPE));
  /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
AttributesImplTest.java 134 assertEquals("abc", multi.getValue(0));
135 assertEquals("xyz", multi.getValue(1));
136 assertEquals("42", multi.getValue(2));
137 assertEquals("1-2-3-4", multi.getValue(3));
138 assertEquals("1-2-3-4", multi.getValue(4));
141 assertEquals(null, multi.getValue(-1));
142 assertEquals(null, multi.getValue(5));
203 assertEquals("abc", multi.getValue("http://some.uri", "foo"));
204 assertEquals("xyz", multi.getValue("http://some.uri", "bar"));
205 assertEquals("42", multi.getValue("http://some.other.uri", "answer"))
    [all...]
  /cts/tests/tests/text/src/android/text/cts/
AnnotationTest.java 47 assertEquals(VALUE1, mAnnotation.getValue());
49 assertEquals(VALUE2, mAnnotation.getValue());
74 assertEquals(out.getValue(), mAnnotation.getValue());
  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/spec/
PSourceTest.java 51 0, PSource.PSpecified.DEFAULT.getValue().length);
58 p[0] == ps.getValue()[0]);
62 * getValue() method testing. Tests that returned array is equal to the
70 byte[] result = ps.getValue();
76 assertFalse("The change of returned by getValue() array "
78 result[0] == ps.getValue()[0]);
  /external/apache-http/src/org/apache/http/cookie/
Cookie.java 59 String getValue();
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
BasicValueFactory.h 84 const llvm::APSInt& getValue(const llvm::APSInt& X);
85 const llvm::APSInt& getValue(const llvm::APInt& X, bool isUnsigned);
86 const llvm::APSInt& getValue(uint64_t X, unsigned BitWidth, bool isUnsigned);
87 const llvm::APSInt& getValue(uint64_t X, QualType T);
98 return getValue(From.getSExtValue(), To.getBitWidth(), To.isUnsigned());
110 return getValue(From.getSExtValue(), bitwidth, isUnsigned);
115 return getValue(X, T);
119 return getValue(llvm::APSInt::getMaxValue(v.getBitWidth(), v.isUnsigned()));
123 return getValue(llvm::APSInt::getMinValue(v.getBitWidth(), v.isUnsigned()));
130 return getValue(llvm::APSInt::getMaxValue(Ctx.getTypeSize(T), isUnsigned))
    [all...]

Completed in 2024 milliseconds

1 23 4 5 6 7 8 91011>>