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

<<11121314151617181920>>

/frameworks/base/opengl/java/android/opengl/
H A DGLES10.java467 // C function void glCullFace ( GLenum mode )
470 int mode
526 // C function void glDrawArrays ( GLenum mode, GLint first, GLsizei count )
529 int mode,
534 // C function void glDrawElements ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices )
537 int mode,
609 // C function void glFrontFace ( GLenum mode )
612 int mode
677 // C function void glHint ( GLenum target, GLenum mode )
681 int mode
528 glDrawArrays( int mode, int first, int count ) argument
536 glDrawElements( int mode, int count, int type, java.nio.Buffer indices ) argument
[all...]
H A DGLErrorWrapper.java201 public void glCullFace(int mode) { argument
203 mgl.glCullFace(mode);
255 public void glDrawArrays(int mode, int first, int count) { argument
257 mgl.glDrawArrays(mode, first, count);
261 public void glDrawElements(int mode, int count, int type, Buffer indices) { argument
263 mgl.glDrawElements(mode, count, type, indices);
327 public void glFrontFace(int mode) { argument
329 mgl.glFrontFace(mode);
384 public void glHint(int target, int mode) { argument
386 mgl.glHint(target, mode);
546 glMatrixMode(int mode) argument
712 glShadeModel(int mode) argument
1003 glDrawElements(int mode, int count, int type, int offset) argument
1395 glBlendEquation(int mode) argument
[all...]
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL10.java393 int mode
434 int mode,
440 int mode,
493 int mode
545 int mode
690 int mode
846 int mode
433 glDrawArrays( int mode, int first, int count ) argument
439 glDrawElements( int mode, int count, int type, java.nio.Buffer indices ) argument
/frameworks/base/core/java/android/content/
H A DContentResolver.java679 * @param mode May be "w", "wa", "rw", or "rwt".
684 public final OutputStream openOutputStream(Uri uri, String mode) argument
686 AssetFileDescriptor fd = openAssetFileDescriptor(uri, mode, null);
715 * of data. Opening with the "rw" mode implies a file on disk that supports
716 * seeking. If possible, always use an exclusive mode to give the underlying
723 * @param mode The file mode to use, as per {@link ContentProvider#openFile
728 * file exists under the URI or the mode is invalid.
731 public final ParcelFileDescriptor openFileDescriptor(Uri uri, String mode) argument
733 return openFileDescriptor(uri, mode, nul
776 openFileDescriptor(Uri uri, String mode, CancellationSignal cancellationSignal) argument
846 openAssetFileDescriptor(Uri uri, String mode) argument
902 openAssetFileDescriptor(Uri uri, String mode, CancellationSignal cancellationSignal) argument
[all...]
/frameworks/base/media/jni/
H A Dandroid_media_MediaExtractor.cpp194 int64_t timeUs, MediaSource::ReadOptions::SeekMode mode) {
195 return mImpl->seekTo(timeUs, mode);
435 JNIEnv *env, jobject thiz, jlong timeUs, jint mode) {
443 if (mode < MediaSource::ReadOptions::SEEK_PREVIOUS_SYNC
444 || mode >= MediaSource::ReadOptions::SEEK_CLOSEST) {
449 extractor->seekTo(timeUs, (MediaSource::ReadOptions::SeekMode)mode);
647 int32_t mode; local
648 if (!meta->findInt32(kKeyCryptoMode, &mode)) {
649 mode = CryptoPlugin::kMode_AES_CTR;
660 mode);
193 seekTo( int64_t timeUs, MediaSource::ReadOptions::SeekMode mode) argument
434 android_media_MediaExtractor_seekTo( JNIEnv *env, jobject thiz, jlong timeUs, jint mode) argument
[all...]
/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES30.spec1 void glReadBuffer ( GLenum mode )
2 void glDrawRangeElements ( GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices )
3 void glDrawRangeElements ( GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, GLsizei offset )
75 void glDrawArraysInstanced ( GLenum mode, GLint first, GLsizei count, GLsizei instanceCount )
76 void glDrawElementsInstanced ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei instanceCount )
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternUtils.java200 // mode where calls are for the current user rather than the user of the calling process.
219 * Gets the device policy password mode. If the mode is non-specific, returns
783 * as the requested mode, but will adjust the mode to be as good as the
794 * as the requested mode, but will adjust the mode to be as good as the
806 * as the requested mode, but will adjust the mode to be as good as the
955 * Retrieves the quality mode w
[all...]
H A DPasswordEntryKeyboardHelper.java155 public void setKeyboardMode(int mode) { argument
156 switch (mode) {
172 mKeyboardMode = mode;
215 // Switch back to old keyboard if we're not in capslock mode
294 // Maybe turn off shift if not in capslock mode.
H A DDecorToolbar.java82 void setNavigationMode(int mode); argument
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DDirectoryFragment.java299 // TODO: if mode change was racing with us, don't overwrite it
300 if (result.mode != MODE_UNKNOWN) {
301 state.derivedMode = result.mode;
452 public boolean onCreateActionMode(ActionMode mode, Menu menu) {
453 mode.getMenuInflater().inflate(R.menu.mode_directory, menu);
454 mode.setTitle(getResources()
460 public boolean onPrepareActionMode(ActionMode mode, Menu menu) {
476 public boolean onActionItemClicked(ActionMode mode, MenuItem item) {
491 mode.finish();
496 mode
[all...]
/frameworks/native/opengl/libagl/
H A Darray.cpp46 static void validate_arrays(ogles_context_t* c, GLenum mode);
401 void vertex_cache_t::dump_stats(GLenum mode) argument
406 switch (mode) {
423 void vertex_cache_t::dump_stats(GLenum /*mode*/)
1084 void validate_arrays(ogles_context_t* c, GLenum mode) argument
1094 c->perspective && mode!=GL_POINTS && (enables & GGL_ENABLE_TMUS);
1099 switch (mode) {
1114 (mode == GL_POINTS) ? GL_FLAT : c->lighting.shadeModel);
1345 void glDrawArrays(GLenum mode, GLint first, GLsizei count) argument
1352 switch (mode) {
1389 glDrawElements( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices) argument
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DUiModeManagerService.java235 public void setNightMode(int mode) {
236 switch (mode) {
242 throw new IllegalArgumentException("Unknown mode: " + mode);
248 if (isDoingNightModeLocked() && mNightMode != mode) {
250 Settings.Secure.UI_NIGHT_MODE, mode);
251 mNightMode = mode;
366 // Disabling the car mode clears the night mode.
479 // keep screen on when charging and in car mode
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DSpinnerCompat.java70 * Use the theme-supplied value to select the dropdown mode.
104 * Construct a new spinner with the given context's theme and the supplied mode of displaying
105 * choices. <code>mode</code> may be one of {@link #MODE_DIALOG} or {@link #MODE_DROPDOWN}.
109 * @param mode Constant describing how the user will select choices from the spinner.
113 SpinnerCompat(Context context, int mode) { argument
114 this(context, null, R.attr.spinnerStyle, mode);
146 * default style. <code>mode</code> may be one of {@link #MODE_DIALOG} or {@link #MODE_DROPDOWN}
156 * @param mode Constant describing how the user will select choices from the spinner.
160 SpinnerCompat(Context context, AttributeSet attrs, int defStyle, int mode) { argument
169 if (mode
[all...]
H A DActionBarContainer.java33 * This class acts as a container for the action bar view and action mode context views.
230 // No starting an action mode for an action bar child! (Where would it go?)
260 final int mode = MeasureSpec.getMode(heightMeasureSpec);
262 && mode != MeasureSpec.EXACTLY) {
271 final int maxHeight = mode == MeasureSpec.AT_MOST ?
/frameworks/av/media/libstagefright/include/
H A DAwesomePlayer.h321 void modifyFlags(unsigned value, FlagMode mode);
354 status_t setVideoScalingMode(int32_t mode);
355 status_t setVideoScalingMode_l(int32_t mode);
H A DAVIExtractor.h105 int64_t timeUs, MediaSource::ReadOptions::SeekMode mode,
/frameworks/base/packages/Keyguard/test/src/com/android/keyguard/test/
H A DKeyguardTestActivity.java175 private void setMode(int mode) { argument
180 switch(mode) {
203 mSecurityMode = mode;
/frameworks/base/packages/SystemUI/src/com/android/systemui/power/
H A DPowerUI.java79 private void setSaverMode(boolean mode) { argument
80 mWarnings.showSaverMode(mode);
254 void showSaverMode(boolean mode); argument
/frameworks/av/include/ndk/
H A DNdkMediaCodec.h190 cryptoinfo_mode_t mode,
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
H A DvoAMRWBEnc.c152 Word16 * mode, /* input : used mode */
155 Word16 * ser_size, /* output: bit rate of the used mode */
217 *ser_size = nb_of_bits[*mode];
218 codec_mode = *mode;
381 /* Note that mode may change here */
382 tx_dtx_handler(st->dtx_encSt, vad_flag, mode);
383 *ser_size = nb_of_bits[*mode];
386 if(*mode != MRDTX)
544 if(*mode
151 coder( Word16 * mode, Word16 speech16k[], Word16 prms[], Word16 * ser_size, void *spe_state, Word16 allow_dtx ) argument
1566 Word16 coding_mode = 0, nb_bits, allow_dtx, mode, reset_flag; local
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dmb_motion_comp.cpp57 the motion compensation mode in order to determine which luminance or
143 uint8 mode; local
187 /* get mode for current MB */
188 mode = video->headerInfo.Mode[mbnum];
193 if (mode & INTER_1VMASK)
243 /*if (mode == MODE_INTER4V) 05/08/15 */
401 if (mode&INTER_1VMASK)
421 /* Post-processing mode (MBM_INTER8) */
600 /* Post-processing mode (copy previous MB) */
/frameworks/av/media/libstagefright/wifi-display/rtp/
H A DRTPSender.h34 // or "AVC/H.264 encapsulation as specified in RFC 3984 (non-interleaved mode)"
57 PacketizationMode mode);
/frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
H A DUiAutomatorTestRunner.java138 Tracer.Mode mode = Tracer.Mode.valueOf(Tracer.Mode.class, traceType);
139 if (mode == Tracer.Mode.FILE || mode == Tracer.Mode.ALL) {
147 Tracer.getInstance().setOutputMode(mode);
188 // pretty printer mode?
211 // pretty printer mode?
/frameworks/base/core/java/android/service/notification/
H A DZenModeConfig.java43 * Persisted configuration for zen mode.
80 private static final String SLEEP_ATT_MODE = "mode";
309 final String mode = parser.getAttributeValue(null, SLEEP_ATT_MODE);
310 rt.sleepMode = isValidSleepMode(mode)? mode : null;
474 downtime.mode = sleepMode;
542 // e.g. condition://android/downtime?start=10.00&end=7.00&mode=days%3A5%2C6&none=false
551 .appendQueryParameter("mode", downtime.mode)
570 downtime.mode
593 public String mode; field in class:ZenModeConfig.DowntimeInfo
[all...]
/frameworks/base/core/jni/android/graphics/
H A DShader.cpp215 SkXfermode* mode = reinterpret_cast<SkXfermode *>(modeHandle); local
216 SkShader* shader = new SkComposeShader(shaderA, shaderB, mode);
227 SkXfermode* mode = (SkXfermode*) au.get(); local
228 SkShader* shader = new SkComposeShader(shaderA, shaderB, mode);

Completed in 687 milliseconds

<<11121314151617181920>>