HomeSort by relevance Sort by last modified time
    Searched full:getvalue (Results 426 - 450 of 10882) sorted by null

<<11121314151617181920>>

  /cts/tests/sensor/src/android/hardware/cts/helpers/sensorverification/
EventOrderingVerificationTest.java 101 assertEquals(passed, stats.getValue(EventOrderingVerification.PASSED_KEY));
102 assertEquals(count, stats.getValue(SensorStats.EVENT_OUT_OF_ORDER_COUNT_KEY));
103 assertNotNull(stats.getValue(SensorStats.EVENT_OUT_OF_ORDER_POSITIONS_KEY));
107 int[] primitiveIndices = (int[]) stats.getValue(
  /cts/tests/tests/animation/src/android/animation/cts/
KeyframeTest.java 60 assertEquals(keyFrame.getValue(),10);
67 assertEquals(9.0f, (float) keyFrame.getValue(), 0.0f);
82 assertEquals(keyFrame.getValue(), value);
113 Float actualValue = (Float) keyFrame.getValue();
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/tests/
test_dump.py 9 self.assertEqual(sio.getvalue(), '{}')
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/tests/
test_dump.py 9 self.assertEqual(sio.getvalue(), '{}')
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_sax.py 27 self.assertRaises(KeyError, attrs.getValue, "attr")
44 self.assertRaises(KeyError, attrs.getValue, (ns_uri, "attr"))
71 self.assertEqual(attrs.getValue("attr"), "val")
167 self.assertEqual(result.getvalue(), start + "<doc></doc>")
179 self.assertEqual(result.getvalue(), start + "<doc>huhei</doc>")
191 self.assertEqual(result.getvalue(), start + "<?test data?><doc></doc>")
203 self.assertEqual(result.getvalue(),
221 self.assertEqual(result.getvalue(), start +
236 self.assertEqual(result.getvalue(), start + "<doc> </doc>")
252 self.assertEqual(result.getvalue(), start + \
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/tests/
t020fuzzy.py 25 output = lexer.output.getvalue()
  /external/autotest/frontend/client/src/autotest/afe/
CheckBoxPanel.java 29 if (checkBox.getValue()) {
ControlTypeSelect.java 18 if (display.getClient().getValue()) {
  /external/autotest/frontend/client/src/autotest/common/table/
CheckboxFilter.java 30 return checkBox.getValue();
  /external/autotest/server/site_tests/brillo_ADBLogcatTest/
brillo_ADBLogcatTest.py 24 if not len(logcat_log.getvalue()):
  /external/autotest/tko/
db_unittest.py 27 self.assertEqual(self.stderr.getvalue(), 'error message\n')
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ocsp/
RespData.java 22 return data.getVersion().getValue().intValue() + 1;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
CRLNumber.java 49 return new CRLNumber(ASN1Integer.getInstance(o).getValue());
  /external/clang/lib/StaticAnalyzer/Core/
SVals.cpp 163 return getValue()->begin();
167 return getValue()->end();
180 return LV->getValue() == I;
182 return NV->getValue() == I;
199 svalBuilder.getBasicValueFactory().evalAPSInt(Op, getValue(), R.getValue());
209 return svalBuilder.makeIntVal(~getValue());
214 return svalBuilder.makeIntVal(-getValue());
227 const llvm::APSInt *X = BasicVals.evalAPSInt(Op, getValue(), R.getValue());
    [all...]
  /external/deqp/modules/egl/
teglQueryConfigTests.cpp 203 EGLint getValue (EGLConfig config, EGLenum attrib, bool logValue=true);
269 EGLint GetConfigAttribCase::getValue (EGLConfig config, EGLenum attrib, bool logValue)
439 const EGLint colorBufferType = getValue(config, EGL_COLOR_BUFFER_TYPE);
441 const EGLint bufferSize = getValue(config, EGL_BUFFER_SIZE);
442 const EGLint redSize = getValue(config, EGL_RED_SIZE);
443 const EGLint greenSize = getValue(config, EGL_GREEN_SIZE);
444 const EGLint blueSize = getValue(config, EGL_BLUE_SIZE);
445 const EGLint luminanceSize = getValue(config, EGL_LUMINANCE_SIZE);
446 const EGLint alphaSize = getValue(config, EGL_ALPHA_SIZE);
509 const EGLint transparentType = getValue(config, EGL_TRANSPARENT_TYPE)
    [all...]
  /external/guice/extensions/servlet/test/com/google/inject/servlet/
ContinuingHttpServletRequestTest.java 74 assertEquals(TEST_VALUE_1, continuingRequest.getCookies()[0].getValue());
75 assertEquals(TEST_VALUE_2, continuingRequest.getCookies()[1].getValue());
101 assertEquals(one.getValue(), two.getValue());
  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
Extension.java 33 public String getValue() {
  /external/icu/icu4c/source/common/unicode/
ustringtrie.h 54 * This value will be returned by getValue().
62 * This value will be returned by getValue().
82 * @see BytesTrie::getValue
83 * @see UCharsTrie::getValue
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/validator/chunks/
NoBinaryIntegerLiteralsValidator.java 23 if (n.getValue().toUpperCase().startsWith("0B")) {
NoUnderscoresInIntegerLiteralsValidator.java 23 if (n.getValue().contains("_")) {
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/changes/
PropertyChange.java 33 public Object getValue(ObservableProperty property, Node node) {
  /external/javassist/src/main/javassist/bytecode/annotation/
ClassMemberValue.java 63 Object getValue(ClassLoader cl, ClassPool cp, Method m)
65 final String classname = getValue();
97 public String getValue() {
116 return "<" + getValue() + " class>";
  /external/libmojo/mojo/android/javatests/src/org/chromium/mojo/bindings/
InterfaceControlMessageTest.java 59 public long getValue() {
110 assertEquals(123, impl.getValue());
117 assertEquals(456, impl.getValue());
127 assertEquals(456, impl.getValue());
  /external/libmojo/mojo/public/cpp/bindings/
map_traits_stl.h 45 static V& GetValue(Iterator& iterator) { return iterator->second; }
46 static const V& GetValue(ConstIterator& iterator) { return iterator->second; }
94 static V& GetValue(Iterator& iterator) { return iterator->second; }
95 static const V& GetValue(ConstIterator& iterator) { return iterator->second; }
  /external/llvm/unittests/Analysis/
BlockFrequencyInfoTest.cpp 79 EXPECT_EQ(BFI.getBlockProfileCount(&BB0).getValue(), UINT64_C(100));
80 EXPECT_EQ(BFI.getBlockProfileCount(BB3).getValue(), UINT64_C(100));
81 EXPECT_EQ(BFI.getBlockProfileCount(BB1).getValue(), 100 * BB1Freq / BB0Freq);
82 EXPECT_EQ(BFI.getBlockProfileCount(BB2).getValue(), 100 * BB2Freq / BB0Freq);

Completed in 1277 milliseconds

<<11121314151617181920>>