Searched defs:set (Results 1 - 25 of 130) sorted by relevance

123456

/frameworks/base/core/java/android/util/
H A DFloatProperty.java23 * calls to a {@link #set(Object, Float) set()} function that takes the primitive
38 * A type-specific override of the {@link #set(Object, Float)} that is faster when dealing
44 final public void set(T object, Float value) { method in class:FloatProperty
H A DIntProperty.java23 * calls to a {@link #set(Object, Integer) set()} function that takes the primitive
38 * A type-specific override of the {@link #set(Object, Integer)} that is faster when dealing
44 final public void set(T object, Integer value) { method in class:IntProperty
H A DProperty.java21 * in a <em>host</em> object. The Property's {@link #set(Object, Object)} or {@link #get(Object)}
48 * {@link #isReadOnly() readOnly}. Calling the {@link #set(Object, Object)} method on such
67 * Returns true if the {@link #set(Object, Object)} method does not set the value on the target
68 * object (in which case the {@link #set(Object, Object) set()} method should throw a {@link
81 * to set the value on the target object it will throw an {@link UnsupportedOperationException}
84 public void set(T object, V value) { method in class:Property
H A DReflectiveProperty.java30 private static final String PREFIX_SET = "set";
115 public void set(T object, V value) { method in class:ReflectiveProperty
126 mField.set(object, value);
/frameworks/base/core/java/android/view/
H A DCompatibilityInfoHolder.java25 public void set(CompatibilityInfo compatInfo) { method in class:CompatibilityInfoHolder
/frameworks/base/services/java/com/android/server/am/
H A DAppErrorResult.java21 public void set(int res) { method in class:AppErrorResult
/frameworks/rs/
H A DrsSignal.cpp49 void Signal::set() { function in class:Signal
54 ALOGE("LocklessCommandFifo: error %i locking for set condition.", status);
62 ALOGE("LocklessCommandFifo: error %i on set condition.", status);
67 ALOGE("LocklessCommandFifo: error %i unlocking for set condition.", status);
H A DrsMatrix2x2.h32 inline void set(uint32_t x, uint32_t y, float v) { function in struct:android::renderscript::Matrix2x2
H A DrsMatrix3x3.h32 inline void set(uint32_t x, uint32_t y, float v) { function in struct:android::renderscript::Matrix3x3
H A DrsComponent.cpp23 set(RS_TYPE_NONE, RS_KIND_USER, false, 1);
29 void Component::set(RsDataType dt, RsDataKind dk, bool norm, uint32_t vecSize) { function in class:Component
260 set(mType, mKind, mNormalized, mVectorSize);
H A DrsMatrix4x4.h32 void set(uint32_t x, uint32_t y, float v) { function in struct:android::renderscript::Matrix4x4
/frameworks/support/renderscript/v8/rs_support/
H A DrsSignal.cpp49 void Signal::set() { function in class:Signal
54 ALOGE("LocklessCommandFifo: error %i locking for set condition.", status);
62 ALOGE("LocklessCommandFifo: error %i on set condition.", status);
67 ALOGE("LocklessCommandFifo: error %i unlocking for set condition.", status);
H A DrsMatrix2x2.h32 inline void set(uint32_t x, uint32_t y, float v) { function in struct:android::renderscript::Matrix2x2
H A DrsMatrix3x3.h32 inline void set(uint32_t x, uint32_t y, float v) { function in struct:android::renderscript::Matrix3x3
H A DrsComponent.cpp23 set(RS_TYPE_NONE, RS_KIND_USER, false, 1);
29 void Component::set(RsDataType dt, RsDataKind dk, bool norm, uint32_t vecSize) { function in class:Component
260 set(mType, mKind, mNormalized, mVectorSize);
H A DrsMatrix4x4.h32 void set(uint32_t x, uint32_t y, float v) { function in struct:android::renderscript::Matrix4x4
/frameworks/base/core/java/com/android/internal/view/
H A DWindowManagerPolicyThread.java29 public static void set(Thread thread, Looper looper) { method in class:WindowManagerPolicyThread
/frameworks/base/test-runner/src/android/test/
H A DClassPathPackageInfo.java54 Set<Class<?>> set = Sets.newHashSet();
55 addTopLevelClassesTo(set);
56 return set;
59 private void addTopLevelClassesTo(Set<Class<?>> set) { argument
60 set.addAll(topLevelClasses);
62 info.addTopLevelClassesTo(set);
/frameworks/base/tools/layoutlib/bridge/src/android/content/res/
H A DResources_Theme_Delegate.java54 AttributeSet set, int[] attrs, int defStyleAttr, int defStyleRes) {
56 set, attrs, defStyleAttr, defStyleRes);
52 obtainStyledAttributes( Resources thisResources, Theme thisTheme, AttributeSet set, int[] attrs, int defStyleAttr, int defStyleRes) argument
/frameworks/ml/bordeaux/learning/predictor_histogram/java/android/bordeaux/learning/
H A DpredictorHist.java54 public void set(HashMap<String, Integer> hist) { method in class:predictorHist
/frameworks/av/media/mtp/
H A DMtpStringBuffer.cpp37 set(src);
44 set(src);
58 void MtpStringBuffer::set(const char* src) { function in class:android::MtpStringBuffer
98 void MtpStringBuffer::set(const uint16_t* src) { function in class:android::MtpStringBuffer
/frameworks/base/core/java/android/text/
H A DTextPaint.java60 public void set(TextPaint tp) { method in class:TextPaint
61 super.set(tp);
/frameworks/base/libs/hwui/
H A DVertex.h29 static inline void set(Vertex* vertex, float x, float y) { function in struct:android::uirenderer::Vertex
42 static inline void set(TextureVertex* vertex, float x, float y, float u, float v) { function in struct:android::uirenderer::TextureVertex
61 static inline void set(AlphaVertex* vertex, float x, float y, float alpha) { function in struct:android::uirenderer::AlphaVertex
62 Vertex::set(vertex, x, y);
78 static inline void set(AAVertex* vertex, float x, float y, float width, float length) { function in struct:android::uirenderer::AAVertex
79 Vertex::set(vertex, x, y);
/frameworks/base/services/java/com/android/server/pm/
H A DPreferredActivity.java40 PreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity) { argument
42 mPref = new PreferredComponent(this, match, set, activity);
/frameworks/base/voip/jni/rtp/
H A DGsmCodec.cpp42 int set(int sampleRate, const char *fmtp) { function in class:__anon1176::GsmCodec

Completed in 629 milliseconds

123456