Searched refs:apiLevel (Results 1 – 9 of 9) sorted by relevance
/external/android-mock/src/com/google/android/testing/mocking/ |
D | SdkVersion.java | 56 private final int apiLevel; field in SdkVersion 58 private SdkVersion(String packagePrefix, int apiLevel) { in SdkVersion() argument 61 this.apiLevel = apiLevel; in SdkVersion() 98 static SdkVersion getVersionFor(int apiLevel) { in getVersionFor() argument 100 if (version.apiLevel == apiLevel) { in getVersionFor()
|
/external/smali/smali/src/main/java/org/jf/smali/ |
D | main.java | 109 int apiLevel = 14; in main() local 142 apiLevel = Integer.parseInt(commandLine.getOptionValue("a")); in main() 190 Opcode.updateMapsForApiLevel(apiLevel, jumboInstructions); in main() 194 if (apiSet && apiLevel >= 14) { in main() 201 … if (!assembleSmaliFile(file, dexFile, verboseErrors, printTokens, allowOdex, apiLevel)) { in main() 276 boolean printTokens, boolean allowOdex, int apiLevel) in assembleSmaliFile() argument 307 parser.setApiLevel(apiLevel); in assembleSmaliFile()
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/ |
D | main.java | 117 int apiLevel = 14; in main() local 221 apiLevel = Integer.parseInt(commandLine.getOptionValue("a")); in main() 222 if (apiLevel >= 17) { in main() 277 Opcode.updateMapsForApiLevel(apiLevel, jumboInstructions); in main()
|
/external/qemu/android/avd/ |
D | hw-config.c | 57 int apiLevel ) in androidHwConfig_init() argument 72 if (apiLevel >= 12) { in androidHwConfig_init()
|
D | hw-config.h | 39 int apiLevel );
|
D | info.c | 119 int apiLevel; member 722 i->apiLevel = _avdInfo_getApiLevel(i); in avdInfo_new() 817 i->apiLevel = path_getBuildTargetApiLevel(i->androidOut); in avdInfo_newForAndroidBuild() 1002 androidHwConfig_init(hw, i->apiLevel); in avdInfo_initHwConfig()
|
/external/doclava/res/assets/templates/assets/ |
D | doclava-developer-reference.js | 90 var apiLevel = className.substring(apiLevelIndex, apiLevelEndIndex); 91 …if (apiLevel > selectedLevel) obj.addClass("absent").attr("title","Requires API Level "+apiLevel+"…
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/ |
D | Opcode.java | 429 public static void updateMapsForApiLevel(int apiLevel, boolean includeJumbo) { in updateMapsForApiLevel() argument 430 if (apiLevel < 5) { in updateMapsForApiLevel() 433 if (apiLevel < 8) { in updateMapsForApiLevel() 436 if (apiLevel < 9) { in updateMapsForApiLevel() 441 if (apiLevel < 11) { in updateMapsForApiLevel() 444 if (apiLevel < 14) { in updateMapsForApiLevel() 448 if (apiLevel < 14 || !includeJumbo) { in updateMapsForApiLevel()
|
/external/smali/smali/src/main/antlr3/ |
D | smaliParser.g | 283 private int apiLevel; 293 public void setApiLevel(int apiLevel) { 294 this.apiLevel = apiLevel; 918 …if (!allowOdex || Opcode.getOpcodeByName($INSTRUCTION_FORMAT20bc.text) == null || apiLevel >= 14) { 939 …Odex || Opcode.getOpcodeByName($INSTRUCTION_FORMAT21c_FIELD_ODEX.text) == null || apiLevel >= 14) { 984 …Odex || Opcode.getOpcodeByName($INSTRUCTION_FORMAT22c_FIELD_ODEX.text) == null || apiLevel >= 14) {
|