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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/over/over.built/
p23.cpp 7 Variant getValue();
10 bool ret1 = getValue() || getValue();
11 bool ret2 = getValue() && getValue();
12 bool ret3 = !getValue();
  /external/apache-harmony/support/src/test/resources/tests/resources/
hyts_checkInput.txt 3 //System.out.print("value of crc"+crc.getValue());
  /libcore/support/src/test/java/tests/resources/
hyts_checkInput.txt 3 //System.out.print("value of crc"+crc.getValue());
  /external/nist-sip/java/javax/sip/header/
ExtensionHeader.java 6 String getValue();
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
CRC32Test.java 29 assertEquals("Constructor of CRC32 failed", 0, crc.getValue());
33 * @tests java.util.zip.CRC32#getValue()
36 // test methods of java.util.zip.crc32.getValue()
38 assertEquals("getValue() should return a zero as a result of constructing a CRC32 instance",
39 0, crc.getValue());
43 // System.out.print("value of crc " + crc.getValue());
47 4278190080L, crc.getValue());
52 // System.out.print("value of crc"+crc.getValue());
56 1295764014L, crc.getValue());
60 // System.out.print("value of crc"+crc.getValue());
    [all...]
Adler32Test.java 29 assertEquals("Constructor of adl32 failed", 1, adl.getValue());
33 * @tests java.util.zip.Adler32#getValue()
36 // test methods of java.util.zip.getValue()
38 assertEquals("GetValue should return a zero as a result of construction an object of Adler32",
39 1, adl.getValue());
43 // System.out.print("value of adl"+adl.getValue());
46 131074, adl.getValue());
49 .getValue());
53 // System.out.print("value of adl " + adl.getValue());
56 65537L, adl.getValue());
    [all...]
  /system/extras/tests/bionic/libc/bionic/
lib_static_init.h 9 virtual int getValue();
test_static_init.cpp 9 int c = theFoo.getValue();
22 c = theFoo2.getValue();
lib_static_init.cpp 11 int Foo::getValue()
  /external/junit/src/org/junit/experimental/theories/
