OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:KeywordMap
(Results
1 - 7
of
7
) sorted by null
/prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/hlsl/
hlslScanContext.cpp
83
std::unordered_map<const char*, glslang::EHlslTokenClass, str_hash, str_eq>*
KeywordMap
= nullptr;
92
if (
KeywordMap
!= nullptr) {
97
KeywordMap
= new std::unordered_map<const char*, EHlslTokenClass, str_hash, str_eq>;
99
(*
KeywordMap
)["static"] = EHTokStatic;
100
(*
KeywordMap
)["const"] = EHTokConst;
101
(*
KeywordMap
)["unorm"] = EHTokUnorm;
102
(*
KeywordMap
)["snorm"] = EHTokSNorm;
103
(*
KeywordMap
)["extern"] = EHTokExtern;
104
(*
KeywordMap
)["uniform"] = EHTokUniform;
105
(*
KeywordMap
)["volatile"] = EHTokVolatile
[
all
...]
/prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
Scan.cpp
324
std::unordered_map<const char*, int, str_hash, str_eq>*
KeywordMap
= nullptr;
333
if (
KeywordMap
!= nullptr) {
338
KeywordMap
= new std::unordered_map<const char*, int, str_hash, str_eq>;
340
(*
KeywordMap
)["const"] = CONST;
341
(*
KeywordMap
)["uniform"] = UNIFORM;
342
(*
KeywordMap
)["in"] = IN;
343
(*
KeywordMap
)["out"] = OUT;
344
(*
KeywordMap
)["inout"] = INOUT;
345
(*
KeywordMap
)["struct"] = STRUCT;
346
(*
KeywordMap
)["break"] = BREAK
[
all
...]
/system/core/init/
builtins.h
27
class BuiltinFunctionMap : public
KeywordMap
<BuiltinFunction> {
keyword_map.h
26
class
KeywordMap
{
31
virtual ~
KeywordMap
() {
action.h
68
static void set_function_map(const
KeywordMap
<BuiltinFunction>* function_map) {
83
static const
KeywordMap
<BuiltinFunction>* function_map_;
action.cpp
68
const
KeywordMap
<BuiltinFunction>* Action::function_map_ = nullptr;
service.cpp
534
class Service::OptionParserMap : public
KeywordMap
<OptionParser> {
[
all
...]
Completed in 583 milliseconds