Searched refs:setValue (Results 1 - 25 of 164) sorted by relevance

1234567

/frameworks/base/core/java/android/hardware/camera2/impl/
H A DSetCommand.java31 public <T> void setValue(/*inout*/CameraMetadataNative metadata, method in interface:SetCommand
/frameworks/base/core/java/android/util/
H A DFloatProperty.java21 * calls to a {@link #setValue(Object, float) setValue()} function that takes the primitive
37 public abstract void setValue(T object, float value); method in class:FloatProperty
41 setValue(object, value);
H A DIntProperty.java21 * calls to a {@link #setValue(Object, int) setValue()} function that takes the primitive
37 public abstract void setValue(T object, int value); method in class:IntProperty
41 setValue(object, value.intValue());
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/samples/simplecamera/
H A DImageGoodnessFilterTest.java43 sharpnessFrame.setValue(10f);
45 oEFrame.setValue(0.39f);
47 uEFrame.setValue(0.25f);
49 colorFrame.setValue(2.1f);
51 contrastFrame.setValue(0.18f);
54 motionFrame.setValue(motionFloatArray);
71 sharpnessFrame.setValue(10f);
73 oEFrame.setValue(0.39f);
75 uEFrame.setValue(0.25f);
77 colorFrame.setValue(2.
[all...]
H A DAverageFilterTest.java34 frame.setValue(5f);
45 frame.setValue(4f);
/frameworks/compile/mclinker/lib/Script/
H A DNullaryOp.cpp23 res->setValue(pBackend.sectionStartOffset());
32 res->setValue(pBackend.abiPageSize());
41 res->setValue(pBackend.commonPageSize());
H A DTernaryOp.cpp25 res->setValue(m_pOperand[1]->value());
27 res->setValue(m_pOperand[2]->value());
53 res->setValue(form1);
55 res->setValue(form2);
H A DBinaryOp.cpp30 res->setValue(m_pOperand[0]->value() * m_pOperand[1]->value());
38 res->setValue(m_pOperand[0]->value() / m_pOperand[1]->value());
46 res->setValue(m_pOperand[0]->value() % m_pOperand[1]->value());
54 res->setValue(m_pOperand[0]->value() + m_pOperand[1]->value());
62 res->setValue(m_pOperand[0]->value() - m_pOperand[1]->value());
70 res->setValue(m_pOperand[0]->value() << m_pOperand[1]->value());
78 res->setValue(m_pOperand[0]->value() >> m_pOperand[1]->value());
86 res->setValue(m_pOperand[0]->value() < m_pOperand[1]->value());
94 res->setValue(m_pOperand[0]->value() <= m_pOperand[1]->value());
102 res->setValue(m_pOperan
[all...]
H A DUnaryOp.cpp30 res->setValue(+m_pOperand->value());
39 res->setValue(-m_pOperand->value());
48 res->setValue(!m_pOperand->value());
57 res->setValue(~m_pOperand->value());
87 res->setValue(sect->addr());
109 res->setValue(sect->align());
118 res->setValue(m_pOperand->value());
180 res->setValue(sect->size());
/frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
H A DMultiArgAdapterTest.java37 obj1.setValue("a", false);
38 obj2.setValue("b", false);
39 obj3.setValue("c", false);
40 obj4.setValue("d", false);
53 obj1.setValue("o", false);
56 obj2.setValue("p", false);
63 obj3.setValue("q", false);
64 obj4.setValue("r", false);
80 obj1.setValue("a", false);
81 obj2.setValue("
[all...]
H A DMultiArgAdapterEvaluationTest.java36 obj1.setValue("a", false);
37 obj2.setValue("b", false);
48 obj1.setValue("o", false);
51 obj2.setValue("p", false);
55 obj1.setValue("o2", true);
/frameworks/base/core/java/com/android/internal/app/procstats/
H A DPssTable.java67 setValue(key, PSS_SAMPLE_COUNT, inCount);
68 setValue(key, PSS_MINIMUM, minPss);
69 setValue(key, PSS_AVERAGE, avgPss);
70 setValue(key, PSS_MAXIMUM, maxPss);
71 setValue(key, PSS_USS_MINIMUM, minUss);
72 setValue(key, PSS_USS_AVERAGE, avgUss);
73 setValue(key, PSS_USS_MAXIMUM, maxUss);
75 setValue(key, PSS_SAMPLE_COUNT, count + inCount);
81 setValue(key, PSS_MINIMUM, minPss);
85 setValue(ke
[all...]
H A DDurationsTable.java49 setValue(key, getValue(key) + value);
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DExifTag.java211 * setValue() if the length of value does not match the component count.
236 public boolean setValue(int[] value) { method in class:ExifTag
270 public boolean setValue(int value) { method in class:ExifTag
271 return setValue(new int[] {
286 public boolean setValue(long[] value) { method in class:ExifTag
307 public boolean setValue(long value) { method in class:ExifTag
308 return setValue(new long[] {
327 public boolean setValue(String value) { method in class:ExifTag
363 public boolean setValue(Rational[] value) { method in class:ExifTag
394 public boolean setValue(Rationa method in class:ExifTag
411 public boolean setValue(byte[] value, int offset, int length) { method in class:ExifTag
427 public boolean setValue(byte[] value) { method in class:ExifTag
441 public boolean setValue(byte value) { method in class:ExifTag
457 public boolean setValue(Object obj) { method in class:ExifTag
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
H A DClockPreference.java69 setValue(SECONDS);
71 setValue(DEFAULT);
73 setValue(DISABLED);
80 TunerService.get(getContext()).setValue(Clock.CLOCK_SECONDS, SECONDS.equals(value) ? 1 : 0);
86 TunerService.get(getContext()).setValue(StatusBarIconController.ICON_BLACKLIST,
/frameworks/base/core/tests/coretests/src/android/preference/
H A DListPreferenceTest.java30 lp.setValue(entryValues[1]);
36 lp.setValue(entryValues[2]);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DVariableSource.java32 public synchronized void setValue(Object value) { method in class:VariableSource
55 frame.setValue(mValue);
/frameworks/compile/mclinker/lib/ADT/
H A DStringEntry.cpp32 void StringEntry<llvm::StringRef>::setValue(llvm::StringRef pVal) { function in class:mcld::StringEntry
38 void StringEntry<llvm::StringRef>::setValue(const char* pVal) { function in class:mcld::StringEntry
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonGOTPLT.cpp41 .setValue(pAddress);
53 llvm::cast<HexagonGOTEntry>(*it).setValue(pPLT.addr());
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86GOTPLT.cpp38 .setValue(pAddress);
49 llvm::cast<X86_32GOTEntry>(*it).setValue(plt_addr + 6);
71 .setValue(pAddress);
82 llvm::cast<X86_64GOTEntry>(*it).setValue(plt_addr + 6);
/frameworks/opt/setupwizard/tools/gradle/
H A Ddocs.gradle33 .setValue(['Android', 'http://developer.android.com'])
36 .setValue(['Android', file("$DOCSDIR/android-22.txt").canonicalPath])
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsGOTPLT.cpp56 llvm::cast<GOTPLTEntry>(*it++).setValue(0); // PLT lazy resolver
57 llvm::cast<GOTPLTEntry>(*it++).setValue(0); // Module pointer
60 llvm::cast<GOTPLTEntry>(*it).setValue(pltAddr);
/frameworks/compile/mclinker/include/mcld/ADT/
H A DStringEntry.h45 void setValue(const DataType& pVal) { m_Value = pVal; } function in class:mcld::StringEntry
84 void setValue(const std::string& pVal) { setValue(pVal.c_str()); } function in class:mcld::StringEntry
86 void setValue(const char* pVal);
88 void setValue(llvm::StringRef pVal);
/frameworks/base/core/java/com/android/internal/preference/
H A DYesNoPreference.java56 setValue(positiveResult);
66 public void setValue(boolean value) { method in class:YesNoPreference
90 setValue(restorePersistedValue ? getPersistedBoolean(mWasPositiveResult) :
122 setValue(myState.wasPositiveResult);
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DProgramVariable.java41 public void setValue(Object value) { method in class:ProgramVariable

Completed in 715 milliseconds

1234567