Home | History | Annotate | Download | only in Linker

Lines Matching defs:is_native

39       bool is_native = false;
40 if (LinkInLibrary(I->first, is_native))
42 if (is_native)
46 bool is_native = false;
47 if (LinkInFile(sys::Path(I->first), is_native))
49 if (is_native)
59 bool is_native;
62 if(LinkInLibrary(*I, is_native))
64 if (is_native)
74 bool Linker::LinkInLibrary(StringRef Lib, bool& is_native) {
75 is_native = false;
91 if (LinkInFile(Pathname, is_native))
96 if (LinkInArchive(Pathname, is_native))
107 is_native = true;
126 bool is_native = false;
128 if (LinkInLibrary(Libraries[i], is_native))
139 if (LinkInLibrary(*I, is_native))
158 bool Linker::LinkInFile(const sys::Path &File, bool &is_native) {
159 is_native = false;
193 if (LinkInArchive(File, is_native))
216 is_native = true;
236 bool is_native;
238 if (LinkInFile(Files[i], is_native))