Searched defs:set (Results 101 - 125 of 260) sorted by relevance

1234567891011

/frameworks/base/rs/java/android/renderscript/
H A DShort3.java329 * set vector negate
371 * set vector value by Short3
375 public void set(Short3 a) { method in class:Short3
382 * set the vector field value by Short
423 * set the vector field value by index
H A DShort4.java352 * set vector negate
396 * set vector value by Short4
400 public void set(Short4 a) { method in class:Short4
408 * set the vector field value by Short
453 * set the vector field value by index
/frameworks/base/services/core/java/com/android/server/pm/
H A DPreferredComponent.java36 private static final String TAG_SET = "set";
40 private static final String ATTR_SET = "set"; // number
60 public PreferredComponent(Callbacks callbacks, int match, ComponentName[] set, argument
68 if (set != null) {
69 final int N = set.length;
74 ComponentName cn = set[i];
133 mParseError = "No name in set tag in preferred activity "
138 mParseError = "Too many set tags in preferred activity "
145 mParseError = "Bad set name " + name + " in preferred activity "
164 mParseError = "Not enough set tag
[all...]
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
H A DArrayMapTests.java150 Log.e("test", "Entry set hash codes differ: map=0x"
157 Log.e("test", "Failed calling equals on map entry set against array set");
162 Log.e("test", "Failed calling equals on array entry set against map set");
167 Log.e("test", "Key set hash codes differ: map=0x"
174 Log.e("test", "Failed calling equals on map key set against array set");
179 Log.e("test", "Failed calling equals on array key set against map set");
211 compareSets(HashSet set, ArraySet array) argument
312 dump(Set set, ArraySet array) argument
[all...]
/frameworks/base/tests/net/java/com/android/internal/net/
H A DNetworkStatsFactoryTest.java229 private static void assertStatsEntry(NetworkStats stats, String iface, int uid, int set, argument
231 final int i = stats.findIndex(iface, uid, set, tag, METERED_NO, ROAMING_NO);
233 fail(String.format("no NetworkStats for (iface: %s, uid: %d, set: %d, tag: %d)",
234 iface, uid, set, tag));
241 private static void assertStatsEntry(NetworkStats stats, String iface, int uid, int set, argument
243 final int i = stats.findIndex(iface, uid, set, tag, METERED_NO, ROAMING_NO);
245 fail(String.format("no NetworkStats for (iface: %s, uid: %d, set: %d, tag: %d)",
246 iface, uid, set, tag));
/frameworks/native/opengl/tests/testViewport/src/com/android/test/
H A DTestView.java170 public void set(int i, int j, float x, float y, float z) { method in class:TestView.Grid
255 mGrid.set(i,j, x, y, z);
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DProgramCache.h77 inline Key& set(key_t mask, key_t value) { function in class:android::ProgramCache::Key
/frameworks/opt/net/voip/src/jni/rtp/
H A DAmrCodec.cpp53 int set(int sampleRate, const char *fmtp);
67 int AmrCodec::set(int sampleRate, const char *fmtp) function in class:__anon1949::AmrCodec
75 // Handle mode-set and octet-align.
76 const char *modes = strcasestr(fmtp, "mode-set=");
211 int set(int sampleRate, const char */* fmtp */) { function in class:__anon1949::GsmEfrCodec
/frameworks/rs/
H A DrsObjectBase.h123 set(ref);
132 void set(T *ref) { function in class:android::renderscript::ObjectBaseRef
142 void set(const ObjectBaseRef &ref) { function in class:android::renderscript::ObjectBaseRef
143 set(ref.mRef);
/frameworks/rs/support/java/src/android/support/v8/renderscript/
H A DMatrix3f.java41 * @param dataArray values to set the matrix to, must be 9
74 * @param x column of the value to set
75 * @param y row of the value to set
77 public void set(int x, int y, float v) { method in class:Matrix3f
221 set(i,0, ri0);
222 set(i,1, ri1);
223 set(i,2, ri2);
/frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
H A DQuaternion.java26 public void set(double w, double x, double y, double z) { method in class:Quaternion
53 public void set(double[] v1, double[] v2) { method in class:Quaternion
58 set(angle, axis);
73 public void set(double angle, double[] axis) { method in class:Quaternion
/frameworks/support/compat/java/android/support/v4/content/res/
H A DTypedArrayUtils.java182 Resources res, Resources.Theme theme, AttributeSet set, int[] attrs) {
184 return res.obtainAttributes(set, attrs);
186 return theme.obtainStyledAttributes(set, attrs, 0, 0);
181 obtainAttributes( Resources res, Resources.Theme theme, AttributeSet set, int[] attrs) argument
/frameworks/support/v17/leanback/src/android/support/v17/leanback/system/
H A DSettings.java92 boolean getOrSetBoolean(String key, boolean set, boolean value) { argument
94 return set ? (mPreferStaticShadows = value) : mPreferStaticShadows;
/frameworks/av/include/media/stagefright/foundation/
H A DAData.h47 * data.set(5);
52 * data.set(6.0f);
61 * objdata.set(buf);
69 * objdata.set(obj); // storing as sp<RefBase>
437 * Container that can store an arbitrary object of a set of specified types.
763 bool set(const T &data) { function in struct:android::AData::Custom
794 bool set(T &&data) { function in struct:android::AData::Custom
/frameworks/av/media/libstagefright/foundation/include/foundation/
H A DAData.h47 * data.set(5);
52 * data.set(6.0f);
61 * objdata.set(buf);
69 * objdata.set(obj); // storing as sp<RefBase>
437 * Container that can store an arbitrary object of a set of specified types.
763 bool set(const T &data) { function in struct:android::AData::Custom
794 bool set(T &&data) { function in struct:android::AData::Custom
/frameworks/av/media/libstagefright/foundation/tests/
H A DAData_test.cpp175 data.set(5);
180 data.set(6.0f);
189 objdata.set(buf);
197 objdata.set(obj); // storing as sp<RefBase>
241 EXPECT_TRUE(u.set<int>(4));
253 EXPECT_TRUE(u.set<int>(5));
254 EXPECT_TRUE(u.set<int>(6));
258 EXPECT_TRUE(u.set<const char *>("hello"));
269 EXPECT_TRUE(u.set<const char *>("world"));
270 EXPECT_TRUE(u.set<cons
280 void set(std::unique_ptr<int> &dst, std::unique_ptr<int> &&src) { function
284 void set(std::unique_ptr<int> &dst, std::unique_ptr<int> &src) { function
[all...]
/frameworks/av/media/libstagefright/include/foundation/
H A DAData.h47 * data.set(5);
52 * data.set(6.0f);
61 * objdata.set(buf);
69 * objdata.set(obj); // storing as sp<RefBase>
437 * Container that can store an arbitrary object of a set of specified types.
763 bool set(const T &data) { function in struct:android::AData::Custom
794 bool set(T &&data) { function in struct:android::AData::Custom
/frameworks/base/core/java/android/os/
H A DWorkSource.java181 public void set(WorkSource other) { method in class:WorkSource
209 public void set(int uid) { method in class:WorkSource
217 public void set(int uid, String name) { method in class:WorkSource
429 private boolean updateLocked(WorkSource other, boolean set, boolean returnNewbs) { argument
431 return updateUidsLocked(other, set, returnNewbs);
441 return updateUidsAndNamesLocked(other, set, returnNewbs);
453 private boolean updateUidsLocked(WorkSource other, boolean set, boolean returnNewbs) { argument
460 if (DEBUG) Log.d(TAG, "Update " + this + " with " + other + " set=" + set
490 if (!set) {
545 updateUidsAndNamesLocked(WorkSource other, boolean set, boolean returnNewbs) argument
[all...]
/frameworks/base/core/java/android/util/
H A DArraySet.java28 * ArraySet is a generic set data structure that is designed to be more memory efficient than a
32 * entry in the set (instead of a pair for a mapping).
42 * you have no control over this shrinking -- if you set a capacity and then remove an
44 * explicit call to set the capacity should turn off this aggressive shrinking behavior.</p>
277 public ArraySet(ArraySet<E> set) { argument
279 if (set != null) {
280 addAll(set);
285 public ArraySet(Collection<E> set) { argument
287 if (set != null) {
288 addAll(set);
[all...]
/frameworks/base/core/java/com/android/internal/transition/
H A DEpicenterTranslateClipReveal.java308 public void set(View object, State value) { method in class:EpicenterTranslateClipReveal.StateProperty
/frameworks/base/core/java/com/android/internal/widget/
H A DChildHelper.java82 * @param hidden If set to true, this item will be invisible from regular methods.
94 * @param hidden If set to true, this item will be invisible from regular methods.
225 * @param hidden If set to true, this item will be invisible to the regular methods.
335 mBucket.set(offset);
405 void set(int index) { method in class:ChildHelper.Bucket
408 mNext.set(index - BITS_PER_WORD);
458 set(index);
484 set(BITS_PER_WORD - 1);
/frameworks/base/core/jni/android/graphics/
H A DGraphicBuffer.cpp64 jmethodID set; member in struct:android::__anon1037
171 rect.set(Rect(buffer->getWidth(), buffer->getHeight()));
204 INVOKEV(dirtyRect, gRectClassInfo.set,
312 gRectClassInfo.set = GetMethodIDOrDie(env, clazz, "set", "(IIII)V");
/frameworks/base/core/jni/
H A Dandroid_net_TrafficStats.cpp129 uint32_t idx, cur_uid, set; local
136 &idx, iface, &tag, &cur_uid, &set, &rxBytes, &rxPackets,
H A Dcom_android_internal_net_NetworkStatsFactory.cpp44 jfieldID set; member in struct:android::__anon1150
58 int32_t set; member in struct:android::stats_line
211 &s.uid, &s.set, &s.rxBytes, &s.rxPackets,
237 ScopedIntArrayRW set(env, get_int_array(env, stats,
238 gNetworkStatsClassInfo.set, size, grow));
239 if (set.get() == NULL) return -1;
270 set[i] = lines[i].set;
284 env->SetObjectField(stats, gNetworkStatsClassInfo.set, set
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DRect.java270 public void set(int left, int top, int right, int bottom) { method in class:Rect
283 public void set(Rect src) { method in class:Rect
415 * rectangle, return true and set this rectangle to that intersection,
428 * (and this rectangle is then set to that intersection) else
444 * If the specified rectangle intersects this rectangle, return true and set
451 * (and this rectangle is then set to that intersection) else
460 * If rectangles a and b intersect, return true and set this rectangle to
467 * @return true iff the two specified rectangles intersect. If they do, set
518 * it is set to the specified rectangle.
544 * it is set t
[all...]

Completed in 838 milliseconds

1234567891011