HomeSort by relevance Sort by last modified time
    Searched defs:sdk (Results 1 - 25 of 31) sorted by null

1 2

  /development/build/tools/
sdk_repo.mk 1 # Makefile to build the SDK repository packages.
10 # $2=sdk zip (e.g. out/host/linux.../android-eng-sdk.zip)
13 define sdk-repo-pkg-zip
14 $(dir $(2))/sdk-repo-$(1)-$(3)-$(FILE_NAME_TAG).zip
17 # Defines the rule to build an SDK repository package by zipping all
19 # E.g. given a folder out/host/linux.../sdk/android-eng-sdk/tools
20 # this generates an sdk-repo-linux-tools that contains tools/*
23 # $2=sdk zip (e.g. out/host/linux.../android-eng-sdk.zip
    [all...]
  /sdk/ide_common/src/com/android/ide/common/sdk/
LoadStatus.java 17 package com.android.ide.common.sdk;
20 * Enum for loading status of various SDK parts.
  /sdk/anttasks/src/com/android/ant/
TaskHelper.java 35 // get the SDK location
40 throw new BuildException("SDK Location is not set.");
43 File sdk = new File(sdkOsPath); local
44 if (sdk.isDirectory() == false) {
45 throw new BuildException(String.format("SDK Location '%s' is not valid.", sdkOsPath));
48 return sdk;
52 * Returns the revision of the tools for a given SDK.
53 * @param sdkFile the {@link File} for the root folder of the SDK
  /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;
47 final Sdk sdk = Sdk.getCurrent(); local
48 if (sdk != null) {
55 sdk.getSdkLocation(),
59 AdtPlugin.displayError("Android SDK",
60 "Location of the Android SDK has not been setup in the preferences.");
    [all...]
SdkManagerAction.java 21 import com.android.ide.eclipse.adt.internal.sdk.AdtConsoleSdkLog;
22 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
35 * Delegate for the toolbar/menu action "Android SDK Manager".
36 * It displays the Android SDK Manager.
49 final Sdk sdk = Sdk.getCurrent(); local
50 if (sdk != null) {
57 sdk.getSdkLocation(),
    [all...]
AddCompatibilityJarAction.java 21 import com.android.ide.eclipse.adt.internal.sdk.AdtConsoleSdkLog;
22 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
117 final Sdk sdk = Sdk.getCurrent(); local
118 if (sdk == null) {
121 "Error: Android SDK is not loaded yet."); //$NON-NLS-1$
133 sdk.getSdkLocation());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
AdtConsoleSdkLog.java 17 package com.android.ide.eclipse.adt.internal.sdk;
27 private static final String TAG = "SDK Manager"; //$NON-NLS-1$
IAndroidClassLoader.java 17 package com.android.ide.eclipse.adt.internal.sdk;
27 * data loaded from the SDK.
LayoutDeviceHandler.java 17 package com.android.ide.eclipse.adt.internal.sdk;
LayoutDevicesXsd.java 17 package com.android.ide.eclipse.adt.internal.sdk;
38 "http://schemas.android.com/sdk/android/layout-devices/1"; //$NON-NLS-1$
AndroidJarLoader.java 17 package com.android.ide.eclipse.adt.internal.sdk;
35 * Custom class loader able to load a class from the SDK jar file.
LayoutParamsParser.java 17 package com.android.ide.eclipse.adt.internal.sdk;
23 import com.android.ide.eclipse.adt.internal.sdk.IAndroidClassLoader.IClassDescriptor;
AndroidTargetData.java 17 package com.android.ide.eclipse.adt.internal.sdk;
22 import com.android.ide.common.sdk.LoadStatus;
46 * This class contains the data of an Android Target as loaded from the SDK.
LayoutDevice.java 17 package com.android.ide.eclipse.adt.internal.sdk;
LayoutDeviceManager.java 17 package com.android.ide.eclipse.adt.internal.sdk;
21 import com.android.ide.eclipse.adt.internal.sdk.LayoutDevice.DeviceConfig;
265 * @param sdkOsLocation location of the SDK.
WidgetClassLoader.java 17 package com.android.ide.eclipse.adt.internal.sdk;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/
SdkTestCase.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;
31 * A test case which uses the SDK loaded by the ADT plugin.
35 private Sdk mSdk;
41 * Retrieve the {@link Sdk} under test.
43 protected Sdk getSdk() {
53 * Gets the current SDK from ADT, waiting if necessary.
55 private Sdk loadSdk()
87 Sdk sdk = null; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/sdk/
AndroidJarLoaderTest.java 17 package com.android.ide.eclipse.adt.internal.sdk;
19 import com.android.ide.eclipse.adt.internal.sdk.AndroidJarLoader;
20 import com.android.ide.eclipse.adt.internal.sdk.IAndroidClassLoader.IClassDescriptor;
LayoutParamsParserTest.java 17 package com.android.ide.eclipse.adt.internal.sdk;
22 import com.android.ide.eclipse.adt.internal.sdk.AndroidJarLoader.ClassWrapper;
23 import com.android.ide.eclipse.adt.internal.sdk.IAndroidClassLoader.IClassDescriptor;
  /external/neven/
FaceDetector_jni.cpp 61 jfieldID sdk; member in struct:FaceDetectorOffsets
99 gFaceDetectorOffsets.sdk = _env->GetFieldID(_this, "mSDK", "I");
138 btk_HSDK sdk = NULL; local
145 btk_Status status = btk_SDK_create(&sdkParam, &sdk);
155 btk_DCR_create( sdk, &dcrParam, &dcr );
162 status = btk_FaceFinder_create( sdk, &fdParam, &fd );
177 _env->SetIntField(_this, gFaceDetectorOffsets.sdk, (jint)sdk);
193 btk_HSDK hsdk = (btk_HSDK)(_env->GetIntField(_this, gFaceDetectorOffsets.sdk));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
BaseBuilder.java 19 import com.android.ide.common.sdk.LoadStatus;
28 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
285 * Aborts the build if the SDK/project setups are broken. This does not
294 Sdk sdk = Sdk.getCurrent(); local
295 if (sdk == null) {
300 IAndroidTarget target = sdk.getTarget(javaProject.getProject());
307 if (sdk.checkAndLoadTargetData(target, javaProject) != LoadStatus.LOADED)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
AndroidPreferencePage.java 20 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
21 import com.android.ide.eclipse.adt.internal.sdk.Sdk.ITargetChangeListener;
98 * contains an SDK.
101 * which a given sdk directory and the *content* of the directory changes such that the sdk
185 l.setText("Note: The list of SDK Targets below is only reloaded once you hit 'Apply' or 'OK'.");
191 // We may not have an sdk if the sdk path pref is empty or not valid
192 Sdk sdk = Sdk.getCurrent(); local
226 Sdk sdk = Sdk.getCurrent(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/sdk/
TestLayoutDevicesXsd.java 17 package com.android.ide.eclipse.adt.internal.sdk;
171 "<d:layout-devices xmlns:d=\"http://schemas.android.com/sdk/android/layout-devices/1\" >" +
184 "<d:layout-devices xmlns:d=\"http://schemas.android.com/sdk/android/layout-devices/1\" >" +
197 "<d:layout-devices xmlns:d=\"http://schemas.android.com/sdk/android/layout-devices/1\" />");
205 "<d:layout-devices xmlns:d=\"http://schemas.android.com/sdk/android/layout-devices/1\" >" +
218 "<d:layout-devices xmlns:d=\"http://schemas.android.com/sdk/android/layout-devices/1\" >" +
234 "<d:layout-devices xmlns:d=\"http://schemas.android.com/sdk/android/layout-devices/1\" >" +
250 "<d:layout-devices xmlns:d=\"http://schemas.android.com/sdk/android/layout-devices/1\" >" +
267 "<d:layout-devices xmlns:d=\"http://schemas.android.com/sdk/android/layout-devices/1\" >" +
284 "<d:layout-devices xmlns:d=\"http://schemas.android.com/sdk/android/layout-devices/1\" >" +
    [all...]
  /sdk/assetstudio/tests/src/com/android/assetstudiolib/
GeneratorTest.java 210 // Set $ADT_SDK_SOURCE_PATH to point to your git "sdk" directory
211 String sdk = System.getenv("ADT_SDK_SOURCE_PATH"); local
212 if (sdk != null) {
213 File sdkPath = new File(sdk);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
NewProjectWizardState.java 21 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
61 /** The build target SDK */
93 /** The minimum SDK version to use with the project (may be null or blank) */
95 /** True if the minimum SDK version has been manually edited by the user */
103 /** A list of paths to each of the available samples for the current SDK */
181 * Extract information (package name, application name, minimum SDK etc) from
281 * Try to find an SDK Target that matches the current MinSdkVersion.
283 * There can be multiple targets with the same sdk api version, so don't change
293 Sdk sdk = Sdk.getCurrent() local
338 Sdk sdk = Sdk.getCurrent(); local
    [all...]

Completed in 6252 milliseconds

1 2