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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/over/over.built/
p23.cpp 8 Variant getValue();
11 bool ret1 = getValue() || getValue();
12 bool ret2 = getValue() && getValue();
13 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/robolectric/src/main/java/com/xtremelabs/robolectric/res/
StringResourceLoader.java 12 public String getValue(int resourceId) {
13 return stringResolver.getValue(resourceExtractor.getResourceName(resourceId));
16 public String getValue(String resourceName, boolean isSystem) {
17 return getValue(resourceExtractor.getResourceId(resourceName, isSystem));
DimenResourceLoader.java 14 public float getValue(int resourceId) {
15 return dimenResolver.getValue(resourceExtractor.getResourceName(resourceId));
18 public float getValue(String resourceName, boolean isSystem) {
19 return getValue(resourceExtractor.getResourceId(resourceName, isSystem));
  /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...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/res/
DimenResourceLoaderTest.java 27 assertThat(dimenResourceLoader.getValue(R.dimen.test_dp_dimen),
29 assertThat(dimenResourceLoader.getValue(R.dimen.test_dip_dimen),
31 assertThat(dimenResourceLoader.getValue(R.dimen.test_px_dimen),
33 assertThat(dimenResourceLoader.getValue(R.dimen.test_sp_dimen),
StringResourceLoaderTest.java 23 assertThat(stringResourceLoader.getValue(R.string.hello), equalTo("Hello"));
24 assertThat(stringResourceLoader.getValue(R.string.howdy), equalTo("Howdy"));
29 assertThat(stringResourceLoader.getValue(R.string.some_html), equalTo("Hello, world"));
34 assertThat(stringResourceLoader.getValue(R.string.greeting), equalTo("Howdy"));
ColorResourceLoaderTest.java 27 assertThat(colorResourceLoader.getValue(R.drawable.l0_red), equalTo(-0x000001));
32 assertThat(colorResourceLoader.getValue(R.color.black), equalTo(0x000000));
33 assertThat(colorResourceLoader.getValue(R.color.white), equalTo(0xffffff));
38 assertThat(colorResourceLoader.getValue(R.color.clear), equalTo(0x000001));
43 assertThat(colorResourceLoader.getValue(R.color.foreground), equalTo(0xf5f5f5));
48 assertThat(colorResourceLoader.getValue(R.color.background), equalTo(0xf5f5f5));
53 assertThat(colorResourceLoader.getValue(R.color.color_with_alpha), equalTo(0x802C76AD));
58 assertThat(colorResourceLoader.getValue(android.R.color.black), equalTo(Color.BLACK));
63 assertThat(colorResourceLoader.getValue(android.R.color.background_dark), equalTo(0xFF000000));
68 assertThat(colorResourceLoader.getValue(R.color.android_namespaced_black), equalTo(Color.BLACK))
    [all...]
IntegerResourceLoaderTest.java 30 assertThat( resourceLoader.getValue( R.integer.test_integer1 ), equalTo( 2000 ) );
31 assertThat( resourceLoader.getValue( R.integer.test_integer2 ), equalTo( 9 ) );
32 assertThat( resourceLoader.getValue( R.integer.test_large_hex), equalTo( 0xFFFF0000 ) );
  /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();
  /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),
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
AppleMediaTypeBox.java 32 if (mediaTypes.containsKey(getValue())) {
33 return mediaTypes.get(getValue());
35 return "unknown media type " + getValue();
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/tester/org/apache/http/
TestHttpResponseTest.java 27 assertThat(resp.getFirstHeader(l).getValue(), equalTo("http://bar.com"));
41 assertThat(resp.getLastHeader(l).getValue(), equalTo("http://zombo.com"));
65 assertThat(it.nextHeader().getValue(), equalTo("http://bar.com"));
66 assertThat(it.nextHeader().getValue(), equalTo("http://zombo.com"));
81 assertThat(it.nextHeader().getValue(), equalTo("http://bar.com"));
83 assertThat(it.nextHeader().getValue(), equalTo("http://foo.com"));
99 assertThat(headers[0].getValue(), CoreMatchers.equalTo("http://bar.com"));
100 assertThat(headers[1].getValue(), CoreMatchers.equalTo("http://foo.com"));
109 assertThat(response.getHeaders("foo")[0].getValue(), CoreMatchers.equalTo("bar"));
117 assertThat(response.getHeaders("foo")[0].getValue(), CoreMatchers.equalTo("bletch"))
    [all...]
  /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()
  /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/clang/lib/StaticAnalyzer/Core/
BasicValueFactory.cpp 66 I->getValue().~APSInt();
72 const llvm::APSInt& BasicValueFactory::getValue(const llvm::APSInt& X) {
89 const llvm::APSInt& BasicValueFactory::getValue(const llvm::APInt& X,
92 return getValue(V);
95 const llvm::APSInt& BasicValueFactory::getValue(uint64_t X, unsigned BitWidth,
99 return getValue(V);
102 const llvm::APSInt& BasicValueFactory::getValue(uint64_t X, QualType T) {
104 return getValue(getAPSIntType(T).getValue(X));
154 return &getValue( V1 * V2 )
    [all...]

Completed in 1117 milliseconds

1 2 3 4 5 6 7 8 91011>>