Searched refs:set (Results 51 - 75 of 1704) sorted by relevance

1234567891011>>

/frameworks/base/services/backup/java/com/android/server/backup/restore/
H A DRestoreDeleteObserver.java44 mDone.set(false);
65 mDone.set(true);
H A DRestoreEngine.java42 mRunning.set(stillRunning);
64 mResult.set(result);
/frameworks/compile/slang/
H A Dslang_diagnostic_buffer.h20 #include <set>
39 std::set<std::string> mIncludedMessages;
/frameworks/hardware/interfaces/sensorservice/libsensorndkbridge/
H A DALooper.h25 #include <set>
43 std::set<ASensorEventQueue *> mReadyQueues;
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DSystemPropertyService.java27 public void set(String key, String val) { method in class:SystemPropertyService
28 android.os.SystemProperties.set(key, val);
H A DPropertyService.java38 void set(String key, String val); method in interface:PropertyService
/frameworks/support/design/lollipop/android/support/design/widget/
H A DFloatingActionButtonLollipop.java88 // Animations produce NPE in version 21. Bluntly set the values instead (matching the
105 AnimatorSet set = new AnimatorSet();
106 set.play(ObjectAnimator.ofFloat(mView, "elevation", elevation).setDuration(0))
109 set.setInterpolator(ANIM_INTERPOLATOR);
110 stateListAnimator.addState(PRESSED_ENABLED_STATE_SET, set);
113 set = new AnimatorSet();
114 set.play(ObjectAnimator.ofFloat(mView, "elevation", elevation).setDuration(0))
117 set.setInterpolator(ANIM_INTERPOLATOR);
118 stateListAnimator.addState(FOCUSED_ENABLED_STATE_SET, set);
121 set
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/
H A Dwin_asm.bat2 set ASMFLAGS= -checkreglist -CPU ARM1136 -PreDefine "H264DEC_WINASM SETL {TRUE}"
3 set ASM="D:\Program Files\Microsoft Visual Studio 8\VC\ce\bin\x86_arm\armasm"
/frameworks/base/core/java/android/net/
H A DINetworkStatsSession.aidl37 NetworkStatsHistory getHistoryForUid(in NetworkTemplate template, int uid, int set, int tag, int fields);
39 NetworkStatsHistory getHistoryIntervalForUid(in NetworkTemplate template, int uid, int set, int tag, int fields, long start, long end);
/frameworks/base/core/java/android/util/
H A DFloatProperty.java34 * A type-specific variant of {@link #set(Object, Float)} that is faster when dealing
40 final public void set(T object, Float value) { method in class:FloatProperty
H A DIntProperty.java34 * A type-specific variant of {@link #set(Object, Integer)} that is faster when dealing
40 final public void set(T object, Integer value) { method in class:IntProperty
/frameworks/base/core/java/android/view/animation/
H A DClipRectAnimation.java42 mFromRect.set(fromClip);
43 mToRect.set(toClip);
51 mFromRect.set(fromL, fromT, fromR, fromB);
52 mToRect.set(toL, toT, toR, toB);
/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/data-binding/extensions/library/src/main/java/android/databinding/
H A DObservableField.java63 public void set(T value) { method in class:ObservableField
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
H A DStaticTestsVo.java21 ourStaticObservable.set("observable static");
/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioCodec.h29 virtual int set(int sampleRate, const char *fmtp) = 0;
/frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/widget/
H A DTitleViewAdapterTest.java41 public CustomTitle(Context context, AttributeSet set) { argument
42 this(context, set, 0);
45 public CustomTitle(Context context, AttributeSet set, int s) { argument
46 super(context, set, s);
/frameworks/native/opengl/libs/EGL/
H A DBlobCache_test.cpp57 mBC->set("abcd", 4, "efgh", 4);
67 mBC->set("ab", 2, "cd", 2);
68 mBC->set("ef", 2, "gh", 2);
79 mBC->set("abcd", 4, "efgh", 4);
91 mBC->set("abcd", 4, "efgh", 4);
99 mBC->set("abcd", 4, "efgh", 4);
105 mBC->set("abcd", 4, "efgh", 4);
106 mBC->set("abcd", 4, "ijkl", 4);
116 mBC->set("abcd", 4, "efgh", 4);
117 mBC->set("abc
[all...]
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/
H A DWifiAssociationTest.java93 config.allowedGroupCiphers.set(GroupCipher.WEP40);
100 config.allowedGroupCiphers.set(GroupCipher.WEP104);
105 config.allowedAuthAlgorithms.set(AuthAlgorithm.OPEN);
106 config.allowedProtocols.set(Protocol.WPA);
107 config.allowedPairwiseCiphers.set(PairwiseCipher.TKIP);
108 config.allowedGroupCiphers.set(GroupCipher.TKIP);
113 config.allowedAuthAlgorithms.set(AuthAlgorithm.OPEN);
114 config.allowedProtocols.set(Protocol.RSN);
115 config.allowedPairwiseCiphers.set(PairwiseCipher.CCMP);
116 config.allowedGroupCiphers.set(GroupCiphe
[all...]
/frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
H A DObservableFieldTest.java47 mObj.bField.set(true);
58 mObj.tField.set((byte) 1);
69 mObj.sField.set((short) 1);
80 mObj.cField.set('A');
91 mObj.iField.set(1);
102 mObj.lField.set(1);
113 mObj.fField.set(1);
124 mObj.dField.set(1);
135 mObj.oField.set("World");
149 mObj.pField.set(p
[all...]
H A DBindableObservablesTest.java45 model.publicObservable.set(40);
50 model.publicObservable.set(20);
58 model.getFieldObservable().set("abc");
63 model.getFieldObservable().set("def");
72 model.getMethodObservable().set(30);
77 model.getMethodObservable().set(15);
86 model.publicObservable.set(40);
106 model.getFieldObservable().set("abc");
126 model.getMethodObservable().set(30);
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
H A DSurfaceTextureTarget.java169 // may not set the mSurfaceTexture again on the filter. In some cases, the app
283 mTargetQuad.p0.set(0f, 0.0f);
284 mTargetQuad.p1.set(1f, 0.0f);
285 mTargetQuad.p2.set(0f, 1.0f);
286 mTargetQuad.p3.set(1f, 1.0f);
292 mTargetQuad.p0.set(0.5f - 0.5f / relativeAspectRatio, 0.0f);
293 mTargetQuad.p1.set(0.5f + 0.5f / relativeAspectRatio, 0.0f);
294 mTargetQuad.p2.set(0.5f - 0.5f / relativeAspectRatio, 1.0f);
295 mTargetQuad.p3.set(0.5f + 0.5f / relativeAspectRatio, 1.0f);
299 mTargetQuad.p0.set(0.
[all...]
/frameworks/support/design/src/android/support/design/widget/
H A DViewGroupUtils.java43 sMatrix.set(m);
53 sRectF.set(rectF);
55 rectF.set(rect);
57 rect.set((int) (rectF.left + 0.5f), (int) (rectF.top + 0.5f),
66 * @param out rect to set to the bounds of the descendant view
69 out.set(0, 0, descendant.getWidth(), descendant.getHeight());
/frameworks/base/telephony/java/android/telephony/
H A DMbmsStreamingSession.java72 sIsInitialized.set(false);
129 sIsInitialized.set(false);
179 mService.set(null);
180 sIsInitialized.set(false);
212 mService.set(null);
213 sIsInitialized.set(false);
260 mService.set(null);
261 sIsInitialized.set(false);
290 sIsInitialized.set(false);
297 sIsInitialized.set(fals
[all...]
/frameworks/base/media/jni/
H A Dandroid_media_PlaybackParams.h40 jfieldID set; member in struct:android::PlaybackParams::fields_t
63 set = env->GetFieldID(clazz, "mSet", "I");
90 int set = env->GetIntField(params, fields.set); local
92 speedSet = set & fields.set_speed;
93 pitchSet = set & fields.set_pitch;
94 audioFallbackModeSet = set & fields.set_audio_fallback_mode;
95 audioStretchModeSet = set & fields.set_audio_stretch_mode;
108 params, fields.set,

Completed in 1101 milliseconds

1234567891011>>