Searched refs:intentResult (Results 1 – 5 of 5) sorted by relevance
114 ParseResult<ParsedIntentInfo> intentResult = ParsedIntentInfoUtils.parseIntentInfo( in parseIntentFilter() local117 if (intentResult.isError()) { in parseIntentFilter()118 return input.error(intentResult); in parseIntentFilter()121 ParsedIntentInfo intent = intentResult.getResult(); in parseIntentFilter()141 return input.success(intentResult.getResult()); in parseIntentFilter()
134 ParseResult<ParsedIntentInfo> intentResult = ParsedMainComponentUtils in parseService() local139 parseResult = intentResult; in parseService()140 if (intentResult.isSuccess()) { in parseService()141 ParsedIntentInfo intent = intentResult.getResult(); in parseService()
353 ParseResult<ParsedIntentInfo> intentResult = parseIntentFilter(pkg, activity, in parseActivityOrAlias() local355 if (intentResult.isSuccess()) { in parseActivityOrAlias()356 ParsedIntentInfo intent = intentResult.getResult(); in parseActivityOrAlias()379 result = intentResult; in parseActivityOrAlias()385 ParseResult<ParsedIntentInfo> intentResult = parseIntentFilter(pkg, activity, in parseActivityOrAlias() local388 if (intentResult.isSuccess()) { in parseActivityOrAlias()389 ParsedIntentInfo intent = intentResult.getResult(); in parseActivityOrAlias()394 result = intentResult; in parseActivityOrAlias()
169 ParseResult<ParsedIntentInfo> intentResult = ParsedMainComponentUtils in parseProviderTags() local174 result = intentResult; in parseProviderTags()175 if (intentResult.isSuccess()) { in parseProviderTags()176 ParsedIntentInfo intent = intentResult.getResult(); in parseProviderTags()
214 public <ResultType> ParseResult<ResultType> error(ParseResult<?> intentResult) {215 return error(intentResult.getErrorCode(), intentResult.getErrorMessage(),216 intentResult.getException());