Searched refs:getValue (Results 1 - 25 of 265) sorted by relevance

1234567891011

/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrameValues.java31 Object value = super.getValue();
35 return Array.getLength(super.getValue());
49 Object value = super.getValue();
51 return super.getValue();
70 Object value = super.getValue();
120 Object curValue = super.getValue();
142 Object value = frame.getValue();
H A DGraphReader.java295 String sourceTag = attributes.getValue("source");
308 sourceFilterName = attributes.getValue("sourceFilter");
309 sourcePortName = attributes.getValue("sourcePort");
312 String targetTag = attributes.getValue("target");
325 targetFilterName = attributes.getValue("targetFilter");
326 targetPortName = attributes.getValue("targetPort");
329 String sourceSlotName = attributes.getValue("sourceSlot");
330 String targetSlotName = attributes.getValue("targetSlot");
411 if ((strValue = attributes.getValue("stringValue")) != null) {
413 } else if ((strValue = attributes.getValue("booleanValu
[all...]
H A DNormFilter.java52 float xValue = ((Float)xFrameValue.getValue()).floatValue();
54 float yValue = ((Float)yFrameValue.getValue()).floatValue();
H A DValueTarget.java64 postValueToUiThread(valueFrame.getValue());
66 mListener.onReceivedValue(valueFrame.getValue());
/frameworks/ex/chips/src/com/android/ex/chips/recipientchip/
H A DBaseRecipientChip.java45 CharSequence getValue(); method in interface:BaseRecipientChip
H A DInvisibleRecipientChip.java55 public CharSequence getValue() { method in class:InvisibleRecipientChip
56 return mDelegate.getValue();
H A DVisibleRecipientChip.java56 public CharSequence getValue() { method in class:VisibleRecipientChip
57 return mDelegate.getValue();
/frameworks/base/core/java/android/content/
H A DDefaultDataHandler.java100 String uriStr = atts.getValue(URI_STR);
107 atts.getValue(URI_STR) + " parsing failure");
112 String postfix = atts.getValue(POSTFIX);
165 String key = atts.getValue(0);
166 String value = atts.getValue(1);
176 Uri u = Uri.parse(atts.getValue(URI_STR));
179 atts.getValue(URI_STR) + " parsing failure");
185 selectionArgs[i] = atts.getValue(i+2);
187 mContentResolver.delete(u, atts.getValue(1), selectionArgs);
189 mContentResolver.delete(u, atts.getValue(
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
H A DCSVWriterFilter.java75 float sharpness = ((Float)sharpnessValue.getValue()).floatValue();
79 float overExposure = ((Float)overExposureValue.getValue()).floatValue();
83 float underExposure = ((Float)underExposureValue.getValue()).floatValue();
87 float colorfulness = ((Float)colorfulnessValue.getValue()).floatValue();
91 float contrast = ((Float)contrastValue.getValue()).floatValue();
95 float brightness = ((Float)brightnessValue.getValue()).floatValue();
99 float[] motionValues = (float[]) motionValuesFrameValue.getValue();
105 String imageFileName = ((String)imageFileNameFrameValue.getValue());
109 String csvFilePath = ((String)csvFilePathFrameValue.getValue());
/frameworks/base/core/tests/coretests/src/android/text/
H A DPackedIntVectorTest.java59 assertEquals(0, p.getValue(at, j));
61 assertEquals(p.getValue(at, j), i + j);
72 assertEquals(p.getValue(i, j), i * j);
90 assertEquals(p.getValue(i, j), expect);
109 assertEquals(p.getValue(i, j), expect);
122 assertEquals(p.getValue(i, j), i * j);
143 assertEquals(p.getValue(i, j), i * j);
149 assertEquals(p.getValue(i, j), (i + height - p.size()) * j);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/samples/simplecamera/
H A DAverageFilterTest.java39 assertEquals(1f, ((Float) getOutputFrame("avg").asFrameValue().getValue()).floatValue(),
50 assertEquals(0.8f, ((Float) getOutputFrame("avg").asFrameValue().getValue()).floatValue(),
H A DExposureFilterTest.java59 asFrameValue().getValue()).floatValue(), 0.001f);
62 asFrameValue().getValue()).floatValue(), 0.001f);
/frameworks/base/core/java/android/animation/
H A DKeyframeSet.java176 public Object getValue(float fraction) { method in class:KeyframeSet
183 return mEvaluator.evaluate(fraction, mFirstKeyframe.getValue(),
184 mLastKeyframe.getValue());
195 return mEvaluator.evaluate(intervalFraction, mFirstKeyframe.getValue(),
196 nextKeyframe.getValue());
206 return mEvaluator.evaluate(intervalFraction, prevKeyframe.getValue(),
207 mLastKeyframe.getValue());
220 return mEvaluator.evaluate(intervalFraction, prevKeyframe.getValue(),
221 nextKeyframe.getValue());
226 return mLastKeyframe.getValue();
[all...]
H A DKeyframe.java173 public abstract Object getValue(); method in class:Keyframe
253 public Object getValue() { method in class:Keyframe.ObjectKeyframe
296 public Object getValue() { method in class:Keyframe.IntKeyframe
342 public Object getValue() { method in class:Keyframe.FloatKeyframe
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFilterFunction.java68 if (entry.getValue() instanceof Frame) {
69 mFilter.pushInputFrame(entry.getKey(), (Frame)entry.getValue());
71 mFilter.pushInputValue(entry.getKey(), entry.getValue());
H A DProgramVariable.java49 public Object getValue() { method in class:ProgramVariable
/frameworks/base/services/java/com/android/server/firewall/
H A DStringFilter.java123 String value = mValueProvider.getValue(resolvedComponent, intent, resolvedType);
137 public abstract String getValue(ComponentName resolvedComponent, Intent intent, method in class:StringFilter.ValueProvider
232 public String getValue(ComponentName resolvedComponent, Intent intent,
243 public String getValue(ComponentName resolvedComponent, Intent intent,
254 public String getValue(ComponentName resolvedComponent, Intent intent,
265 public String getValue(ComponentName resolvedComponent, Intent intent,
273 public String getValue(ComponentName resolvedComponent, Intent intent,
285 public String getValue(ComponentName resolvedComponent, Intent intent,
293 public String getValue(ComponentName resolvedComponent, Intent intent,
305 public String getValue(ComponentNam
[all...]
/frameworks/ex/common/tests/src/com/android/common/
H A DRfc822ValidatorTest.java55 assertEquals(e.getValue(), validator.fixText(e.getKey()).toString());
70 assertEquals(e.getValue(), validator.fixText(e.getKey()).toString());
86 assertEquals(e.getValue(), validator.fixText(e.getKey()).toString());
/frameworks/av/drm/common/
H A DDrmConstraints.cpp44 if (NULL != getValue(&key)) {
45 return String8(getValue(&key));
50 const char* DrmConstraints::getValue(const String8* key) const { function in class:DrmConstraints
58 return getValue(key);
H A DDrmMetadata.cpp39 if (NULL != getValue(&key)) {
40 return String8(getValue(&key));
47 const char* DrmMetadata::getValue(const String8* key) const { function in class:DrmMetadata
61 return getValue(key);
/frameworks/base/core/java/android/text/
H A DAnnotation.java57 public String getValue() { method in class:Annotation
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DBridgeXmlPullAttributes.java89 value = r.getValue();
106 value = r.getValue();
130 value = r.getValue();
147 value = r.getValue();
164 s = r.getValue();
187 value = r.getValue();
210 value = r.getValue();
226 value = r.getValue();
242 s = r.getValue();
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DFillFragment.h29 int64_t getValue() const { return m_Value; } function in class:mcld::FillFragment
/frameworks/rs/cpu_ref/linkloader/include/impl/
H A DELFSymbol.hxx101 PRINT_LINT("Value", getValue() );
115 setw(7) << getValue() <<
164 my_addr =const_cast<unsigned char *>(&st[0] + (off_t)getValue());
177 std::max((size_t)getValue(), sizeof(void*)),
182 my_addr = memalign(std::max((size_t)getValue(), sizeof(void *)),
191 size_t align = (size_t)getValue();
229 my_addr = const_cast<unsigned char *>(&st[0] + (off_t)getValue());
259 my_addr = const_cast<unsigned char *>(&st[0] + (off_t)getValue());
288 my_addr = const_cast<unsigned char *>(&st[0] + (off_t)getValue());
/frameworks/base/tools/layoutlib/bridge/src/android/content/res/
H A DBridgeResources.java176 return ResourceHelper.getColor(value.getSecond().getValue());
219 String v = resValue.getValue();
249 File xml = new File(value.getValue());
262 "Failed to configure parser for " + value.getValue(), e, null /*data*/);
286 File xml = new File(value.getValue());
296 "Failed to configure parser for " + value.getValue(), e, null /*data*/);
331 String v = resValue.getValue();
365 String v = resValue.getValue();
393 String v = resValue.getValue();
421 String v = resValue.getValue();
513 public void getValue(int id, TypedValue outValue, boolean resolveRefs) method in class:BridgeResources
538 public void getValue(String name, TypedValue outValue, boolean resolveRefs) method in class:BridgeResources
[all...]

Completed in 695 milliseconds

1234567891011