PotentialAssignment.java 11 public Object getValue() throws CouldNotGenerateValueException {
28 public abstract Object getValue() throws CouldNotGenerateValueException;
  /dalvik/tests/064-field-access/src/
Main.java 51 public Object getValue(Field field, Object obj, char type,
137 * localInst.getValue() is performed using an instance of Main as the
138 * source of the reflection call. otherInst.getValue() uses a subclass
181 localInst.getValue(localPubByteField, samePkgInst, 'B', null);
186 this.getValue(localProtByteField, samePkgInst, 'B', null);
191 this.getValue(localPrivFloatField, samePkgInst, 'F',
203 this.getValue(otherProtShortField, this, 'S',
205 this.getValue(otherProtShortField, otherPkgInst, 'S',
207 this.getValue(otherPkgDoubleField, otherPkgInst, 'D',
215 localInst.getValue(localPubByteField, null, 'B'
    [all...]
  /external/doclava/src/com/google/doclava/apicheck/
XmlApiFile.java 73 new PackageInfo(attributes.getValue("name"), SourcePositionInfo.fromXml(attributes
74 .getValue("source")));
82 SourcePositionInfo position = SourcePositionInfo.fromXml(attributes.getValue("source"));
83 String visibility = attributes.getValue("visibility");
88 boolean isStatic = Boolean.valueOf(attributes.getValue("static"));
90 boolean isAbstract = Boolean.valueOf(attributes.getValue("abstract"));
96 boolean isFinal = Boolean.valueOf(attributes.getValue("final"));
98 String name = attributes.getValue("name");
109 mCurrentClass.setDeprecated("deprecated".equals(attributes.getValue("deprecated")));
111 String superclass = attributes.getValue("extends")
    [all...]
  /external/v8/test/cctest/
test-platform-tls.cc 17 static void* GetValue(int num) {
26 Thread::SetThreadLocal(keys[i], GetValue(i));
32 CHECK_EQ(GetValue(i), Thread::GetThreadLocal(keys[i]));
33 CHECK_EQ(GetValue(i), Thread::GetExistingThreadLocal(keys[i]));
36 Thread::SetThreadLocal(keys[i], GetValue(kValueCount - i - 1));
42 CHECK_EQ(GetValue(kValueCount - i - 1),
44 CHECK_EQ(GetValue(kValueCount - i - 1),
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
GalParser.java 62 String displayName = getValue();
67 String emailAddress = getValue();
72 galData.put(GalData.WORK_PHONE, getValue());
75 galData.put(GalData.OFFICE, getValue());
78 galData.put(GalData.TITLE, getValue());
81 galData.put(GalData.COMPANY, getValue());
84 galData.put(GalData.ALIAS, getValue());
87 galData.put(GalData.FIRST_NAME, getValue());
90 galData.put(GalData.LAST_NAME, getValue());
93 galData.put(GalData.HOME_PHONE, getValue());
    [all...]
  /external/chromium/chrome/browser/prefs/
pref_value_map_unittest.cc 15 EXPECT_FALSE(map.GetValue("key", &result));
22 EXPECT_TRUE(map.GetValue("key", &result));
31 EXPECT_TRUE(map.GetValue("key", NULL));
34 EXPECT_FALSE(map.GetValue("key", NULL));
42 EXPECT_TRUE(map.GetValue("key", NULL));
46 EXPECT_FALSE(map.GetValue("key", NULL));
default_pref_store.cc 12 CHECK(GetValue(key, NULL) == READ_NO_VALUE);
18 return GetValue(key, &value) == READ_OK ? value->GetType()
  /dalvik/tests/084-class-init/src/
Main.java 73 SlowInit.FIELD0.getValue() + SlowInit.FIELD1.getValue() +
74 SlowInit.FIELD2.getValue() + SlowInit.FIELD3.getValue());
84 field0 = SlowInit.FIELD0.getValue();
85 field1 = SlowInit.FIELD1.getValue();
86 field2 = SlowInit.FIELD2.getValue();
87 field3 = SlowInit.FIELD3.getValue();
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
TestPackageXmlParser.java 69 final String entryUriValue = attributes.getValue("appPackageName");
70 final String testPackageNameSpace = attributes.getValue("appNameSpace");
71 final String packageName = attributes.getValue("name");
72 final String runnerName = attributes.getValue("runner");
73 final String jarPath = attributes.getValue("jarPath");
74 final String signatureCheck = attributes.getValue("signatureCheck");
75 final String javaPackageFilter = attributes.getValue("javaPackageFilter");
76 final String targetBinaryName = attributes.getValue("targetBinaryName");
77 final String targetNameSpace = attributes.getValue("targetNameSpace");
94 String packageSegment = attributes.getValue("name")
    [all...]
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/internal/kerberos/v5/
KrbConfigTest.java 39 .getValue("libdefaults", "default_realm"));
40 assertEquals("true", config.getValue("libdefaults", "dns_lookup_kdc"));
42 assertEquals("SYSLOG:INFO", config.getValue("logging", "default"));
43 assertEquals("FILE:/var/kdc.log", config.getValue("logging", "kdc"));
  /external/clang/test/Modules/
submodules.m 8 int getValue() {
  /external/nist-sip/java/javax/sip/
DialogState.java 21 public int getValue() {
  /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
AttributeListImplTest.java 76 assertEquals(multi.getValue(i), attrs.getValue(i));
95 assertEquals("false", multi.getValue(3));
102 assertEquals("false", multi.getValue(4));
108 assertEquals(null, multi.getValue(5));
116 assertEquals("xyz", multi.getValue(0));
170 assertEquals("abc", multi.getValue(0));
171 assertEquals("xyz", multi.getValue(1));
172 assertEquals("42", multi.getValue(2));
175 assertEquals(null, multi.getValue(-1))
    [all...]
  /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/bouncycastle/src/main/java/org/bouncycastle/asn1/x9/
X9Curve.java 52 BigInteger p = ((DERInteger)fieldID.getParameters()).getValue();
55 curve = new ECCurve.Fp(p, x9A.getValue().toBigInteger(), x9B.getValue().toBigInteger());
63 int m = ((DERInteger)parameters.getObjectAt(0)).getValue().
74 k1 = ((DERInteger)parameters.getObjectAt(2)).getValue().
82 k1 = ((DERInteger)pentanomial.getObjectAt(0)).getValue().
84 k2 = ((DERInteger)pentanomial.getObjectAt(1)).getValue().
86 k3 = ((DERInteger)pentanomial.getObjectAt(2)).getValue().
92 curve = new ECCurve.F2m(m, k1, k2, k3, x9A.getValue().toBigInteger(), x9B.getValue().toBigInteger())
    [all...]
  /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...]

Completed in 1385 milliseconds

1 2 3 4 5 6 7 8 91011>>