Searched refs:mode (Results 251 - 275 of 525) sorted by relevance

<<11121314151617181920>>

/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/support/v7/appcompat/src/android/support/v7/app/
H A DActionBarImplBase.java234 "setSelectedNavigationIndex not valid for current navigation mode");
356 public void setNavigationMode(int mode) { argument
365 mActionView.setNavigationMode(mode);
366 switch (mode) {
376 mActionView.setCollapsable(mode == NAVIGATION_MODE_TABS && !mHasEmbeddedTabs);
573 ActionModeImpl mode = new ActionModeImpl(callback);
574 if (mode.dispatchOnCreate()) {
575 mode.invalidate();
576 mContextView.initForMode(mode);
584 mActionMode = mode;
[all...]
/frameworks/native/opengl/libagl/
H A Darray.cpp46 static void validate_arrays(ogles_context_t* c, GLenum mode);
400 void vertex_cache_t::dump_stats(GLenum mode) argument
406 switch (mode) {
1080 void validate_arrays(ogles_context_t* c, GLenum mode) argument
1090 c->perspective && mode!=GL_POINTS && (enables & GGL_ENABLE_TMUS);
1095 switch (mode) {
1110 (mode == GL_POINTS) ? GL_FLAT : c->lighting.shadeModel);
1341 void glDrawArrays(GLenum mode, GLint first, GLsizei count) argument
1348 switch (mode) {
1368 validate_arrays(c, mode);
1385 glDrawElements( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices) argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DUiModeManagerService.java227 public void setNightMode(int mode) { argument
228 switch (mode) {
234 throw new IllegalArgumentException("Unknown mode: " + mode);
240 if (isDoingNightModeLocked() && mNightMode != mode) {
242 Settings.Secure.UI_NIGHT_MODE, mode);
243 mNightMode = mode;
317 // Disabling the car mode clears the night mode.
430 // keep screen on when charging and in car mode
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DSpinnerICS.java65 * Use the theme-supplied value to select the dropdown mode.
89 * mode of displaying choices. <code>mode</code> may be one of
94 * @param mode Constant describing how the user will select choices from the spinner.
99 SpinnerICS(Context context, int mode) { argument
100 this(context, null, R.attr.spinnerStyle, mode);
132 * and default style. <code>mode</code> may be one of {@link #MODE_DIALOG} or
142 * @param mode Constant describing how the user will select choices from the spinner.
147 SpinnerICS(Context context, AttributeSet attrs, int defStyle, int mode) { argument
153 if (mode
[all...]
/frameworks/av/media/libstagefright/include/
H A DAwesomePlayer.h315 void modifyFlags(unsigned value, FlagMode mode);
348 status_t setVideoScalingMode(int32_t mode);
349 status_t setVideoScalingMode_l(int32_t mode);
H A DAVIExtractor.h105 int64_t timeUs, MediaSource::ReadOptions::SeekMode mode,
/frameworks/base/core/java/com/android/internal/widget/
H A DPasswordEntryKeyboardHelper.java157 public void setKeyboardMode(int mode) { argument
158 switch (mode) {
174 mKeyboardMode = mode;
217 // Switch back to old keyboard if we're not in capslock mode
296 // Maybe turn off shift if not in capslock mode.
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DDirectoryFragment.java289 // TODO: if mode change was racing with us, don't overwrite it
290 if (result.mode != MODE_UNKNOWN) {
291 state.derivedMode = result.mode;
438 public boolean onCreateActionMode(ActionMode mode, Menu menu) {
439 mode.getMenuInflater().inflate(R.menu.mode_directory, menu);
444 public boolean onPrepareActionMode(ActionMode mode, Menu menu) {
460 public boolean onActionItemClicked(ActionMode mode, MenuItem item) {
475 mode.finish();
480 mode.finish();
485 mode
[all...]
/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/av/libvideoeditor/lvpp/
H A DVideoEditorPreviewController.h64 M4xVSS_MediaRendering mode,
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
H A DvoAMRWBEnc.c150 Word16 * mode, /* input : used mode */
153 Word16 * ser_size, /* output: bit rate of the used mode */
215 *ser_size = nb_of_bits[*mode];
216 codec_mode = *mode;
379 /* Note that mode may change here */
380 tx_dtx_handler(st->dtx_encSt, vad_flag, mode);
381 *ser_size = nb_of_bits[*mode];
384 if(*mode != MRDTX)
542 if(*mode
149 coder( Word16 * mode, Word16 speech16k[], Word16 prms[], Word16 * ser_size, void *spe_state, Word16 allow_dtx ) argument
1564 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/graphics/java/android/graphics/drawable/
H A DBitmapDrawable.java361 * @param mode The repeat mode for this drawable.
366 public void setTileModeX(Shader.TileMode mode) { argument
367 setTileModeXY(mode, mBitmapState.mTileModeY);
376 * @param mode The repeat mode for this drawable.
381 public final void setTileModeY(Shader.TileMode mode) { argument
382 setTileModeXY(mBitmapState.mTileModeX, mode);
391 * @param xmode The X repeat mode for this drawable.
392 * @param ymode The Y repeat mode fo
[all...]
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DGLImpl.java281 // C function void glCullFace ( GLenum mode )
284 int mode
340 // C function void glDrawArrays ( GLenum mode, GLint first, GLsizei count )
343 int mode,
348 // C function void glDrawElements ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices )
351 int mode,
423 // C function void glFrontFace ( GLenum mode )
426 int mode
502 // C function void glHint ( GLenum target, GLenum mode )
506 int mode
342 glDrawArrays( int mode, int first, int count ) argument
350 glDrawElements( int mode, int count, int type, java.nio.Buffer indices ) argument
1256 glDrawElements( int mode, int count, int type, int offset ) argument
[all...]
/frameworks/base/packages/SharedStorageBackup/src/com/android/sharedstoragebackup/
H A DSharedStorageAgent.java66 int type, String domain, String relpath, long mode, long mtime)
65 onRestoreFile(ParcelFileDescriptor data, long size, int type, String domain, String relpath, long mode, long mtime) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSmsApplication.java296 int mode = appOps.checkOp(AppOpsManager.OP_WRITE_SMS, applicationData.mUid,
298 if (mode != AppOpsManager.MODE_ALLOWED) {
317 int mode = appOps.checkOp(AppOpsManager.OP_WRITE_SMS, info.applicationInfo.uid,
319 if (mode != AppOpsManager.MODE_ALLOWED) {
/frameworks/testing/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/opengl/java/android/opengl/
H A DGLLogWrapper.java586 private String getBeginMode(int mode) { argument
587 switch (mode) {
603 return getHex(mode);
770 private String getHintMode(int mode) { argument
771 switch (mode) {
779 return getHex(mode);
1413 public void glCullFace(int mode) { argument
1415 arg("mode", mode);
1418 mgl.glCullFace(mode);
1513 glDrawArrays(int mode, int first, int count) argument
1529 glDrawElements(int mode, int count, int type, Buffer indices) argument
1657 glFrontFace(int mode) argument
1770 glHint(int target, int mode) argument
2051 glMatrixMode(int mode) argument
2345 glShadeModel(int mode) argument
3345 glDrawElements(int mode, int count, int type, int offset) argument
3471 glBlendEquation(int mode) argument
[all...]
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java104 /** The mode that no editing action is done. */
106 /** The mode of copy. */
108 /** The mode of paste. */
110 /** The mode of changing size. */
112 /** The mode of changing color. */
114 /** The mode of selection. */
116 /** The mode of changing alignment. */
118 /** The mode of changing cut. */
419 public void onStateChanged(int mode, int state); argument
527 * Notify the event that the mode an
532 notifyStateChanged(int mode, int state) argument
619 onStartAction(int mode, boolean notifyStateChanged) argument
918 addAction(int mode, EditModeActionBase action) argument
969 addAction(int mode, EditModeActionBase action) argument
973 onAction(int mode) argument
977 onAction(int mode, boolean notifyStateChanged) argument
1244 setEditMode(int mode) argument
2875 getAction(int mode) argument
2886 doNext(int mode) argument
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DCrypto.cpp240 CryptoPlugin::Mode mode,
256 secure, key, iv, mode, srcPtr, subSamples, numSubSamples, dstPtr,
236 decrypt( bool secure, const uint8_t key[16], const uint8_t iv[16], CryptoPlugin::Mode mode, const void *srcPtr, const CryptoPlugin::SubSample *subSamples, size_t numSubSamples, void *dstPtr, AString *errorDetailMsg) argument
/frameworks/av/media/libstagefright/
H A DAMRExtractor.cpp255 ReadOptions::SeekMode mode; local
256 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
/frameworks/av/media/libstagefright/timedtext/
H A DTimedTextSRTSource.cpp221 MediaSource::ReadOptions::SeekMode mode; local
222 if (options != NULL && options->getSeekTo(&seekTimeUs, &mode)) {
/frameworks/base/core/java/android/content/
H A DContentProviderNative.java227 String mode = data.readString();
232 fd = openFile(callingPkg, url, mode, signal);
249 String mode = data.readString();
254 fd = openAssetFile(callingPkg, url, mode, signal);
571 String callingPkg, Uri url, String mode, ICancellationSignal signal)
580 data.writeString(mode);
597 String callingPkg, Uri url, String mode, ICancellationSignal signal)
606 data.writeString(mode);
570 openFile( String callingPkg, Uri url, String mode, ICancellationSignal signal) argument
596 openAssetFile( String callingPkg, Uri url, String mode, ICancellationSignal signal) argument

Completed in 704 milliseconds

<<11121314151617181920>>