Home
last modified time | relevance | path

Searched refs:mode (Results 1 – 25 of 59) sorted by relevance

123

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
DOrientationMenuAction.java100 for (NightMode mode : NightMode.values()) { in addMenuItems()
101 boolean checked = mode == selected; in addMenuItems()
102 SelectNightModeAction action = new SelectNightModeAction(mode, checked); in addMenuItems()
110 for (UiMode mode : UiMode.values()) { in addMenuItems()
111 boolean checked = mode == selected; in addMenuItems()
112 SelectUiModeAction action = new SelectUiModeAction(mode, checked); in addMenuItems()
124 private SelectNightModeAction(NightMode mode, boolean checked) { in SelectNightModeAction() argument
125 super(mode.getLongDisplayValue(), IAction.AS_RADIO_BUTTON); in SelectNightModeAction()
126 mMode = mode; in SelectNightModeAction()
143 private SelectUiModeAction(UiMode mode, boolean checked) { in SelectUiModeAction() argument
[all …]
DConfigurationMenuListener.java80 @Nullable RenderPreviewMode mode) { in ConfigurationMenuListener() argument
84 mMode = mode; in ConfigurationMenuListener()
144 RenderPreviewMode mode = AdtPrefs.getPrefs().getRenderPreviewMode(); in show() local
150 if (mode == RenderPreviewMode.CUSTOM) { in show()
170 DEFAULT), SWT.RADIO, mode == DEFAULT); in show()
173 SCREENS), SWT.RADIO, mode == SCREENS); in show()
177 LOCALES), SWT.RADIO, mode == LOCALES); in show()
194 INCLUDES), SWT.RADIO, mode == INCLUDES); in show()
203 VARIATIONS), SWT.RADIO, mode == VARIATIONS); in show()
210 CUSTOM), SWT.RADIO, mode == CUSTOM); in show()
[all …]
DConfigurationMatcher.java420 for (UiMode mode : UiMode.values()) { in addDockModeToBundles()
422 b.config.setUiModeQualifier(new UiModeQualifier(mode)); in addDockModeToBundles()
438 for (NightMode mode : NightMode.values()) { in addNightModeToBundles()
440 b.config.setNightModeQualifier(new NightModeQualifier(mode)); in addNightModeToBundles()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
DLaunchShortcut.java45 public void launch(ISelection selection, String mode) { in launch() argument
70 launch(project, mode); in launch()
83 public void launch(IEditorPart editor, String mode) { in launch() argument
94 private void launch(IProject project, String mode) { in launch() argument
101 DebugUITools.launch(config, mode); in launch()
DLaunchConfigTabGroup.java34 public void createTabs(ILaunchConfigurationDialog dialog, String mode) { in createTabs() argument
37 new EmulatorConfigTab(ILaunchManager.RUN_MODE.equals(mode)), in createTabs()
DLaunchConfigDelegate.java118 public void launch(ILaunchConfiguration configuration, String mode, in launch() argument
246 doLaunch(configuration, mode, monitor, project, androidLaunch, config, controller, in launch()
250 protected void doLaunch(ILaunchConfiguration configuration, String mode, in doLaunch() argument
330 controller.launch(project, mode, applicationPackage,manifestData.getPackage(), in doLaunch()
338 String mode, IProgressMonitor monitor) throws CoreException { in buildForLaunch() argument
350 public ILaunch getLaunch(ILaunchConfiguration configuration, String mode) in getLaunch() argument
352 return new AndroidLaunch(configuration, mode, null); in getLaunch()
DAndroidLaunch.java37 public AndroidLaunch(ILaunchConfiguration launchConfiguration, String mode, in AndroidLaunch() argument
39 super(launchConfiguration, mode, locator); in AndroidLaunch()
DEmulatorConfigTab.java385 TargetMode mode = AndroidLaunchConfiguration.parseTargetMode(configuration, in initializeFrom() local
388 boolean multipleDevices = mode.isMultiDevice(); in initializeFrom()
394 mode = LaunchConfigDelegate.DEFAULT_TARGET_MODE; in initializeFrom()
397 mAutoTargetButton.setSelection(mode == TargetMode.AUTO); in initializeFrom()
398 mManualTargetButton.setSelection(mode == TargetMode.MANUAL); in initializeFrom()
415 if (mode == TargetMode.ALL_EMULATORS) { in initializeFrom()
417 } else if (mode == TargetMode.ALL_DEVICES) { in initializeFrom()
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/
DNdkGdbLaunchShortcut.java43 public void launch(ISelection selection, String mode) { in launch() argument
79 debugProject(project, mode); in launch()
83 public void launch(IEditorPart editor, String mode) { in launch() argument
86 private void debugProject(IProject project, String mode) { in debugProject() argument
106 DebugUITools.launch(config, mode); in debugProject()
DNdkGdbLaunchConfigTabGroups.java30 public void createTabs(ILaunchConfigurationDialog dialog, String mode) { in createTabs() argument
DNdkGdbLaunchDelegate.java87 public void launch(ILaunchConfiguration config, String mode, ILaunch launch, in launch() argument
89 boolean launched = doLaunch(config, mode, launch, monitor); in launch()
98 public boolean doLaunch(final ILaunchConfiguration config, String mode, ILaunch launch, in doLaunch() argument
350 super.launch(config2, mode, launch, monitor); in doLaunch()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
DNewProjectWizard.java61 protected NewProjectWizard(Mode mode) { in NewProjectWizard() argument
62 mMode = mode; in NewProjectWizard()
151 if (mValues.mode != Mode.TEST) { in getNextPage()
155 if (mValues.mode == Mode.SAMPLE) { in getNextPage()
157 } else if (mValues.mode != Mode.TEST) { in getNextPage()
DNewProjectWizardState.java48 public Mode mode; field in NewProjectWizardState
184 public NewProjectWizardState(Mode mode) { in NewProjectWizardState() argument
185 this.mode = mode; in NewProjectWizardState()
186 if (mode == Mode.SAMPLE) { in NewProjectWizardState()
188 } else if (mode == Mode.TEST) { in NewProjectWizardState()
285 if (mode == Mode.ANY && useExisting) { in extractFromAndroidManifest()
DProjectNamePage.java129 if (mValues.mode != Mode.TEST) { in createControl()
180 if (mValues.mode == Mode.ANY || mValues.mode == Mode.TEST) { in setVisible()
186 } else if (mValues.mode == Mode.SAMPLE) { in setVisible()
264 if (mValues.mode == Mode.SAMPLE) { in widgetSelected()
269 mValues.mode = Mode.ANY; in widgetSelected()
283 mValues.mode = Mode.SAMPLE; in widgetSelected()
302 boolean isCreateFromSample = mValues.mode == Mode.SAMPLE; in updateLocationState()
378 boolean isNewProject = !mValues.useExisting || mValues.mode == Mode.SAMPLE; in updateLocationPathField()
418 && mValues.projectLocation.exists() && mValues.mode != Mode.SAMPLE) { in updateLocationPathField()
436 if (mValues.mode != Mode.SAMPLE) { in validatePage()
[all …]
DApplicationInfoPage.java115 if (mValues.mode != Mode.TEST) { in createControl()
170 if (mValues.mode == Mode.SAMPLE) { in showTestOptions()
209 if (mValues.mode != Mode.TEST) { in setVisible()
220 showTestOptions(mValues.mode == Mode.ANY); in setVisible()
285 if (mValues.useExisting || mValues.mode != Mode.ANY) { in isPageComplete()
DSdkSelectionPage.java115 if (mValues.mode == Mode.SAMPLE) { in setVisible()
411 if (error == null && mValues.mode == Mode.SAMPLE) { in validatePage()
DNewProjectCreator.java416 if (mValues.mode == Mode.TEST) { in collectMainPageInfo()
429 parameters.put(PARAM_IS_NEW_PROJECT, mValues.mode == Mode.ANY && !mValues.useExisting); in collectMainPageInfo()
451 if (mValues.mode == Mode.ANY && !mValues.useExisting && !mValues.useDefaultLocation && in collectMainPageInfo()
467 if (mValues.mode != Mode.TEST && !mValues.createPairProject) { in collectTestPageInfo()
473 mValues.mode == Mode.TEST ? mValues.projectName : mValues.testProjectName; in collectTestPageInfo()
480 mValues.mode == Mode.TEST ? mValues.packageName : mValues.testPackageName; in collectTestPageInfo()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/
DAndroidJUnitLaunchAction.java76 final String mode = info.isDebugMode() ? ILaunchManager.DEBUG_MODE : in doLaunchAction() local
79 junitDelegate.launch(info.getLaunch().getLaunchConfiguration(), mode, info.getLaunch(), in doLaunchAction() local
114 public synchronized void launch(ILaunchConfiguration configuration, String mode, in launch() argument
117 super.launch(configuration, mode, launch, monitor); in launch()
134 public IVMRunner getVMRunner(ILaunchConfiguration configuration, String mode) { in getVMRunner() argument
143 public ILaunch getLaunch(ILaunchConfiguration configuration, String mode) { in getLaunch() argument
DAndroidJUnitTabGroup.java36 public void createTabs(ILaunchConfigurationDialog dialog, String mode) { in createTabs() argument
39 new EmulatorConfigTab(ILaunchManager.RUN_MODE.equals(mode)), in createTabs()
DAndroidJUnitLaunchConfigDelegate.java69 protected void doLaunch(final ILaunchConfiguration configuration, final String mode, in doLaunch() argument
107 controller.launch(project, mode, applicationPackage, testAppPackage, in doLaunch()
117 controller.launch(project, mode, applicationPackage, testAppPackage, targetAppPackage, in doLaunch()
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
DStateTransformFactory.java466 int mode = msg.getArgs(0).getIntValue(0); in transformsForGlCullFace() local
471 GLEnum.valueOf(mode)); in transformsForGlCullFace()
477 int mode = msg.getArgs(0).getIntValue(0); in transformsForGlFrontFace() local
482 GLEnum.valueOf(mode)); in transformsForGlFrontFace()
714 private static IStateTransform transformForGlEquationRGB(int contextId, GLEnum mode) { in transformForGlEquationRGB() argument
720 mode); in transformForGlEquationRGB()
723 private static IStateTransform transformForGlEquationAlpha(int contextId, GLEnum mode) { in transformForGlEquationAlpha() argument
729 mode); in transformForGlEquationAlpha()
745 GLEnum mode = GLEnum.valueOf(msg.getArgs(0).getIntValue(0)); in transformsForGlBlendEquation() local
748 transforms.add(transformForGlEquationRGB(msg.getContextId(), mode)); in transformsForGlBlendEquation() local
[all …]
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/
Dentries.in34 void, glBlendEquation, GLenum mode
35 void, glBlendEquationOES, GLenum mode
91 void, glCullFace, GLenum mode
123 void, glDrawArrays, GLenum mode, GLint first, GLsizei count
124 void, glDrawArraysInstanced, GLenum mode, GLint first, GLsizei count, GLsizei instanceCount
127 void, glDrawElements, GLenum mode, GLsizei count, GLenum type, const GLvoid* indices
128 void, glDrawElementsInstanced, GLenum mode, GLsizei count, GLenum type, const GLvoid* indices, GLsi…
129 void, glDrawRangeElements, GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const…
180 void, glFrontFace, GLenum mode
294 void, glHint, GLenum target, GLenum mode
[all …]
/sdk/docs/
Dhowto_use_cupcake_sdk.txt191 --target 1 --mode activity
316 By default Android projects in Eclipse have an "automatic target" mode.
317 In this mode, when a project is deployed in debug or run, it checks:
329 - Manual or automatic targetting mode.
334 - In automatic mode, which AVD is preferred. If none is selected, the first
345 mode that would not save user data.
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DPaletteControl.java1134 PaletteModeAction(PaletteMode mode) { in PaletteModeAction() argument
1135 super(mode.getActionLabel(), IAction.AS_RADIO_BUTTON); in PaletteModeAction()
1136 mMode = mode; in PaletteModeAction()
1218 for (PaletteMode mode : PaletteMode.values()) { in showMenu()
1219 if (mode.isPreview() && !previews) { in showMenu()
1222 manager.add(new PaletteModeAction(mode)); in showMenu()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
Dcompletionvalues1-expected-completion32.txt100 …eInTouchMode : Boolean that controls whether a view can take focus while in touch mode. [boolean]
134 android:indeterminate : Allows to enable the indeterminate mode. [boolean]
135 android:indeterminateBehavior : Defines how the indeterminate mode should behave when the progress …
136 android:indeterminateDrawable : Drawable used for the indeterminate mode. [reference]
138 android:indeterminateOnly : Restricts to ONLY indeterminate mode (state-keeping progress mode will…
174 android:mode : [enum]
204 android:progressDrawable : Drawable used for the progress mode. [reference]
251 android:spinnerMode : Display mode for spinner options. [enum]
300 android:transcriptMode : Sets the transcript mode for the list. [enum]

123