HomeSort by relevance Sort by last modified time
    Searched refs:Sdk (Results 1 - 25 of 90) sorted by null

1 2 3 4

  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/
SdkLoadingTestCase.java 18 import com.android.ide.common.sdk.LoadStatus;
21 import com.android.ide.eclipse.adt.internal.sdk.AndroidTargetParser;
22 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
30 * A test case which uses the SDK loaded by the ADT plugin.
34 private Sdk mSdk;
40 * Retrieve the {@link Sdk} under test.
42 protected Sdk getSdk() {
52 * Gets the current SDK from ADT, waiting if necessary.
54 private Sdk loadSdk()
86 Sdk sdk = null; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
AdtManifestMergeCallback.java 17 package com.android.ide.eclipse.adt.internal.sdk;
33 Sdk sdk = Sdk.getCurrent(); local
34 if (sdk != null) {
38 IAndroidTarget t = sdk.getTargetFromHashString(hashString);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
AvdManagerAction.java 20 import com.android.ide.eclipse.adt.internal.sdk.AdtConsoleSdkLog;
21 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
50 final Sdk sdk = Sdk.getCurrent(); local
51 if (sdk != null) {
53 // to check whether the SDK has changed on disk.
60 sdk.getSdkLocation(),
64 AdtPlugin.displayError("Android SDK",
    [all...]
AddSupportJarAction.java 24 import com.android.ide.eclipse.adt.internal.sdk.AdtConsoleSdkLog;
25 import com.android.ide.eclipse.adt.internal.sdk.ProjectState;
26 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
146 * Installs the Android Support library into the SDK extras/ folder. If a minimum
161 final Sdk sdk = Sdk.getCurrent(); local
162 if (sdk == null) {
165 "Error: Android SDK is not loaded yet."); //$NON-NLS-1
224 final Sdk sdk = Sdk.getCurrent(); local
297 final Sdk sdk = Sdk.getCurrent(); local
    [all...]
SdkManagerAction.java 24 import com.android.ide.eclipse.adt.internal.sdk.AdtConsoleSdkLog;
25 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
52 * Delegate for the toolbar/menu action "Android SDK Manager".
53 * It displays the Android SDK Manager.
69 // Although orthogonal to the sdk manager action, this is a good time
70 // to check whether the SDK has changed on disk.
74 // If we failed to execute the sdk manager, check the SDK location.
79 // If checkSdkLocationAndId tries to open the SDK Manager, it end up usin
254 final Sdk sdk = Sdk.getCurrent(); local
    [all...]
DexDumpAction.java 23 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
122 Sdk current = Sdk.getCurrent();
125 "DexDump: missing current SDK"); //$NON-NLS-1$
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/properties/
AndroidPropertyPage.java 21 import com.android.ide.eclipse.adt.internal.sdk.ProjectState;
22 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
67 // get the targets from the sdk
69 if (Sdk.getCurrent() != null) {
70 targets = Sdk.getCurrent().getTargets();
115 Sdk currentSdk = Sdk.getCurrent();
117 ProjectState state = Sdk.getProjectState(mProject);
121 // See Sdk.mFileListene
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/
NdkMainLaunchConfigTab.java 21 import com.android.ide.eclipse.adt.internal.sdk.ProjectState;
22 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
34 ProjectState state = Sdk.getProjectState(project);
NdkGdbLaunchShortcut.java 21 import com.android.ide.eclipse.adt.internal.sdk.ProjectState;
22 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
64 ProjectState state = Sdk.getProjectState(project);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestContentAssist.java 25 import com.android.ide.eclipse.adt.internal.sdk.AndroidTargetData;
26 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
63 Sdk sdk = Sdk.getCurrent(); local
64 if (sdk == null) {
67 IAndroidTarget[] targets = sdk.getTargets();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
LaunchShortcut.java 19 import com.android.ide.eclipse.adt.internal.sdk.ProjectState;
20 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
61 ProjectState state = Sdk.getProjectState(project);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/actions/
ExportAction.java 21 import com.android.ide.eclipse.adt.internal.sdk.ProjectState;
22 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
69 ProjectState state = Sdk.getProjectState(project);
ExportWizardAction.java 20 import com.android.ide.eclipse.adt.internal.sdk.ProjectState;
21 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
72 ProjectState state = Sdk.getProjectState(project);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
AndroidPreferencePage.java 21 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
22 import com.android.ide.eclipse.adt.internal.sdk.Sdk.ITargetChangeListener;
100 * contains an SDK.
103 * which a given sdk directory and the *content* of the directory changes such that the sdk
191 l.setText("Note: The list of SDK Targets below is only reloaded once you hit 'Apply' or 'OK'.");
197 // We may not have an sdk if the sdk path pref is empty or not valid
198 Sdk sdk = Sdk.getCurrent(); local
237 Sdk sdk = Sdk.getCurrent(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
NewProjectWizardState.java 25 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
63 /** The build target SDK */
96 /** The minimum SDK version to use with the project (may be null or blank) */
98 /** True if the minimum SDK version has been manually edited by the user */
101 * A list of paths to each of the available samples for the current SDK.
194 * Extract information (package name, application name, minimum SDK etc) from
294 * Try to find an SDK Target that matches the current MinSdkVersion.
296 * There can be multiple targets with the same sdk api version, so don't change
306 Sdk sdk = Sdk.getCurrent() local
351 Sdk sdk = Sdk.getCurrent(); local
    [all...]
SdkSelectionPage.java 20 import com.android.ide.common.sdk.LoadStatus;
24 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
25 import com.android.ide.eclipse.adt.internal.sdk.Sdk.ITargetChangeListener;
55 /** A page in the New Project wizard where you select the target SDK */
116 setDescription("Choose an SDK to select a sample from");
118 setDescription("Choose an SDK to target");
144 * Called when an SDK target is modified.
146 * Also changes the minSdkVersion field to reflect the sdk api level that ha
214 Sdk sdk = Sdk.getCurrent(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
SupportLibraryHelper.java 29 import com.android.ide.eclipse.adt.internal.sdk.ProjectState;
30 import com.android.ide.eclipse.adt.internal.sdk.ProjectState.LibraryState;
31 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
55 * install it via the SDK manager.
56 * <li> (The tool may also offer to adjust the minimum SDK of the project
62 * (if the minimum SDK is less than 14) return "com.android.support.v7.GridLayout"
78 // See if the support library is installed in the SDK area
84 ProjectState state = Sdk.getProjectState(project);
165 ProjectState state = Sdk.getProjectState(project)
    [all...]
AndroidClasspathContainerInitializer.java 20 import com.android.ide.common.sdk.LoadStatus;
23 import com.android.ide.eclipse.adt.internal.sdk.ProjectState;
24 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
171 synchronized (Sdk.getLock()) {
175 ProjectState state = Sdk.getProjectState(iProject);
182 // this might be null if the sdk is not yet loaded.
189 Sdk.getCurrent().checkAndLoadTargetData(target, null /*project*/);
206 // if there is no hash string we only show this if the SDK is loaded.
208 // twice, once when the project is opened, and once after the SDK ha
    [all...]
ProjectChooserHelper.java 20 import com.android.ide.eclipse.adt.internal.sdk.ProjectState;
21 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
74 ProjectState state = Sdk.getProjectState(project);
94 ProjectState state = Sdk.getProjectState(project);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
RuleLoader.java 21 import com.android.ide.eclipse.adt.internal.sdk.ProjectState;
22 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
102 ProjectState state = Sdk.getProjectState(project);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
OverviewExportPart.java 22 import com.android.ide.eclipse.adt.internal.sdk.ProjectState;
23 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
57 ProjectState state = Sdk.getProjectState(project);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sourcelookup/
AdtSourceLookupDirector.java 20 import com.android.ide.eclipse.adt.internal.sdk.ProjectState;
21 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
53 ProjectState state = Sdk.getProjectState(project);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
DeviceMenuListener.java 29 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
76 Sdk sdk = Sdk.getCurrent(); local
77 if (sdk != null) {
78 AvdManager avdManager = sdk.getAvdManager();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeViewWizard.java 27 import com.android.ide.eclipse.adt.internal.sdk.AndroidTargetData;
28 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
108 Sdk currentSdk = Sdk.getCurrent();
171 combo.add("SDK not initialized");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/uimodel/
UiViewElementNode.java 39 import com.android.ide.eclipse.adt.internal.sdk.AndroidTargetData;
40 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
91 Sdk currentSdk = Sdk.getCurrent();

Completed in 201 milliseconds

1 2 3 4