/frameworks/base/tools/aapt/ |
D | AaptXml.cpp | 27 String8* outError) { in getStringAttributeAtIndex() argument 30 if (outError != NULL) { in getStringAttributeAtIndex() 31 *outError = "could not find attribute at index"; in getStringAttributeAtIndex() 37 if (outError != NULL) { in getStringAttributeAtIndex() 38 *outError = "attribute is not a string value"; in getStringAttributeAtIndex() 49 int32_t defValue, String8* outError) { in getIntegerAttributeAtIndex() argument 52 if (outError != NULL) { in getIntegerAttributeAtIndex() 53 *outError = "could not find attribute at index"; in getIntegerAttributeAtIndex() 60 if (outError != NULL) { in getIntegerAttributeAtIndex() 61 *outError = "attribute is not an integer value"; in getIntegerAttributeAtIndex() [all …]
|
D | AaptXml.h | 38 const char* attr, android::String8* outError = NULL); 46 android::String8* outError = NULL); 54 const char* attr, int32_t defValue = -1, android::String8* outError = NULL); 62 const char* attr, android::String8* outError) { in getIntegerAttribute() argument 63 return getIntegerAttribute(tree, ns, attr, -1, outError); in getIntegerAttribute() 72 int32_t defValue = -1, android::String8* outError = NULL); 80 android::String8* outError) { in getIntegerAttribute() argument 81 return getIntegerAttribute(tree, attrRes, -1, outError); in getIntegerAttribute() 91 android::String8* outError = NULL); 100 android::String8* outError) { in getResolvedIntegerAttribute() argument [all …]
|
D | Images.cpp | 185 static int tick_type(png_bytep p, bool transparent, const char** outError) in tick_type() argument 202 … *outError = "Frame pixels must be either solid or transparent (not intermediate alphas)"; in tick_type() 206 *outError = "Ticks in transparent frame must be black or red"; in tick_type() 212 *outError = "White frame must be a solid color (no alpha)"; in tick_type() 225 *outError = "Ticks in white frame must be black or red"; in tick_type() 239 int32_t* outLeft, int32_t* outRight, const char** outError, in get_horizontal_ticks() argument 248 if (TICK_TYPE_TICK == tick_type(row+i*4, transparent, outError)) { in get_horizontal_ticks() 259 *outError = "Can't have more than one marked region along edge"; in get_horizontal_ticks() 263 } else if (*outError == NULL) { in get_horizontal_ticks() 278 *outError = "No marked region found along edge"; in get_horizontal_ticks() [all …]
|
D | Command.cpp | 233 uint32_t attrRes, const String8& attrLabel, String8* outError) in printResolvedResourceAttribute() argument 236 AaptXml::getResolvedResourceAttribute(resTable, tree, attrRes, &value, outError); in printResolvedResourceAttribute() 237 if (*outError != "") { in printResolvedResourceAttribute() 238 *outError = "error print resolved resource attribute"; in printResolvedResourceAttribute() 242 String8 result = AaptXml::getResolvedAttribute(resTable, tree, attrRes, outError); in printResolvedResourceAttribute() 314 static void printCompatibleScreens(ResXMLTree& tree, String8* outError) { in printCompatibleScreens() argument 334 *outError = "failed to get XML element name (bad string pool)"; in printCompatibleScreens() 401 String8 *outError = NULL) in getNfcAidCategories() argument 405 if (outError != NULL) *outError = "xml resource does not exist"; in getNfcAidCategories() 426 *outError = "failed to get XML element name (bad string pool)"; in getNfcAidCategories() [all …]
|
D | ResourceTable.cpp | 216 const flag_entry* flags, bool* outError = NULL) in parse_flags() argument 245 if (outError) *outError = true; in parse_flags() 252 if (outError) *outError = false; in parse_flags()
|
/frameworks/base/tools/aapt2/compile/ |
D | Png.cpp | 632 static TickType tickType(png_bytep p, bool transparent, const char** outError) { in tickType() argument 648 *outError = in tickType() 655 *outError = "Ticks in transparent frame must be black or red"; in tickType() 661 *outError = "White frame must be a solid color (no alpha)"; in tickType() 674 *outError = "Ticks in white frame must be black or red"; in tickType() 684 int32_t* outRight, const char** outError, in getHorizontalTicks() argument 691 if (tickType(row + i * 4, transparent, outError) == TickType::kTick) { in getHorizontalTicks() 702 *outError = "Can't have more than one marked region along edge"; in getHorizontalTicks() 706 } else if (!*outError) { in getHorizontalTicks() 721 *outError = "No marked region found along edge"; in getHorizontalTicks() [all …]
|
/frameworks/base/core/java/android/content/pm/ |
D | PackageParser.java | 321 final String[] outError; field in PackageParser.ParsePackageItemArgs 336 outError = _outError; in ParsePackageItemArgs() 1383 final String[] outError = new String[1]; in parseBaseApk() local 1384 final Package pkg = parseBaseApk(apkPath, res, parser, flags, outError); in parseBaseApk() 1387 apkPath + " (at " + parser.getPositionDescription() + "): " + outError[0]); in parseBaseApk() 1429 final String[] outError = new String[1]; in parseSplitApk() local 1430 pkg = parseSplitApk(pkg, res, parser, flags, splitIndex, outError); in parseSplitApk() 1433 apkPath + " (at " + parser.getPositionDescription() + "): " + outError[0]); in parseSplitApk() 1454 int splitIndex, String[] outError) throws XmlPullParserException, IOException, in parseSplitApk() argument 1478 outError[0] = "<manifest> has more than one <application>"; in parseSplitApk() [all …]
|
/frameworks/base/core/tests/coretests/src/android/content/pm/ |
D | PackageParserTest.java | 71 final String[] outError = new String[1]; in verifyComputeMinSdkVersion() local 77 outError); in verifyComputeMinSdkVersion() 79 assertEquals("Error msg: " + outError[0], expectedMinSdk, result); in verifyComputeMinSdkVersion() 82 assertNotNull(outError[0]); in verifyComputeMinSdkVersion() 84 assertNull(outError[0]); in verifyComputeMinSdkVersion() 167 final String[] outError = new String[1]; in verifyComputeTargetSdkVersion() local 172 outError); in verifyComputeTargetSdkVersion() 177 assertNotNull(outError[0]); in verifyComputeTargetSdkVersion() 179 assertNull(outError[0]); in verifyComputeTargetSdkVersion()
|
/frameworks/base/tools/aapt2/io/ |
D | FileSystem.cpp | 72 std::string* outError) { in Create() argument 78 *outError = "failed to open directory: " + SystemErrorCodeToString(errno); in Create() 95 *outError = "failed to open directory: " + SystemErrorCodeToString(errno); in Create()
|
D | FileSystem.h | 64 std::string* outError);
|
D | ZipArchive.h | 65 std::string* outError);
|
/frameworks/base/tools/aapt2/cmd/ |
D | Command.h | 84 int Execute(const std::vector<android::StringPiece>& args, std::ostream* outError);
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | ProcessStatsService.java | 448 String[] outError) { in parseStateList() argument 461 outError[0] = "inconsistent separators (can't mix ',' with '+')"; in parseStateList() 474 outError[0] = "invalid word \"" + str + "\""; in parseStateList()
|
/frameworks/base/libs/androidfw/ |
D | ResourceTypes.cpp | 5124 static uint32_t get_hex(char c, bool* outError) in get_hex() argument 5133 *outError = true; in get_hex()
|
/frameworks/base/config/ |
D | hiddenapi-greylist-max-o.txt | 15664 Landroid/content/pm/PackageParser$ParsePackageItemArgs;->outError:[Ljava/lang/String;
|