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

1 2 3 4 5

  /frameworks/base/tools/aapt/
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) {
63 return getIntegerAttribute(tree, ns, attr, -1, outError);
72 int32_t defValue = -1, android::String8* outError = NULL);
80 android::String8* outError) {
81 return getIntegerAttribute(tree, attrRes, -1, outError);
91 android::String8* outError = NULL);
100 android::String8* outError) {
    [all...]
AaptXml.cpp 27 String8* outError) {
30 if (outError != NULL) {
31 *outError = "could not find attribute at index";
37 if (outError != NULL) {
38 *outError = "attribute is not a string value";
49 int32_t defValue, String8* outError) {
52 if (outError != NULL) {
53 *outError = "could not find attribute at index";
60 if (outError != NULL) {
61 *outError = "attribute is not an integer value"
    [all...]
Images.cpp 185 static int tick_type(png_bytep p, bool transparent, const char** outError)
202 *outError = "Frame pixels must be either solid or transparent (not intermediate alphas)";
206 *outError = "Ticks in transparent frame must be black or red";
212 *outError = "White frame must be a solid color (no alpha)";
225 *outError = "Ticks in white frame must be black or red";
239 int32_t* outLeft, int32_t* outRight, const char** outError,
248 if (TICK_TYPE_TICK == tick_type(row+i*4, transparent, outError)) {
259 *outError = "Can't have more than one marked region along edge";
263 } else if (*outError == NULL) {
278 *outError = "No marked region found along edge"
    [all...]
Command.cpp 251 uint32_t attrRes, String8 attrLabel, String8* outError)
254 AaptXml::getResolvedResourceAttribute(resTable, tree, attrRes, &value, outError);
255 if (*outError != "") {
256 *outError = "error print resolved resource attribute";
260 String8 result = AaptXml::getResolvedAttribute(resTable, tree, attrRes, outError);
328 static void printCompatibleScreens(ResXMLTree& tree, String8* outError) {
348 *outError = "failed to get XML element name (bad string pool)";
403 String8 *outError = NULL)
407 if (outError != NULL) *outError = "xml resource does not exist"
    [all...]
ResourceTable.cpp 208 const flag_entry* flags, bool* outError = NULL)
237 if (outError) *outError = true;
244 if (outError) *outError = false;
    [all...]
  /frameworks/base/tools/aapt2/util/
Files.cpp 68 std::vector<std::string> listFiles(const StringPiece& root, std::string* outError) {
71 if (outError) {
74 *outError = errorStr.str();
166 Maybe<android::FileMap> mmapPath(const StringPiece& path, std::string* outError) {
169 if (outError) *outError = strerror(errno);
177 if (outError) *outError = strerror(errno);
188 if (outError) *outError = strerror(errno)
    [all...]
Files.h 96 Maybe<android::FileMap> mmapPath(const StringPiece& path, std::string* outError);
102 std::string* outError);
  /frameworks/base/tools/aapt2/
Flags.cpp 114 std::ostream* outError) {
123 usage(command, outError);
133 *outError << flag.name << " missing argument.\n\n";
134 usage(command, outError);
148 *outError << "unknown option '" << arg << "'.\n\n";
149 usage(command, outError);
156 *outError << "missing required flag " << flag.name << "\n\n";
157 usage(command, outError);
Flags.h 46 std::ostream* outError);
ResourceUtils.h 91 Maybe<Reference> parseStyleParentReference(const StringPiece16& str, std::string* outError);
ResourceUtils.cpp 188 Maybe<Reference> parseStyleParentReference(const StringPiece16& str, std::string* outError) {
220 *outError = err.str();
228 *outError = err.str();
322 static uint32_t parseHex(char16_t c, bool* outError) {
330 *outError = true;
  /frameworks/base/tools/aapt2/link/
ReferenceLinker.h 53 * not visible by the reference at the callsite, nullptr is returned. outError holds
60 std::string* outError);
70 std::string* outError);
74 * If resolution fails, outError holds the error message.
80 std::string* outError);
ReferenceLinker.cpp 196 CallSite* callSite, std::string* outError) {
199 if (outError) *outError = "not found";
204 if (outError) *outError = "is private";
212 CallSite* callSite, std::string* outError) {
215 outError);
221 if (outError) *outError = "is not an attribute";
231 std::string* outError) {
    [all...]
Link.cpp 837 std::string* outError) {
839 input, outError);
    [all...]
  /frameworks/base/tools/aapt2/io/
ZipArchive.cpp 77 std::string* outError) {
91 if (outError) *outError = ErrorCodeString(result);
98 if (outError) *outError = ErrorCodeString(result);
117 if (outError) *outError = ErrorCodeString(result);
ZipArchive.h 65 std::string* outError);
  /frameworks/base/core/java/android/content/pm/
PackageParser.java 129 // TODO: switch outError users to PackageParserException
269 final String[] outError;
284 outError = _outError;
    [all...]
  /frameworks/base/tools/aapt2/compile/
Png.cpp 607 static TickType tickType(png_bytep p, bool transparent, const char** outError) {
623 *outError = "Frame pixels must be either solid or transparent "
629 *outError = "Ticks in transparent frame must be black or red";
635 *outError = "White frame must be a solid color (no alpha)";
648 *outError = "Ticks in white frame must be black or red";
661 int32_t* outLeft, int32_t* outRight, const char** outError,
668 if (tickType(row+i*4, transparent, outError) == TickType::kTick) {
679 *outError = "Can't have more than one marked region along edge";
683 } else if (!*outError) {
698 *outError = "No marked region found along edge"
    [all...]
Compile.cpp 62 std::string* outError) {
65 if (outError) *outError = "bad resource path";
78 if (outError) {
81 *outError = errStr.str();
  /frameworks/base/services/core/java/com/android/server/am/
ProcessStatsService.java 394 String[] outError) {
407 outError[0] = "inconsistent separators (can't mix ',' with '+')";
420 outError[0] = "invalid word \"" + str + "\"";
    [all...]
  /external/robolectric/v3/runtime/
android-all-4.3_r2-robolectric-0.jar 
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
  /external/robolectric/v3/libs/
sqlite4java-0.282.jar 
  /prebuilts/tools/common/m2/repository/com/almworks/sqlite4java/sqlite4java/0.282/
sqlite4java-0.282.jar 

Completed in 337 milliseconds

1 2 3 4 5