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

1 2 3 4 5

  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/
LzmaCustomDecompressLib.inf 4 # It is based on the LZMA SDK 16.04.
5 # LZMA SDK 16.04 was placed in the public domain on 2016-10-04.
6 # It was released on the http://www.7-zip.org/sdk.html website.
38 Sdk/C/LzFind.c
39 Sdk/C/LzmaDec.c
40 Sdk/C/7zVersion.h
41 Sdk/C/CpuArch.h
42 Sdk/C/LzFind.h
43 Sdk/C/LzHash.h
44 Sdk/C/LzmaDec.h
    [all...]
LzmaArchCustomDecompressLib.inf 4 # It is based on the LZMA SDK 16.04
5 # LZMA SDK 16.04 was placed in the public domain on 2016-10-04.
6 # It was released on the http://www.7-zip.org/sdk.html website.
38 Sdk/C/Bra.h
39 Sdk/C/LzFind.c
40 Sdk/C/LzmaDec.c
41 Sdk/C/7zVersion.h
42 Sdk/C/CpuArch.h
43 Sdk/C/LzFind.h
44 Sdk/C/LzHash.h
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/
LzmaCustomDecompressLib.inf 4 # It is based on the LZMA SDK 16.04.
5 # LZMA SDK 16.04 was placed in the public domain on 2016-10-04.
6 # It was released on the http://www.7-zip.org/sdk.html website.
38 Sdk/C/LzFind.c
39 Sdk/C/LzmaDec.c
40 Sdk/C/7zVersion.h
41 Sdk/C/CpuArch.h
42 Sdk/C/LzFind.h
43 Sdk/C/LzHash.h
44 Sdk/C/LzmaDec.h
    [all...]
LzmaArchCustomDecompressLib.inf 4 # It is based on the LZMA SDK 16.04
5 # LZMA SDK 16.04 was placed in the public domain on 2016-10-04.
6 # It was released on the http://www.7-zip.org/sdk.html website.
38 Sdk/C/Bra.h
39 Sdk/C/LzFind.c
40 Sdk/C/LzmaDec.c
41 Sdk/C/7zVersion.h
42 Sdk/C/CpuArch.h
43 Sdk/C/LzFind.h
44 Sdk/C/LzHash.h
    [all...]
  /packages/apps/TV/common/src/com/android/tv/common/feature/
Sdk.java 22 /** Holder for SDK version features */
23 public final class Sdk {
40 private Sdk() {}
CommonFeatures.java 49 createTestableFeature(AND(Sdk.AT_LEAST_N, SystemAppFeature.SYSTEM_APP_FEATURE));
  /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);
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/
GNUmakefile 18 SDK_C = Sdk/C
Makefile 19 SDK_C = Sdk\C
  /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.getSdkOsLocation(),
64 AdtPlugin.displayError("Android SDK",
    [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...]
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/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);
  /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...]
  /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...]
  /external/smali/smalidea/src/test/java/org/jf/smalidea/
ClassReferenceTest.java 35 import com.intellij.openapi.projectRoots.Sdk;
130 protected Sdk getTestProjectJdk() {
FieldReferenceTest.java 34 import com.intellij.openapi.projectRoots.Sdk;
124 protected Sdk getTestProjectJdk() {
MethodReferenceTest.java 34 import com.intellij.openapi.projectRoots.Sdk;
140 protected Sdk getTestProjectJdk() {

Completed in 739 milliseconds

1 2 3 4 5