Searched defs:window (Results 1 - 25 of 34) sorted by relevance

12

/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
H A DProfilesLoader.java33 public static double[] loadProfiles(IDevice device, Window window, String params) { argument
50 out.write("PROFILE " + window.encode() + " " + params);
H A DCaptureLoader.java41 public static boolean saveLayers(IDevice device, Window window, File file) { argument
55 out.write("CAPTURE_LAYERS " + window.encode());
129 public static Image loadCapture(IDevice device, Window window, String params) { argument
142 out.write("CAPTURE " + window.encode() + " " + params);
H A DViewHierarchyLoader.java38 public static ViewHierarchyScene loadScene(IDevice device, Window window) { argument
60 out.write("DUMP " + window.encode());
H A DViewManager.java30 public static void invalidate(IDevice device, Window window, String params) { argument
31 sendCommand("INVALIDATE", device, window, params);
34 public static void requestLayout(IDevice device, Window window, String params) { argument
35 sendCommand("REQUEST_LAYOUT", device, window, params);
38 public static void outputDisplayList(IDevice device, Window window, String params) { argument
39 sendCommand("OUTPUT_DISPLAYLIST", device, window, params);
42 private static void sendCommand(String command, IDevice device, Window window, String params) { argument
53 out.write(command + " " + window.encode() + " " + params);
/sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/
H A DHierarchyViewerPluginDirector.java75 public void loadViewTreeData(Window window) { argument
76 super.loadViewTreeData(window);
108 for (IWorkbenchWindow window : windows) {
109 IWorkbenchPage page = window.getActivePage();
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/wizards/
H A DAddNativeWizard.java50 public AddNativeWizard(IProject project, IWorkbenchWindow window) { argument
52 mWindow = window;
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
H A DAvdManagerAction.java34 * It displays the AVD Manager window.
44 public void init(IWorkbenchWindow window) { argument
56 // Runs the updater window, directing all logs to the ADT console.
57 AvdManagerWindow window = new AvdManagerWindow(
62 window.open();
H A DFixProjectAction.java150 public void init(IWorkbenchWindow window) { argument
H A DSdkManagerAction.java64 public void init(IWorkbenchWindow window) { argument
133 // button multiple times, show a progress window that will automatically close
164 final int numIter = 30; //30*100=3s to wait for window
248 * The call is blocking and does not return till the SD Manager window is closed.
260 // Runs the updater window, directing only warning/errors logs to the ADT console
262 // log window now.)
264 SdkUpdaterWindow window = new SdkUpdaterWindow(
342 window.addListener(listener);
343 window.open();
H A DAddSupportJarAction.java186 AdtUpdateDialog window = new AdtUpdateDialog(
191 Pair<Boolean, File> result = window.installExtraPackage(VENDOR_ID, SUPPORT_ID);
529 public void init(IWorkbenchWindow window) { argument
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
H A DOpenGLTraceAction.java55 public void init(IWorkbenchWindow window) { argument
H A DCollectTraceAction.java36 import org.eclipse.jface.window.Window;
92 public void init(IWorkbenchWindow window) { argument
156 IWorkbenchWindow window = workbench.getActiveWorkbenchWindow();
157 if (window == null) {
161 IWorkbenchPage page = window.getActivePage();
/sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/
H A DMonitorActionBarAdvisor.java46 protected void makeActions(IWorkbenchWindow window) { argument
47 mQuitAction = ActionFactory.QUIT.create(window);
50 mCopyAction = ActionFactory.COPY.create(window);
53 mSelectAllAction = ActionFactory.SELECT_ALL.create(window);
56 mFindAction = ActionFactory.FIND.create(window);
60 mOpenPerspectiveAction = ActionFactory.OPEN_PERSPECTIVE_DIALOG.create(window);
63 mResetPerspectiveAction = ActionFactory.RESET_PERSPECTIVE.create(window);
66 mPreferencesAction = ActionFactory.PREFERENCES.create(window);
69 mAboutAction = ActionFactory.ABOUT.create(window);
/sdk/emulator/opengl/tests/ut_renderer/
H A DRendererSurface.cpp86 NativeWindowType window = nw->createNativeWindow(nw->getNativeDisplay(), width, height); local
87 if (window == 0) {
93 window, NULL);
99 return new RendererSurface(eglDisplay, window, eglSurface, eglConfig);
H A DRendererSurface.h40 RendererSurface(EGLDisplay display, NativeWindowType window, EGLSurface surface, EGLConfig config) : argument
43 m_window(window),
/sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/actions/
H A DInspectScreenshotAction.java88 public void selectionChanged(final IDevice device, final Window window) { argument
H A DLoadViewHierarchyAction.java88 public void selectionChanged(final IDevice device, final Window window) { argument
92 LoadViewHierarchyAction.getAction().setEnabled(window != null);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
H A DExtractStringAction.java74 /** Keep track of the current workbench window. */
81 * Keep track of the current workbench window.
84 public void init(IWorkbenchWindow window) { argument
85 mWindow = window;
102 // ITextSelection on a Java source window
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/renamepackage/
H A DRenamePackageAction.java34 import org.eclipse.jface.window.Window;
82 public void init(IWorkbenchWindow window) { argument
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/actions/
H A DOpenWizardAction.java91 public void init(IWorkbenchWindow window) { argument
106 // get the workbench and the current window
108 IWorkbenchWindow window = workbench.getActiveWorkbenchWindow();
110 // This code from NewWizardShortcutAction#run() gets the current window selection
114 selection = window.getSelectionService().getSelection();
122 IWorkbenchPart part = window.getPartService().getActivePart();
140 Shell parent = window.getShell();
153 window.getWorkbench().getHelpSystem().setHelp(dialog.getShell(),
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
H A DVisualRefactoringAction.java47 * Keep track of the current workbench window.
50 public void init(IWorkbenchWindow window) { argument
51 mWindow = window;
68 // ITextSelection on a Java source window
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
H A DRunLintAction.java102 public void init(IWorkbenchWindow window) { argument
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/
H A DAdtStartup.java247 for (IWorkbenchWindow window : workbench.getWorkbenchWindows()) {
248 LayoutWindowCoordinator.get(window, true /*create*/);
259 IWorkbenchWindow window = workbench.getActiveWorkbenchWindow();
260 if (window != null) {
262 WizardDialog dialog = new WizardDialog(window.getShell(), wizard);
342 public void windowActivated(IWorkbenchWindow window) { argument
346 public void windowDeactivated(IWorkbenchWindow window) { argument
350 public void windowClosed(IWorkbenchWindow window) { argument
351 LayoutWindowCoordinator listener = LayoutWindowCoordinator.get(window, false /*create*/);
358 public void windowOpened(IWorkbenchWindow window) { argument
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
H A DLayoutWindowCoordinator.java37 * The {@link LayoutWindowCoordinator} keeps track of Eclipse window events (opening, closing,
46 * of the window).
48 * inside that window? Not yet done.
62 * There is one coordinator per workbench window, shared between all editors in that window.
65 * window coordination now. For example, it's also used to dispatch {@code activated()} and
72 /** The workbench window */
82 * and perform it lazily if the workbench window does not have an active
87 /** Map from workbench windows to each layout window coordinator instance for that window */
99 get(@onNull IWorkbenchWindow window, boolean create) argument
140 LayoutWindowCoordinator(@onNull IWorkbenchWindow window) argument
[all...]
/sdk/emulator/opengl/host/libs/libOpenglRender/
H A Drender_api.cpp47 // render to a window created by another process.
124 (int)window, portNum, x, y, width, height);
145 // process's window, we need to be responsive for windows
256 int createOpenGLSubwindow(FBNativeWindowType window, argument
260 return FrameBuffer::setupSubWindow(window,x,y,width,height, zRot);

Completed in 1327 milliseconds

12