/sdk/emulator/opengl/host/libs/Translator/GLcommon/ |
D | GLESvalidate.cpp | 85 bool GLESvalidate::drawMode(GLenum mode) { in drawMode() argument 86 switch(mode) { in drawMode() 99 bool GLESvalidate::drawType(GLenum mode) { in drawType() argument 100 return mode == GL_UNSIGNED_BYTE || in drawType() 101 mode == GL_UNSIGNED_SHORT || in drawType() 102 mode == GL_UNSIGNED_INT; in drawType() 127 bool GLESvalidate::blendEquationMode(GLenum mode){ in blendEquationMode() argument 128 return mode == GL_FUNC_ADD || in blendEquationMode() 129 mode == GL_FUNC_SUBTRACT || in blendEquationMode() 130 mode == GL_FUNC_REVERSE_SUBTRACT; in blendEquationMode()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/ |
D | OrientationMenuAction.java | 100 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 …]
|
D | ConfigurationMenuListener.java | 80 @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 …]
|
/sdk/emulator/opengl/host/libs/Translator/GLES_V2/ |
D | GLESv2Validate.cpp | 19 bool GLESv2Validate::blendEquationMode(GLenum mode){ in blendEquationMode() argument 20 return mode == GL_FUNC_ADD || in blendEquationMode() 21 mode == GL_FUNC_SUBTRACT || in blendEquationMode() 22 mode == GL_FUNC_REVERSE_SUBTRACT; in blendEquationMode() 81 bool GLESv2Validate::hintTargetMode(GLenum target,GLenum mode){ in hintTargetMode() argument 83 switch(mode) { in hintTargetMode()
|
D | GLESv2Validate.h | 25 static bool blendEquationMode(GLenum mode); 29 static bool hintTargetMode(GLenum target,GLenum mode);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/ |
D | LaunchShortcut.java | 45 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()
|
D | LaunchConfigTabGroup.java | 34 public void createTabs(ILaunchConfigurationDialog dialog, String mode) { in createTabs() argument 37 new EmulatorConfigTab(ILaunchManager.RUN_MODE.equals(mode)), in createTabs()
|
D | AndroidLaunch.java | 37 public AndroidLaunch(ILaunchConfiguration launchConfiguration, String mode, in AndroidLaunch() argument 39 super(launchConfiguration, mode, locator); in AndroidLaunch()
|
D | LaunchConfigDelegate.java | 118 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()
|
D | EmulatorConfigTab.java | 385 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/emulator/opengl/host/libs/Translator/include/GLcommon/ |
D | GLESvalidate.h | 29 static bool drawMode(GLenum mode); 30 static bool drawType(GLenum mode); 35 static bool blendEquationMode(GLenum mode);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/ |
D | NewProjectWizard.java | 61 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()
|
D | NewProjectWizardState.java | 48 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()
|
D | ProjectNamePage.java | 129 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 …]
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/ |
D | NdkGdbLaunchShortcut.java | 43 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()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/ |
D | AndroidJUnitLaunchAction.java | 76 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
|
D | AndroidJUnitTabGroup.java | 36 public void createTabs(ILaunchConfigurationDialog dialog, String mode) { in createTabs() argument 39 new EmulatorConfigTab(ILaunchManager.RUN_MODE.equals(mode)), in createTabs()
|
/sdk/emulator/opengl/host/libs/GLESv2_dec/ |
D | GL2Decoder.cpp | 125 void GL2Decoder::s_glDrawElementsData(void *self, GLenum mode, GLsizei count, GLenum type, void * d… in s_glDrawElementsData() argument 128 ctx->glDrawElements(mode, count, type, data); in s_glDrawElementsData() 132 void GL2Decoder::s_glDrawElementsOffset(void *self, GLenum mode, GLsizei count, GLenum type, GLuint… in s_glDrawElementsOffset() argument 135 ctx->glDrawElements(mode, count, type, SafePointerFromUInt(offset)); in s_glDrawElementsOffset()
|
D | GL2Decoder.h | 47 …static void gl2_APIENTRY s_glDrawElementsOffset(void *self, GLenum mode, GLsizei count, GLenum typ… 48 …static void gl2_APIENTRY s_glDrawElementsData(void *self, GLenum mode, GLsizei count, GLenum type,…
|
/sdk/emulator/opengl/host/libs/libOpenglRender/ |
D | render_api.cpp | 365 setStreamMode(int mode) in setStreamMode() argument 367 switch (mode) { in setStreamMode() 369 mode = DEFAULT_STREAM_MODE; in setStreamMode() 386 gRendererStreamMode = mode; in setStreamMode()
|
/sdk/p2gen/ |
D | README.txt | 53 which would fail since we are running in offline mode. This 59 offline mode. 61 Additional considerations for running in offline mode: 63 When running in online mode, there are 3 sources from which files 70 in offline mode since Maven treats repositories with file:/// urls
|
/sdk/emulator/opengl/host/libs/Translator/GLES_CM/ |
D | GLDispatch.h | 36 void (GLAPIENTRY *glBegin)( GLenum mode ); 59 void (GLAPIENTRY *glCullFace) (GLenum mode); 67 void (GLAPIENTRY *glDrawArrays) (GLenum mode, GLint first, GLsizei count); 68 …void (GLAPIENTRY *glDrawElements) (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices); 76 void (GLAPIENTRY *glFrontFace) (GLenum mode); 95 void (GLAPIENTRY *glHint) (GLenum target, GLenum mode); 131 void (GLAPIENTRY *glMatrixMode) (GLenum mode); 139 void (GLAPIENTRY *glShadeModel) (GLenum mode);
|
/sdk/emulator/opengl/host/libs/Translator/include/EGL/ |
D | eglext.h | 143 EGLAPI EGLBoolean EGLAPIENTRY eglSignalSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLenum mode); 149 … EGLBoolean (EGLAPIENTRYP PFNEGLSIGNALSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLenum mode); 207 EGLBoolean eglSignalSyncNV (EGLSyncNV sync, EGLenum mode); 214 typedef EGLBoolean (EGLAPIENTRYP PFNEGLSIGNALSYNCNVPROC) (EGLSyncNV sync, EGLenum mode);
|
/sdk/emulator/opengl/host/libs/GLESv1_dec/ |
D | gl.addon | 13 GL_ENTRY(void, glDrawElementsOffset, GLenum mode, GLsizei count, GLenum type, GLuint offset); 14 GL_ENTRY(void, glDrawElementsData, GLenum mode, GLsizei count, GLenum type, void *data, GLuint data…
|
D | GLDecoder.cpp | 208 void GLDecoder::s_glDrawElementsOffset(void *self, GLenum mode, GLsizei count, GLenum type, GLuint … in s_glDrawElementsOffset() argument 211 ctx->glDrawElements(mode, count, type, SafePointerFromUInt(offset)); in s_glDrawElementsOffset() 214 void GLDecoder::s_glDrawElementsData(void *self, GLenum mode, GLsizei count, GLenum type, void * da… in s_glDrawElementsData() argument 217 ctx->glDrawElements(mode, count, type, data); in s_glDrawElementsData()
|