Searched refs:mode (Results 276 - 300 of 457) sorted by relevance

<<111213141516171819

/frameworks/base/libs/hwui/
H A DCaches.h120 * @param mode Indicates how much of the cache should be flushed
122 void flush(FlushMode mode);
131 * Indicates whether the renderer is in debug mode.
132 * This debug mode provides limited information to app developers.
/frameworks/base/libs/hwui/font/
H A DFont.h85 int numGlyphs, int x, int y, RenderMode mode, uint8_t *bitmap,
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
H A DKeyguardUpdateMonitor.java410 protected void handleRingerModeChange(int mode) { argument
411 if (DEBUG) Log.d(TAG, "handleRingerModeChange(" + mode + ")");
412 mRingMode = mode;
414 mCallbacks.get(i).onRingerModeChanged(mode);
H A DPatternUnlockScreen.java115 private void updateFooter(FooterMode mode) { argument
116 switch (mode) {
118 if (DEBUG) Log.d(TAG, "mode normal");
122 if (DEBUG) Log.d(TAG, "mode ForgotLockPattern");
126 if (DEBUG) Log.d(TAG, "mode VerifyUnlocked");
166 Log.d(TAG, "portrait mode");
169 Log.d(TAG, "landscape mode");
190 // stealth mode will be the same for the life of this screen
193 // vibrate mode will be the same for the life of this screen
196 // assume normal footer mode fo
[all...]
/frameworks/base/services/java/com/android/server/power/
H A DElectronBeam.java122 * @param mode The desired mode for the upcoming animation.
125 public boolean prepare(int mode) { argument
127 Slog.d(TAG, "prepare: mode=" + mode);
130 mMode = mode;
161 if (mode == MODE_COOL_DOWN) {
/frameworks/compile/mclinker/include/mcld/LD/
H A DArchive.h49 char mode[8]; ///< file mode in ASCII octal member in struct:mcld::Archive::MemberHeader
/frameworks/ex/photoviewer/sample/src/com/example/photoviewersample/
H A DSampleProvider.java151 public AssetFileDescriptor openAssetFile(Uri uri, String mode) throws FileNotFoundException { argument
/frameworks/native/include/gui/
H A DSurfaceTextureClient.h115 virtual int setScalingMode(int mode);
173 // mScalingMode is the scaling mode that will be used for the next
/frameworks/opt/photoviewer/sample/src/com/example/photoviewersample/
H A DSampleProvider.java151 public AssetFileDescriptor openAssetFile(Uri uri, String mode) throws FileNotFoundException { argument
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
H A DMediaVisualizerTest.java191 //Test case 1.2: check scaling mode
201 int mode = mVisualizer.getScalingMode();
203 mode, Visualizer.SCALING_MODE_AS_PLAYED);
208 mode = mVisualizer.getScalingMode();
210 mode, Visualizer.SCALING_MODE_NORMALIZED);
226 //Test case 2.0: test capture in polling mode
437 //Test case 2.2: test capture in polling mode with volume scaling
441 // SCALING_MODE_AS_PLAYED mode decreases when lowering the volume
468 // verify we successfully set the Visualizer in SCALING_MODE_AS_PLAYED mode
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/
H A DVideoEditorVideoEncoder.cpp1218 M4ENCODER_GlobalInterface** pEncoderInterface, M4ENCODER_OpenMode mode){
1226 pEncoderInterface, mode);
1284 M4ENCODER_GlobalInterface** pEncoderInterface, M4ENCODER_OpenMode mode){
1286 pEncoderInterface, mode);
1290 M4ENCODER_GlobalInterface** pEncoderInterface, M4ENCODER_OpenMode mode){
1292 pEncoderInterface, mode);
1296 M4ENCODER_GlobalInterface** pEncoderInterface, M4ENCODER_OpenMode mode){
1298 pEncoderInterface, mode);
1216 VideoEditorVideoEncoder_getInterface(M4ENCODER_Format format, M4ENCODER_Format* pFormat, M4ENCODER_GlobalInterface** pEncoderInterface, M4ENCODER_OpenMode mode) argument
1283 VideoEditorVideoEncoder_getInterface_H263(M4ENCODER_Format* pFormat, M4ENCODER_GlobalInterface** pEncoderInterface, M4ENCODER_OpenMode mode) argument
1289 VideoEditorVideoEncoder_getInterface_MPEG4(M4ENCODER_Format* pFormat, M4ENCODER_GlobalInterface** pEncoderInterface, M4ENCODER_OpenMode mode) argument
1295 VideoEditorVideoEncoder_getInterface_H264(M4ENCODER_Format* pFormat, M4ENCODER_GlobalInterface** pEncoderInterface, M4ENCODER_OpenMode mode) argument
/frameworks/av/media/libstagefright/
H A DAACExtractor.cpp291 ReadOptions::SeekMode mode; local
292 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
H A DFragmentedMP4Extractor.cpp264 ReadOptions::SeekMode mode; local
265 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
/frameworks/av/media/libstagefright/codecs/aacenc/
H A DAACEncoder.cpp222 ReadOptions::SeekMode mode; local
223 CHECK(options == NULL || !options->getSeekTo(&seekTimeUs, &mode));
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_stereo_proc.cpp95 In ms_stereo mode the values of the normalized middle/side channels
272 int32 i_stereo = (info->mode == MPG_MD_JOINT_STEREO) &&
275 int32 ms_stereo = (info->mode == MPG_MD_JOINT_STEREO) &&
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteSession.java73 * specifying the desired transaction mode. Once an explicit transaction has begun,
173 * Transaction mode: Deferred.
189 * Corresponds to the SQLite <code>BEGIN DEFERRED</code> transaction mode.
195 * Transaction mode: Immediate.
203 * Corresponds to the SQLite <code>BEGIN IMMEDIATE</code> transaction mode.
209 * Transaction mode: Exclusive.
217 * Corresponds to the SQLite <code>BEGIN EXCLUSIVE</code> transaction mode.
277 * @param transactionMode The transaction mode. One of: {@link #TRANSACTION_MODE_DEFERRED},
935 private Transaction obtainTransaction(int mode, SQLiteTransactionListener listener) { argument
945 transaction.mMode = mode;
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarContainer.java32 * This class acts as a container for the action bar view and action mode context views.
254 // No starting an action mode for an action bar child! (Where would it go?)
269 final int mode = MeasureSpec.getMode(heightMeasureSpec);
270 if (mode == MeasureSpec.AT_MOST) {
/frameworks/base/core/jni/
H A Dcom_android_internal_content_NativeLibraryHelper.cpp249 // Set the mode to 755
250 static const mode_t mode = S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH; local
251 if (chmod(localTmpFileName, mode) < 0) {
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardPatternView.java125 // stealth mode will be the same for the life of this screen
128 // vibrate mode will be the same for the life of this screen
153 private void updateFooter(FooterMode mode) { argument
156 switch (mode) {
158 if (DEBUG) Log.d(TAG, "mode normal");
162 if (DEBUG) Log.d(TAG, "mode ForgotLockPattern");
166 if (DEBUG) Log.d(TAG, "mode VerifyUnlocked");
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DFsUtils.java207 boolean mode) {
208 String modeString = (mode ? "folders" : "files");
215 "&mode=" + modeString);
217 Log.e(LOG_TAG, "path=" + dirRelativePath + " recurse=" + recurse + " mode=" +
206 getLayoutTestsDirContents(String dirRelativePath, boolean recurse, boolean mode) argument
/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES11.spec9 void glDrawElements ( GLenum mode, GLsizei count, GLenum type, GLint offset )
/frameworks/base/media/java/android/media/
H A DIAudioService.aidl85 void setMode(int mode, IBinder cb);
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dslice.cpp200 /******* determine MB prediction mode *******/
438 /* DC transform for luma I16 mode */
698 /* perform prediction to get the actual intra 4x4 pred mode */
928 int mode; local
993 mode = currMB->i4Mode[(block_y<<2)+block_x];
995 if (mode == (AVCIntra4x4PredMode)predIntra4x4PredMode)
999 else if (mode < predIntra4x4PredMode)
1001 rem = mode;
1005 rem = mode - 1;
/frameworks/base/graphics/java/android/graphics/
H A DCanvas.java781 * specified RGB color, using srcover porterduff mode.
793 * specified ARGB color, using srcover porterduff mode.
806 * specified color, using srcover porterduff mode.
819 * @param mode the porter-duff mode to apply to the color
821 public void drawColor(int color, PorterDuff.Mode mode) { argument
822 native_drawColor(mNativeCanvas, color, mode.nativeInt);
1051 * then the bitmap will be drawn as if it were in a Shader with CLAMP mode.
1077 * then the bitmap will be drawn as if it were in a Shader with CLAMP mode.
1108 * then the bitmap will be drawn as if it were in a Shader with CLAMP mode
1299 drawVertices(VertexMode mode, int vertexCount, float[] verts, int vertOffset, float[] texs, int texOffset, int[] colors, int colorOffset, short[] indices, int indexOffset, int indexCount, Paint paint) argument
1673 native_drawColor(int nativeCanvas, int color, int mode) argument
1724 nativeDrawVertices(int nCanvas, int mode, int n, float[] verts, int vertOffset, float[] texs, int texOffset, int[] colors, int colorOffset, short[] indices, int indexOffset, int indexCount, int nPaint) argument
[all...]
/frameworks/native/opengl/include/GLES2/
H A Dgl2.h482 GL_APICALL void GL_APIENTRY glBlendEquation ( GLenum mode );
501 GL_APICALL void GL_APIENTRY glCullFace (GLenum mode);
514 GL_APICALL void GL_APIENTRY glDrawArrays (GLenum mode, GLint first, GLsizei count);
515 GL_APICALL void GL_APIENTRY glDrawElements (GLenum mode, GLsizei count, GLenum type, const GLvoid* indices);
522 GL_APICALL void GL_APIENTRY glFrontFace (GLenum mode);
554 GL_APICALL void GL_APIENTRY glHint (GLenum target, GLenum mode);

Completed in 4149 milliseconds

<<111213141516171819