/external/clang/utils/check_cfc/ |
test_check_cfc.py | 139 self.assertIsNone(check_cfc.get_input_file(['clang'])) 142 check_cfc.get_input_file(['clang', 'test.c']), 'test.c') 145 check_cfc.get_input_file(['clang', 'test.cpp']), 'test.cpp') 148 check_cfc.get_input_file(['clang', 'test.c', 'test2.cpp'])) 150 check_cfc.get_input_file(['clang', 'test.c', 'test2.c'])) 152 self.assertIsNone(check_cfc.get_input_file(['clang', 'test.i'])) 153 self.assertIsNone(check_cfc.get_input_file(['clang', 'test.ii'])) 156 check_cfc.get_input_file(['clang', '"test.c"']), '"test.c"') 158 check_cfc.get_input_file(['clang', "'test.c'"]), "'test.c'") 161 check_cfc.get_input_file(['clang', "\"'test.c'\""]), "\"'test.c'\"" [all...] |
check_cfc.py | 121 infile = get_input_file(args) 184 def get_input_file(args): function 205 infile = get_input_file(args) 226 input_is_valid = bool(get_input_file(args)) 384 print("{} {}".format(get_input_file(arguments_a), e.msg), file=sys.stderr)
|
/toolchain/binutils/binutils-2.25/gold/testsuite/ |
plugin_test.c | 62 static ld_plugin_get_input_file get_input_file = NULL; variable 134 get_input_file = entry->tv_u.tv_get_input_file; 484 if (get_input_file == NULL) 502 (*get_input_file) (claimed_file->handle, &file);
|
/external/llvm/tools/gold/ |
gold-plugin.cpp | 67 static ld_plugin_get_input_file get_input_file = nullptr; variable 82 if (get_input_file(Handle, &File) != LDPS_OK) 263 get_input_file = tv->tv_u.tv_get_input_file; 303 if (!get_input_file) { 304 message(LDPL_ERROR, "get_input_file not passed to LLVMgold.");
|
/toolchain/binutils/binutils-2.25/gold/ |
plugin.cc | 100 get_input_file(const void *handle, struct ld_plugin_input_file *file); 261 tv[i].tv_u.tv_get_input_file = get_input_file; 749 Plugin_manager::get_input_file(unsigned int handle, function in class:gold::Plugin_manager 1483 get_input_file(const void* handle, struct ld_plugin_input_file* file) function in namespace:gold [all...] |
plugin.h | 259 get_input_file(unsigned int handle, struct ld_plugin_input_file* file);
|
/toolchain/binutils/binutils-2.25/ld/ |
plugin.c | 439 get_input_file (const void *handle ATTRIBUTE_UNUSED, function 732 TVU(get_input_file) = get_input_file;
|