Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/spirv-cross/
Dspirv_cross_parsed_ir.cpp193 static bool is_reserved_identifier(const string &name, bool member, bool allow_reserved_prefixes) in is_reserved_identifier() argument
195 if (!allow_reserved_prefixes && is_reserved_prefix(name)) in is_reserved_identifier()
233 bool ParsedIR::is_globally_reserved_identifier(std::string &str, bool allow_reserved_prefixes) in is_globally_reserved_identifier() argument
235 return is_reserved_identifier(str, false, allow_reserved_prefixes); in is_globally_reserved_identifier()
318 void ParsedIR::sanitize_identifier(std::string &name, bool member, bool allow_reserved_prefixes) in sanitize_identifier() argument
322 if (is_reserved_identifier(name, member, allow_reserved_prefixes)) in sanitize_identifier()
Dspirv_cross_parsed_ir.hpp222 static void sanitize_identifier(std::string &str, bool member, bool allow_reserved_prefixes);
223 static bool is_globally_reserved_identifier(std::string &str, bool allow_reserved_prefixes);