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

123456

/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.java41 public abstract void setValue(T object, float value); method in class:FloatProperty
45 setValue(object, value);
H A DIntProperty.java41 public abstract void setValue(T object, int value); method in class:IntProperty
45 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 DBinaryOp.cpp27 res->setValue(m_pOperand[0]->value() * m_pOperand[1]->value());
36 res->setValue(m_pOperand[0]->value() / m_pOperand[1]->value());
45 res->setValue(m_pOperand[0]->value() % m_pOperand[1]->value());
54 res->setValue(m_pOperand[0]->value() + m_pOperand[1]->value());
63 res->setValue(m_pOperand[0]->value() - m_pOperand[1]->value());
72 res->setValue(m_pOperand[0]->value() << m_pOperand[1]->value());
81 res->setValue(m_pOperand[0]->value() >> m_pOperand[1]->value());
90 res->setValue(m_pOperand[0]->value() < m_pOperand[1]->value());
99 res->setValue(m_pOperand[0]->value() <= m_pOperand[1]->value());
108 res->setValue(m_pOperan
[all...]
H A DNullaryOp.cpp23 res->setValue(pBackend.sectionStartOffset());
33 res->setValue(pBackend.abiPageSize());
43 res->setValue(pBackend.commonPageSize());
H A DTernaryOp.cpp24 res->setValue(m_pOperand[1]->value());
26 res->setValue(m_pOperand[2]->value());
53 res->setValue(form1);
55 res->setValue(form2);
H A DUnaryOp.cpp26 res->setValue(+ m_pOperand->value());
36 res->setValue(- m_pOperand->value());
46 res->setValue(! m_pOperand->value());
56 res->setValue(~ m_pOperand->value());
87 res->setValue(sect->addr());
109 res->setValue(sect->align());
119 res->setValue(m_pOperand->value());
186 res->setValue(sect->size());
/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/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.cpp35 void StringEntry<llvm::StringRef>::setValue(llvm::StringRef& pVal) function in class:StringEntry
42 void StringEntry<llvm::StringRef>::setValue(const char* pVal) function in class:StringEntry
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonGOTPLT.cpp46 (*(m_SectionData->getFragmentList().begin())).setValue(pAddress);
59 llvm::cast<HexagonGOTEntry>(*it).setValue(pPLT.addr());
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86GOTPLT.cpp43 (*(m_SectionData->getFragmentList().begin())).setValue(pAddress);
55 llvm::cast<X86_32GOTEntry>(*it).setValue(plt_addr + 6);
82 (*(m_SectionData->getFragmentList().begin())).setValue(pAddress);
94 llvm::cast<X86_64GOTEntry>(*it).setValue(plt_addr + 6);
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsGOTPLT.cpp72 llvm::cast<GOTPLTEntry>(*it++).setValue(0); // PLT lazy resolver
73 llvm::cast<GOTPLTEntry>(*it++).setValue(0); // Module pointer
76 llvm::cast<GOTPLTEntry>(*it).setValue(pltAddr);
/frameworks/compile/mclinker/include/mcld/ADT/
H A DStringEntry.h51 void setValue(const DataType& pVal) function in class:mcld::StringEntry
101 void setValue(const std::string& pVal) function in class:mcld::StringEntry
102 { setValue(pVal.c_str()); }
104 void setValue(const char* pVal);
106 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
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
H A DExposureFilter.java76 underOutFrame.setValue(underExposedPixels*inputImage.getWidth()*inputImage.getHeight());
83 underOutFrame2.setValue(underExposedPixels);
91 overOutFrame.setValue(overExposedPixels*inputImage.getWidth()*inputImage.getHeight());
98 overOutFrame2.setValue(overExposedPixels);
/frameworks/compile/mclinker/tools/mcld/lib/
H A DScriptOptions.cpp90 to_wrap->setValue(to_wrap_str);
99 from_real->setValue(*wname);
115 to_port->setValue(to_port_str);
125 from_real->setValue(*pname);
142 addr_mapping->setValue(address);
150 bss_mapping->setValue(ArgBssSegAddr);
158 data_mapping->setValue(ArgDataSegAddr);
166 text_mapping->setValue(ArgTextSegAddr);
/frameworks/base/libs/hwui/
H A DAnimator.h82 virtual void setValue(RenderNode* target, float value) = 0;
141 virtual void setValue(RenderNode* target, float value);
164 virtual void setValue(RenderNode* target, float value);
183 virtual void setValue(RenderNode* target, float value);
198 virtual void setValue(RenderNode* target, float value);
/frameworks/base/core/java/android/animation/
H A DKeyframe.java203 public abstract void setValue(Object value); method in class:Keyframe
280 public void setValue(Object value) { method in class:Keyframe.ObjectKeyframe
324 public void setValue(Object value) { method in class:Keyframe.IntKeyframe
371 public void setValue(Object value) { method in class:Keyframe.FloatKeyframe
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DGlobalSetting.java43 public void setValue(int value) { method in class:GlobalSetting
/frameworks/base/packages/SystemUI/src/com/android/systemui/settings/
H A DToggleSlider.java84 mMirror.setValue(mSlider.getProgress());
119 public void setValue(int value) { method in class:ToggleSlider
122 mMirror.setValue(value);
151 mMirror.setValue(progress);

Completed in 643 milliseconds

123456