Searched refs:mode (Results 226 - 250 of 609) sorted by relevance

1234567891011>>

/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardSecurityViewFlipper.java247 final int mode;
251 mode = MeasureSpec.AT_MOST;
255 mode = MeasureSpec.EXACTLY;
259 mode = MeasureSpec.EXACTLY;
263 return MeasureSpec.makeMeasureSpec(size, mode);
/frameworks/support/v4/java/android/support/v4/view/
H A DViewCompat.java114 * Live region mode specifying that accessibility services should not
116 * region mode for most views.
123 * Live region mode specifying that accessibility services should announce
131 * Live region mode specifying that accessibility services should interrupt
155 * is useful to apply a specific color filter and/or blending mode and/or
180 * blending mode and/or translucency to a view and all its children.</p>
261 public void setOverScrollMode(View v, int mode); argument
274 public void setImportantForAccessibility(View view, int mode); argument
293 public void setAccessibilityLiveRegion(View view, int mode); argument
358 public void setOverScrollMode(View v, int mode) { argument
404 setImportantForAccessibility(View view, int mode) argument
484 setAccessibilityLiveRegion(View view, int mode) argument
770 setOverScrollMode(View v, int mode) argument
1034 setImportantForAccessibility(View view, int mode) argument
1137 setAccessibilityLiveRegion(View view, int mode) argument
1142 setImportantForAccessibility(View view, int mode) argument
1523 setImportantForAccessibility(View view, @ImportantForAccessibility int mode) argument
1861 setAccessibilityLiveRegion(View view, @AccessibilityLiveRegion int mode) argument
[all...]
/frameworks/base/core/java/android/app/backup/
H A DBackupAgent.java489 * with the data from the file descriptor, then sets the file's access mode and
500 * @param mode The access mode to be assigned to the destination after its data is
507 File destination, int type, long mode, long mtime)
509 FullBackup.restoreFile(data, size, type, mode, mtime, destination);
518 int type, String domain, String path, long mode, long mtime)
523 + " domain=" + domain + " relpath=" + path + " mode=" + mode
543 mode = -1; // < 0 is a token to skip attempting a chmod()
560 onRestoreFile(data, size, outFile, type, mode, mtim
506 onRestoreFile(ParcelFileDescriptor data, long size, File destination, int type, long mode, long mtime) argument
517 onRestoreFile(ParcelFileDescriptor data, long size, int type, String domain, String path, long mode, long mtime) argument
717 doRestoreFile(ParcelFileDescriptor data, long size, int type, String domain, String path, long mode, long mtime, int token, IBackupManager callbackBinder) argument
[all...]
/frameworks/native/opengl/libagl/
H A Dstate.cpp254 void glCullFace(GLenum mode) argument
257 switch (mode) {
265 c->cull.cullFace = mode;
268 void glFrontFace(GLenum mode) argument
271 switch (mode) {
279 c->cull.frontFace = mode;
282 void glHint(GLenum target, GLenum mode) argument
292 GGL_POINT_SMOOTH_NICE, mode==GL_NICEST);
295 c->perspective = (mode == GL_NICEST) ? 1 : 0;
/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES10.spec21 void glCullFace ( GLenum mode )
29 void glDrawArrays ( GLenum mode, GLint first, GLsizei count )
30 void glDrawElements ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices )
39 void glFrontFace ( GLenum mode )
46 void glHint ( GLenum target, GLenum mode )
65 void glMatrixMode ( GLenum mode )
90 void glShadeModel ( GLenum mode )
H A DGLES20.spec9 void glBlendEquation ( GLenum mode )
28 void glCullFace ( GLenum mode )
41 void glDrawArrays ( GLenum mode, GLint first, GLsizei count )
42 void glDrawElements ( GLenum mode, GLsizei count, GLenum type, GLint offset )
43 void glDrawElements ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices )
50 void glFrontFace ( GLenum mode )
82 void glHint ( GLenum target, GLenum mode )
/frameworks/av/media/ndk/
H A DNdkMediaCodec.cpp365 cryptoinfo_mode_t mode; member in struct:AMediaCodecCryptoInfo
392 (CryptoPlugin::Mode) crypto->mode,
410 cryptoinfo_mode_t mode,
424 ret->mode = mode;
477 return ci->mode;
406 AMediaCodecCryptoInfo_new( int numsubsamples, uint8_t key[16], uint8_t iv[16], cryptoinfo_mode_t mode, size_t *clearbytes, size_t *encryptedbytes) argument
/frameworks/base/core/java/android/os/
H A DFileUtils.java67 * Set owner and mode of of given {@link File}.
69 * @param mode to apply through {@code chmod}
74 public static int setPermissions(File path, int mode, int uid, int gid) { argument
75 return setPermissions(path.getAbsolutePath(), mode, uid, gid);
79 * Set owner and mode of of given path.
81 * @param mode to apply through {@code chmod}
86 public static int setPermissions(String path, int mode, int uid, int gid) { argument
88 Os.chmod(path, mode);
107 * Set owner and mode of of given {@link FileDescriptor}.
109 * @param mode t
114 setPermissions(FileDescriptor fd, int mode, int uid, int gid) argument
[all...]
/frameworks/base/core/java/android/transition/
H A DVisibility.java88 int mode = a.getInt(R.styleable.VisibilityTransition_transitionVisibilityMode, 0);
90 if (mode != 0) {
91 setMode(mode);
97 * on <code>mode</code>.
99 * @param mode The behavior supported by this transition, a combination of
103 public void setMode(int mode) { argument
104 if ((mode & ~(MODE_IN | MODE_OUT)) != 0) {
107 mMode = mode;
/frameworks/opt/net/ims/src/java/com/android/ims/internal/
H A DImsCallSession.java334 * @param mode mode of the USSD message (REQUEST / NOTIFY)
338 int mode, String ussdMessage) {
371 * Called when TTY mode of remote party changed
374 * @param mode TTY mode of remote party
377 int mode) {
765 * Updates the current call's properties (ex. call mode change: video upgrade / downgrade).
1162 int mode, String ussdMessage) {
1164 mListener.callSessionUssdMessageReceived(ImsCallSession.this, mode, ussdMessag
337 callSessionUssdMessageReceived(ImsCallSession session, int mode, String ussdMessage) argument
376 callSessionTtyModeReceived(ImsCallSession session, int mode) argument
1161 callSessionUssdMessageReceived(IImsCallSession session, int mode, String ussdMessage) argument
1195 callSessionTtyModeReceived(IImsCallSession session, int mode) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DTintManager.java46 * using the default mode.
68 * using the default mode.
78 * using the {@link android.graphics.PorterDuff.Mode#MULTIPLY} mode.
390 PorterDuffColorFilter get(int color, PorterDuff.Mode mode) { argument
391 return get(generateCacheKey(color, mode));
394 PorterDuffColorFilter put(int color, PorterDuff.Mode mode, PorterDuffColorFilter filter) { argument
395 return put(generateCacheKey(color, mode), filter);
398 private static int generateCacheKey(int color, PorterDuff.Mode mode) { argument
401 hashCode = 31 * hashCode + mode.hashCode();
/frameworks/base/libs/hwui/
H A DOpenGLRenderer.cpp73 SkXfermode::Mode mode; member in struct:android::uirenderer::Blender
99 // this array's SrcOver blending mode is actually DstOver. You can refer to
1283 // the Clear blending mode
1498 // mode is enabled
1652 SkXfermode::Mode mode; local
1653 if (filter->asColorMode(NULL, &mode)) {
1655 mDescription.colorMode = mode;
1661 void OpenGLRenderer::accountForClear(SkXfermode::Mode mode) { argument
1662 if (mColorSet && mode == SkXfermode::kClear_Mode) {
1670 SkXfermode::Mode mode local
1714 setupDrawModelView(ModelViewMode mode, bool offset, float left, float top, float right, float bottom, bool ignoreTransform) argument
1769 SkXfermode::Mode mode; local
2116 SkXfermode::Mode mode; local
2370 const VertexBuffer::Mode mode = vertexBuffer.getMode(); local
2454 drawColor(int color, SkXfermode::Mode mode) argument
2695 SkXfermode::Mode mode; local
2775 SkXfermode::Mode mode; local
2851 SkXfermode::Mode mode; local
3053 SkXfermode::Mode mode; local
3304 SkXfermode::Mode mode; local
3331 SkXfermode::Mode mode; local
3358 SkXfermode::Mode mode; local
3381 chooseBlending(bool blend, SkXfermode::Mode mode, ProgramDescription& description, bool swapSrcDst) argument
[all...]
H A DVertexBuffer.h141 void setMode(Mode mode) { mMode = mode; } argument
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/common/
H A DFwdLockGlue.c46 * @param[in] mode The access mode to use for the directories being created.
50 static int FwdLockGlue_CreateDirectories(const char *path, mode_t mode) { argument
61 if (mkdir(partialPath, mode) != 0 && errno != EEXIST) {
/frameworks/av/media/libstagefright/
H A DJPEGSource.cpp115 ReadOptions::SeekMode mode; local
116 if (options != NULL && options->getSeekTo(&seekTimeUs, &mode)) {
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dg_pitch.cpp81 #include "mode.h"
115 mode = AMR mode (enum Mode)
164 enum Mode mode, // i : AMR mode
266 if (sub(mode, MR122) == 0)
299 enum Mode mode, /* i : AMR mode */
457 if (mode == MR122)
298 G_pitch( enum Mode mode, Word16 xn[], Word16 y1[], Word16 g_coeff[], Word16 L_subfr, Flag *pOverflow ) argument
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/include/
H A Dmp4dec_api.h150 OSCL_IMPORT_REF Bool PVInitVideoDecoder(VideoDecControls *decCtrl, uint8 *volbuf[], int32 *volbuf_size, int nLayers, int width, int height, MP4DecodingMode mode);
163 OSCL_IMPORT_REF void PVSetPostProcType(VideoDecControls *decCtrl, int mode);
/frameworks/base/core/java/android/content/
H A DIContentProvider.java50 String callingPkg, Uri url, String mode, ICancellationSignal signal,
54 String callingPkg, Uri url, String mode, ICancellationSignal signal)
49 openFile( String callingPkg, Uri url, String mode, ICancellationSignal signal, IBinder callerToken) argument
53 openAssetFile( String callingPkg, Uri url, String mode, ICancellationSignal signal) argument
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DLegacyRequestMapper.java221 // control.aeMode, flash.mode
313 // control.sceneMode, control.mode
315 // TODO: Map FACE_PRIORITY scene mode to face detection.
331 Log.w(TAG, "Skipping unknown requested scene mode: " + sceneMode);
340 Log.w(TAG, "Control mode " + controlMode +
359 Log.w(TAG, "Skipping unknown requested effect mode: " + effectMode);
442 // noiseReduction.mode
444 int mode = ParamsUtils.getOrDefault(request,
448 if (mode != NOISE_REDUCTION_MODE_FAST) {
450 "noiseReduction.mode
608 convertAeAntiBandingModeToLegacy(int mode) argument
635 convertAwbModeToLegacy(int mode) argument
[all...]
/frameworks/base/media/jni/
H A Dandroid_media_MediaCodec.h76 CryptoPlugin::Mode mode,
108 void setVideoScalingMode(int mode);
/frameworks/base/native/android/
H A Dasset_manager.cpp87 AAsset* AAssetManager_open(AAssetManager* amgr, const char* filename, int mode) argument
90 switch (mode) {
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DSystemAudioAction.java49 // The target audio status of the action, whether to enable the system audio mode or not.
61 * @param targetStatus Whether to enable the system audio mode or not
135 protected void setSystemAudioMode(boolean mode) { argument
136 tv().setSystemAudioMode(mode, true);
149 HdmiLogger.debug("Failed to start system audio mode request.");
164 HdmiLogger.debug("Unexpected system audio mode request:" + receivedStatus);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DXfermodeActivity.java127 private void drawRects(Canvas canvas, PorterDuff.Mode mode) { argument
132 mRedPaint.setXfermode(new PorterDuffXfermode(mode));
/frameworks/compile/libbcc/lib/Core/
H A DSource.cpp146 llvm::Linker::LinkerMode mode = local
151 mode, &error) != 0) {
/frameworks/native/services/surfaceflinger/
H A DDisplayDevice.h152 * Display power mode management.
155 void setPowerMode(int mode);
162 void setActiveConfig(int mode);
225 // Current power mode

Completed in 4531 milliseconds

1234567891011>>