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

<<11121314151617181920>>

  /cts/tests/tests/widget/src/android/widget/cts/
GridLayoutTest.java 62 abstract int getValue(View v);
73 int getValue(View v) {
79 int getValue(View v) {
85 int getValue(View v) {
91 int getValue(View v) {
100 int getValue(View v) {
106 int getValue(View v) {
112 int getValue(View v) {
118 int getValue(View v) {
124 int getValue(View v)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstBoolean.java 72 return getValue() ? "boolean{true}" : "boolean{false}";
88 return getValue() ? "true" : "false";
96 public boolean getValue() {
  /dalvik/dx/src/com/android/dx/rop/cst/
CstBoolean.java 72 return getValue() ? "boolean{true}" : "boolean{false}";
90 return getValue() ? "true" : "false";
98 public boolean getValue() {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_atexit.py 27 self.assertEqual(self.subst_io.getvalue(),
39 self.assertEqual(self.subst_io.getvalue(), "h3\nh2\nh1\n")
51 self.assertEqual(self.subst_io.getvalue(), "h2\nh1\n")
  /external/autotest/server/site_tests/native_Benchmarks/
native_Benchmarks_common.py 28 stdout.getvalue(),
29 stderr.getvalue())
32 stdout_str = stdout.getvalue()
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
MapContainsValueTester.java 41 getMap().containsValue(samples.e0.getValue()));
46 getMap().containsValue(samples.e3.getValue()));
66 getMap().containsValue(samples.e3.getValue()));
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/
JsonPrinter.java 44 content.add(q(attributeMetaModel.getName()) + ":" + q(attributeMetaModel.getValue(node).toString()));
48 Node value = (Node) subNodeMetaModel.getValue(node);
55 NodeList<? extends Node> subList = (NodeList<? extends Node>) subListMetaModel.getValue(node);
XmlPrinter.java 43 builder.append(attribute(attributeMetaModel.getName(), attributeMetaModel.getValue(node).toString()));
48 Node value = (Node) subNodeMetaModel.getValue(node);
55 NodeList<? extends Node> subList = (NodeList<? extends Node>) subListMetaModel.getValue(node);
  /external/libmojo/mojo/public/cpp/bindings/
array_traits.h 50 // // |iterator|. Optionally, the ConstIterator version of GetValue can
53 // static const T& GetValue(ConstIterator& iterator);
54 // static T& GetValue(Iterator& iterator);
  /external/mockito/src/test/java/org/mockitousage/bugs/
MultithreadedStubbingHalfManualTest.java 29 Integer getValue(Integer param);
78 when(toMock.getValue(i)).thenReturn(j);
80 // doReturn(j).when(toMock).getValue(i);
  /external/python/cpython2/Lib/test/
test_atexit.py 27 self.assertEqual(self.subst_io.getvalue(),
39 self.assertEqual(self.subst_io.getvalue(), "h3\nh2\nh1\n")
51 self.assertEqual(self.subst_io.getvalue(), "h2\nh1\n")
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/
BaseMethodParameter.java 63 EncodedValue encodedValue = annotationElement.getValue();
76 for (EncodedValue signatureValue: signatureValues.getValue()) {
80 sb.append(((StringEncodedValue)signatureValue).getValue());
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderMapEntryCollection.java 54 @Override public Integer getValue() {
55 return BuilderMapEntryCollection.this.getValue(key);
87 protected abstract int getValue(@Nonnull Key key);
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
MethodAnalyzerTest.java 79 AccessFlags.PUBLIC.getValue(), null, methodImplementation);
80 ClassDef classDef = new ImmutableClassDef("Lmain;", AccessFlags.PUBLIC.getValue(), "Ljava/lang/Object;", null,
110 AccessFlags.PUBLIC.getValue(), null, methodImplementation);
111 ClassDef classDef = new ImmutableClassDef("Lmain;", AccessFlags.PUBLIC.getValue(), "Ljava/lang/Object;", null,
142 AccessFlags.PUBLIC.getValue(), null, methodImplementation);
143 ClassDef classDef = new ImmutableClassDef("Lmain;", AccessFlags.PUBLIC.getValue(), "Ljava/lang/Object;", null,
173 AccessFlags.PUBLIC.getValue(), null, methodImplementation);
174 ClassDef classDef = new ImmutableClassDef("Lmain;", AccessFlags.PUBLIC.getValue(), "Ljava/lang/Object;", null,
206 AccessFlags.PUBLIC.getValue(), null, methodImplementation);
207 ClassDef classDef = new ImmutableClassDef("Lmain;", AccessFlags.PUBLIC.getValue(), "Ljava/lang/Object;", null
    [all...]
  /external/snakeyaml/src/test/java/org/pyyaml/
PyStructureTest.java 73 assertEquals(scalar1.getValue(), scalar2.getValue());
130 assertEquals(scalar1.getValue(), scalar2.getValue());
136 assertEquals(seq1.getValue().size(), seq2.getValue().size());
137 Iterator<Node> iter2 = seq2.getValue().iterator();
138 for (Node child1 : seq1.getValue()) {
146 assertEquals(seq1.getValue().size(), seq2.getValue().size())
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue310/
PropertyWithPrivateCostructorTest.java 38 return represent(opt.getValue());
53 assertEquals("income", loadedPerson.getIncome().getValue().doubleValue(), 123456.78, 0.);
67 assertEquals("income", loadedPerson.getIncome().getValue().doubleValue(), 123456.78, 0.);
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
FilterFunction.java 68 if (entry.getValue() instanceof Frame) {
69 mFilter.pushInputFrame(entry.getKey(), (Frame)entry.getValue());
71 mFilter.pushInputValue(entry.getKey(), entry.getValue());
  /frameworks/base/packages/SettingsLib/tests/integ/src/com/android/settingslib/users/
UserManagerHelperTest.java 300 assertThat(handleCaptor.getValue()).isEqualTo(UserHandle.ALL);
305 assertThat(filterCaptor.getValue().countActions()).isEqualTo(6);
306 assertThat(filterCaptor.getValue().hasAction(Intent.ACTION_USER_REMOVED)).isTrue();
307 assertThat(filterCaptor.getValue().hasAction(Intent.ACTION_USER_ADDED)).isTrue();
308 assertThat(filterCaptor.getValue().hasAction(Intent.ACTION_USER_INFO_CHANGED)).isTrue();
309 assertThat(filterCaptor.getValue().hasAction(Intent.ACTION_USER_SWITCHED)).isTrue();
310 assertThat(filterCaptor.getValue().hasAction(Intent.ACTION_USER_STOPPED)).isTrue();
311 assertThat(filterCaptor.getValue().hasAction(Intent.ACTION_USER_UNLOCKED)).isTrue();
315 receiverCaptor.getValue().onReceive(mContext, new Intent());
318 assertThat(permissionCaptor.getValue()).isNull()
    [all...]
  /frameworks/base/tests/TtsTests/src/com/android/speech/tts/
TextToSpeechTests.java 114 assertEquals("eng", req.getValue().getLanguage());
115 assertEquals("USA", req.getValue().getCountry());
116 assertEquals("", req.getValue().getVariant());
117 assertEquals("en-US", req.getValue().getVoiceName());
138 assertEquals("eng", req2.getValue().getLanguage());
139 assertEquals("USA", req2.getValue().getCountry());
140 assertEquals("", req2.getValue().getVariant());
141 assertEquals("en-US", req2.getValue().getVoiceName());
181 assertEquals(defaultLocale.getISO3Language(), req.getValue().getLanguage());
182 assertEquals(defaultLocale.getISO3Country(), req.getValue().getCountry())
    [all...]
  /frameworks/compile/mclinker/tools/mcld/
Main.cpp 265 bool res = llvm::StringSwitch<bool>(arg->getValue())
282 llvm::StringRef value = arg->getValue();
286 << ": " << arg->getValue();
294 llvm::StringRef value = arg->getValue();
298 << ": " << arg->getValue();
306 llvm::StringRef value = arg->getValue();
310 << ": " << arg->getValue();
326 triple.setTriple(arg->getValue());
341 ParseEmulation(triple, arg->getValue());
344 config_.targets().setArch(arg->getValue());
    [all...]
  /frameworks/opt/setupwizard/library/test/robotest/src/com/android/setupwizardlib/template/
ScrollViewScrollHandlingDelegateTest.java 66 mListenerCaptor.getValue().onRequiresScroll();
74 mListenerCaptor.getValue().onRequiresScroll();
77 mListenerCaptor.getValue().onScrolledToBottom();
  /frameworks/support/dynamic-animation/src/main/java/androidx/dynamicanimation/animation/
FloatPropertyCompat.java 26 * {@link #getValue(Object)} need to be implemented. Both the setter and the getter take the
60 public float getValue(T object) {
77 public abstract float getValue(T object);
FloatValueHolder.java 21 * i.e. {@link #setValue(float)} and {@link #getValue()}) to access this float value. Animations can
24 * obtain the up-to-date animation value via {@link FloatValueHolder#getValue()}.
71 public float getValue() {
  /frameworks/support/room/integration-tests/kotlintestapp/src/androidTest/java/androidx/room/integration/kotlintestapp/test/
LiveDataQueryTest.kt 36 val book = LiveDataTestUtil.getValue(booksDao.getBookLiveData(TestUtil.BOOK_1.bookId))
52 val actual = LiveDataTestUtil.getValue(booksDao.getBooksWithPublisherLiveData())
62 var actualPublisherWithBooks = LiveDataTestUtil.getValue(
  /hardware/libhardware/modules/camera/3_4/metadata/
v4l2_control_delegate_test.cpp 56 ASSERT_EQ(dut_->GetValue(&actual), 0);
69 ASSERT_EQ(dut_->GetValue(&unused), err);
77 ASSERT_EQ(dut_->GetValue(&unused), err);

Completed in 450 milliseconds

<<11121314151617181920>>