Home
last modified time | relevance | path

Searched refs:import_path (Results 1 – 2 of 2) sorted by relevance

/aosp12/system/tools/aidl/
H A Daidl.cpp513 string import_path = import_resolver.FindImportFile(import->GetNeededClass()); in load_and_validate_aidl() local
514 if (import_path.empty()) { in load_and_validate_aidl()
525 import_paths.emplace_back(import_path); in load_and_validate_aidl()
527 std::unique_ptr<Parser> import_parser = Parser::Parse(import_path, io_delegate, *typenames); in load_and_validate_aidl()
529 AIDL_ERROR(import_path) << "error while importing " << import_path << " for " << import; in load_and_validate_aidl()
560 const string import_path = import_resolver.FindImportFile(*canonical_name); in load_and_validate_aidl() local
561 if (import_path.empty()) { in load_and_validate_aidl()
564 import_paths.push_back(import_path); in load_and_validate_aidl()
566 std::unique_ptr<Parser> import_parser = Parser::Parse(import_path, io_delegate, *typenames); in load_and_validate_aidl()
568 AIDL_ERROR(import_path) << "error while importing " << import_path << " for " << import_path; in load_and_validate_aidl()
/aosp12/build/make/tools/releasetools/
H A Dcommon.py1009 import_path = tokens[1]
1010 if not re.match(r'^/{}/.*\.prop$'.format(self.partition), import_path):
1020 if prop_place_holder in import_path:
1021 import_path = import_path.replace(prop_place_holder, value)
1022 if '$' in import_path:
1023 logger.info('Unresolved place holder in import path %s', import_path)
1026 import_path = import_path.replace('/{}'.format(self.partition),
1028 logger.info('Parsing build props override from %s', import_path)
1030 lines = ReadFromInputFile(self.input_file, import_path).split('\n')