Searched defs:CompilerOptions (Results 1 – 2 of 2) sorted by relevance
13 struct CompilerOptions { struct17 std::string additional_options;18 std::string buffer_security_check;19 std::string forced_include_files;20 std::string disable_specific_warnings;21 std::string optimization;45 void ParseCompilerOption(const std::string& cflag, CompilerOptions* options); argument
186 struct CompilerOptions { struct187 std::optional<CVersion> c_version_;188 std::optional<CxxVersion> cxx_version_;190 void SetCVersion(CVersion ver) { SetVersionImpl(c_version_, ver); } in SetCVersion()192 void SetCxxVersion(CxxVersion ver) { SetVersionImpl(cxx_version_, ver); } in SetCxxVersion()196 void SetVersionImpl(std::optional<Version>& cur_ver, Version ver) { in SetVersionImpl()