HomeSort by relevance Sort by last modified time
    Searched defs:sdk (Results 126 - 150 of 830) sorted by null

1 2 3 4 56 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
BaseBuilder.java 21 import com.android.ide.common.sdk.LoadStatus;
31 import com.android.ide.eclipse.adt.internal.sdk.ProjectState;
32 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
306 * Aborts the build if the SDK/project setups are broken. This does not
317 Sdk sdk = Sdk.getCurrent(); local
318 if (sdk == null) {
323 projectState = Sdk.getProjectState(javaProject.getProject())
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationDescription.java 35 import com.android.ide.eclipse.adt.internal.sdk.AndroidTargetData;
36 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
377 Sdk sdk = Sdk.getCurrent(); local
378 if (sdk != null) {
379 AndroidTargetData data = sdk.getTargetData(target);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
AndroidTargetData.java 17 package com.android.ide.eclipse.adt.internal.sdk;
25 import com.android.ide.common.sdk.LoadStatus;
49 * This class contains the data of an Android Target as loaded from the SDK.
WidgetClassLoader.java 17 package com.android.ide.eclipse.adt.internal.sdk;
AndroidTargetParser.java 17 package com.android.ide.eclipse.adt.internal.sdk;
58 * Parser for the platform data in an SDK.
84 * @return True if the SDK path was valid and parsing has been attempted.
89 String.format("Parsing SDK %1$s", mAndroidTarget.getName()),
297 Sdk.getCurrent().setTargetData(mAndroidTarget, targetData);
301 AdtPlugin.logAndPrintError(e, TAG, "SDK parser failed"); //$NON-NLS-1$
302 AdtPlugin.printToConsole("SDK parser failed", e.getMessage());
303 return new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, "SDK parser failed", e);
308 * Preloads all "interesting" classes from the framework SDK jar.
312 * @param classLoader The framework SDK jar classloade
    [all...]
ProjectState.java 17 package com.android.ide.eclipse.adt.internal.sdk;
169 * out to other classes (especially those protected by {@link Sdk#getLock()}.)
283 * should be followed by a call to {@link Sdk#loadTarget(ProjectState)}.
  /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.tests/unittests/com/android/ide/common/resources/platform/
AttributeInfoTest.java 294 "SDK git repository", sdkPath);
295 File sdk = new File(sdkPath); local
296 assertNotNull("$ADT_SDK_SOURCE_PATH (" + sdk.getPath() + ") is not a directory",
297 sdk.isDirectory());
298 File git = sdk.getParentFile();
  /prebuilts/gradle-plugin/com/android/tools/analytics-library/protos/25.4.0-alpha5/
protos-25.4.0-alpha5.jar 
  /prebuilts/gradle-plugin/com/android/tools/analytics-library/protos/25.4.0-alpha6/
protos-25.4.0-alpha6.jar 
  /prebuilts/gradle-plugin/com/android/tools/analytics-library/protos/25.4.0-alpha7/
protos-25.4.0-alpha7.jar 
  /external/eigen/Eigen/src/Eigenvalues/
SelfAdjointEigenSolver.h 837 RealScalar sdk = rot.s() * diag[k] + rot.c() * subdiag[k]; local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/dialog/
CallSubjectDialog.java 582 // Only attempt to load configuration from the phone account extras if the SDK is N or
583 // later. If we've got a prior SDK the default encoding and message length will suffice.
584 int sdk = android.os.Build.VERSION.SDK_INT; local
585 if(sdk <= android.os.Build.VERSION_CODES.M) {
  /prebuilts/devtools/tools/lib/
screenshot2.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
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;
152 * Installs the Android Support library into the SDK extras/ folder. If a minimum
167 final Sdk sdk = Sdk.getCurrent(); local
168 if (sdk == null) {
171 "Error: Android SDK is not loaded yet."); //$NON-NLS-1
230 final Sdk sdk = Sdk.getCurrent(); local
369 final Sdk sdk = Sdk.getCurrent(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
EmulatorConfigTab.java 26 import com.android.ide.eclipse.adt.internal.sdk.AdtConsoleSdkLog;
27 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
146 // SDK can be null if the user opens the dialog before ADT finished
147 // initializing the SDK itself. In this case just don't reload anything
149 Sdk sdk = Sdk.getCurrent(); local
150 if (sdk != null) {
151 AvdManager avdMan = sdk.getAvdManager()
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/testutils/24.3.1/
testutils-24.3.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/testutils/24.4.0-alpha1/
testutils-24.4.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/tools/testutils/24.4.0-beta3/
testutils-24.4.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/tools/testutils/24.4.0-beta5/
testutils-24.4.0-beta5.jar 
  /prebuilts/gradle-plugin/com/android/tools/testutils/24.4.0-beta6/
testutils-24.4.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/testutils/24.5.0/
testutils-24.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/testutils/25.0.0/
testutils-25.0.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/testutils/25.0.0-alpha1/
testutils-25.0.0-alpha1.jar 

Completed in 1654 milliseconds

1 2 3 4 56 7 8 91011>>