Lines Matching full:sdk

36   /// to notify us about an SDK mismatch.
39 /// 'true if the test expects the parsed SDK to
43 /// A substring that the final parsed sdk
89 - MacOSX10.9.sdk
121 XcodeSDK sdk = sym_file.ParseXcodeSDK(*comp_unit);
122 ASSERT_EQ(sdk.GetType(), XcodeSDK::Type::MacOSX);
127 // Tests that parsing a CU with an invalid SDK directory name fails.
202 - CStr: "/Library/Developer/CommandLineTools/SDKs/iPhoneOS14.0.Internal.sdk"
219 // Tests that we can parse the SDK path from debug-info.
221 // points to an internal SDK, we should pick the internal SDK.
249 for (auto &&sdk : createCompileUnits(input_sdk_paths))
250 yamldata += std::move(sdk);
266 auto [sdk, found_mismatch] = *sdk_or_err;
269 EXPECT_EQ(sdk.IsAppleInternalSDK(), expect_internal_sdk);
270 EXPECT_NE(sdk.GetString().find(expect_sdk_path_pattern), std::string::npos);
276 EXPECT_EQ(sdk.IsAppleInternalSDK(), expect_internal_sdk);
283 {"/Library/Developer/CommandLineTools/SDKs/MacOSX10.9.sdk",
284 "/invalid/path/to/something.invalid.sdk",
285 "/Library/Developer/CommandLineTools/SDKs/iPhoneOS14.0.Internal.sdk",
286 "/Library/Developer/CommandLineTools/SDKs/MacOSX10.9.sdk"},
289 .expect_sdk_path_pattern = "Internal.sdk"},
291 /// Single CU with a public SDK
293 {"/Library/Developer/CommandLineTools/SDKs/MacOSX10.9.sdk"},
296 .expect_sdk_path_pattern = "MacOSX10.9.sdk"},
298 /// Single CU with an internal SDK
300 {"/Library/Developer/CommandLineTools/SDKs/iPhoneOS14.0.Internal.sdk"},
303 .expect_sdk_path_pattern = "Internal.sdk"},
305 /// Two CUs with an internal SDK each
307 {"/Library/Developer/CommandLineTools/SDKs/iPhoneOS14.0.Internal.sdk",
308 "/Library/Developer/CommandLineTools/SDKs/iPhoneOS12.9.Internal.sdk"},
311 .expect_sdk_path_pattern = "Internal.sdk"},
313 /// Two CUs with an internal SDK each
315 {"/Library/Developer/CommandLineTools/SDKs/iPhoneOS14.1.sdk",
316 "/Library/Developer/CommandLineTools/SDKs/MacOSX11.3.sdk"},
319 .expect_sdk_path_pattern = "iPhoneOS14.1.sdk"},