Home
last modified time | relevance | path

Searched refs:macro_prefix (Results 1 – 7 of 7) sorted by relevance

/external/angle/src/libANGLE/renderer/d3d/d3d11/
Dgen_dxgi_support_tables.py25 macro_prefix = 'F_' variable
176 'texture2D': macro_prefix + '2D',
177 'texture3D': macro_prefix + '3D',
178 'textureCube': macro_prefix + 'CUBE',
179 'shaderSample': macro_prefix + 'SAMPLE',
180 'renderTarget': macro_prefix + 'RT',
181 'multisampleRT': macro_prefix + 'MS',
182 'depthStencil': macro_prefix + 'DS',
183 'mipAutoGen': macro_prefix + 'MIPGEN'
328 prefix=macro_prefix,
/external/libchrome/mojo/public/interfaces/bindings/
DBUILD.gn9 macro_prefix = "MOJO_MOJOM_BINDINGS"
/external/libchrome/mojo/public/mojom/base/
DBUILD.gn38 macro_prefix = "MOJO_BASE_MOJOM"
/external/protobuf/src/google/protobuf/compiler/cpp/
Dcpp_helpers.cc603 std::string Int64ToString(const std::string& macro_prefix, int64 number) { in Int64ToString() argument
607 return StrCat(macro_prefix, "_LONGLONG(", number + 1, ") - 1"); in Int64ToString()
609 return StrCat(macro_prefix, "_LONGLONG(", number, ")"); in Int64ToString()
612 std::string UInt64ToString(const std::string& macro_prefix, uint64 number) { in UInt64ToString() argument
613 return StrCat(macro_prefix, "_ULONGLONG(", number, ")"); in UInt64ToString()
/external/libchrome/mojo/public/tools/bindings/
Dmojom.gni1221 # arguments. These are instead shortened to |output_prefix| and |macro_prefix|
1224 assert(defined(invoker.output_prefix) && defined(invoker.macro_prefix))
1231 "macro_prefix",
1234 component_macro_prefix = invoker.macro_prefix
/external/v8/src/torque/
Dimplementation-visitor.h736 std::ostream& o, const std::string& macro_prefix, const std::string& name,
Dimplementation-visitor.cc1717 std::ostream& o, const std::string& macro_prefix, const std::string& name, in GenerateFunctionDeclaration() argument
1728 o << " " << macro_prefix << name << "("; in GenerateFunctionDeclaration()