| /third_party/boost/libs/spirit/example/qi/compiler_tutorial/mini_c/ |
| D | compiler.hpp | 60 struct compiler struct 62 typedef bool result_type; 65 compiler(ErrorHandler& error_handler_) in compiler() function 76 bool operator()(ast::nil) { BOOST_ASSERT(0); return false; } in operator ()() 99 std::vector<int>& get_code() { return code; } in get_code() 100 std::vector<int> const& get_code() const { return code; } in get_code() 104 typedef std::map<std::string, boost::shared_ptr<code_gen::function> > function_table; 106 std::vector<int> code; 107 code_gen::function* current; 108 std::string current_function_name; [all …]
|
| /third_party/boost/libs/spirit/example/qi/compiler_tutorial/conjure2/ |
| D | compiler.hpp | 60 struct compiler struct 62 typedef bool result_type; 65 compiler(ErrorHandler& error_handler_) in compiler() function 76 bool operator()(ast::nil) { BOOST_ASSERT(0); return false; } in operator ()() 99 std::vector<int>& get_code() { return code; } in get_code() 100 std::vector<int> const& get_code() const { return code; } in get_code() 109 typedef std::map<std::string, boost::shared_ptr<code_gen::function> > function_table; 111 std::vector<int> code; 112 code_gen::function* current; 113 std::string current_function_name; [all …]
|
| /third_party/boost/libs/spirit/example/qi/compiler_tutorial/conjure1/ |
| D | compiler.hpp | 60 struct compiler struct 62 typedef bool result_type; 65 compiler(ErrorHandler& error_handler_) in compiler() function 76 bool operator()(ast::nil) { BOOST_ASSERT(0); return false; } in operator ()() 99 std::vector<int>& get_code() { return code; } in get_code() 100 std::vector<int> const& get_code() const { return code; } in get_code() 109 typedef std::map<std::string, boost::shared_ptr<code_gen::function> > function_table; 111 std::vector<int> code; 112 code_gen::function* current; 113 std::string current_function_name; [all …]
|
| /third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/ |
| D | ShaderLang.cpp | 40 const std::vector<Uniform> *GetVariableList(const TCompiler *compiler) in GetVariableList() 46 const std::vector<Varying> *GetVariableList(const TCompiler *compiler) in GetVariableList() 65 const std::vector<Attribute> *GetVariableList(const TCompiler *compiler) in GetVariableList() 71 const std::vector<OutputVariable> *GetVariableList(const TCompiler *compiler) in GetVariableList() 77 const std::vector<InterfaceBlock> *GetVariableList(const TCompiler *compiler) in GetVariableList() 96 TCompiler *compiler = GetCompilerFromHandle(handle); in GetShaderVariables() local 309 TCompiler *compiler = base->getAsCompiler(); in ConstructCompiler() local 338 TCompiler *compiler = GetCompilerFromHandle(handle); in GetBuiltInResourcesString() local 355 TCompiler *compiler = GetCompilerFromHandle(handle); in Compile() local 363 TCompiler *compiler = GetCompilerFromHandle(handle); in ClearResults() local [all …]
|
| D | CodeGen.cpp | 70 void DeleteCompiler(TCompiler *compiler) in DeleteCompiler()
|
| /third_party/boost/libs/spirit/example/x3/calc/calc8/ |
| D | compiler.hpp | 47 struct compiler struct 49 typedef bool result_type; 52 error_handler_type; 55 compiler( in compiler() function 61 { error_handler(pos, msg); } in compiler() 65 bool operator()(ast::nil) const { BOOST_ASSERT(0); return false; } in operator ()() 75 client::code_gen::program& program; 76 error_handler_type error_handler;
|
| /third_party/boost/libs/spirit/example/x3/calc/calc9/ |
| D | compiler.hpp | 48 struct compiler struct 50 typedef bool result_type; 53 error_handler_type; 56 compiler( in compiler() argument 62 { error_handler(pos, msg); } in compiler() 66 bool operator()(ast::nil) const { BOOST_ASSERT(0); return false; } in operator ()() 82 client::code_gen::program& program; 83 error_handler_type error_handler;
|
| /third_party/boost/libs/spirit/example/x3/calc/calc7/ |
| D | compiler.hpp | 17 struct compiler struct 19 typedef void result_type; 21 std::vector<int>& code; 22 compiler(std::vector<int>& code) in compiler() function
|
| /third_party/boost/libs/spirit/example/qi/compiler_tutorial/calc7/ |
| D | compiler.hpp | 51 struct compiler struct 53 typedef bool result_type; 56 compiler(client::code_gen::program& program, ErrorHandler& error_handler_) in compiler() function 67 bool operator()(ast::nil) const { BOOST_ASSERT(0); return false; } in operator ()() 77 client::code_gen::program& program; 81 error_handler;
|
| /third_party/boost/libs/spirit/example/qi/compiler_tutorial/calc8/ |
| D | compiler.hpp | 52 struct compiler struct 54 typedef bool result_type; 57 compiler(client::code_gen::program& program, ErrorHandler& error_handler_) in compiler() function 68 bool operator()(ast::nil) const { BOOST_ASSERT(0); return false; } in operator ()() 84 client::code_gen::program& program; 88 error_handler;
|
| /third_party/boost/libs/spirit/example/qi/compiler_tutorial/conjure3/ |
| D | compiler.hpp | 247 struct compiler : llvm_compiler struct 249 typedef value result_type; 252 compiler(vmachine& vm, ErrorHandler& error_handler_) in compiler() argument 263 value operator()(ast::nil) { BOOST_ASSERT(0); return val(); } in operator ()() 301 error_handler; 303 bool void_return; 304 std::string current_function_name; 305 std::map<std::string, value> locals; 306 basic_block return_block; 307 value return_var;
|
| /third_party/boost/libs/spirit/example/x3/calc/ |
| D | calc6.cpp | 172 struct compiler struct 174 typedef void result_type; 176 std::vector<int>& code; 177 compiler(std::vector<int>& code) in compiler() argument 180 void operator()(ast::nil) const { BOOST_ASSERT(0); } in operator ()() 181 void operator()(unsigned int n) const in operator ()() 187 void operator()(ast::operation const& x) const in operator ()() 200 void operator()(ast::signed_ const& x) const in operator ()() 211 void operator()(ast::expression const& x) const in operator ()() 302 typedef client::compiler compiler; in main() typedef
|
| /third_party/boost/libs/spirit/example/qi/compiler_tutorial/ |
| D | calc6.cpp | 187 struct compiler struct 189 typedef void result_type; 191 std::vector<int>& code; 192 compiler(std::vector<int>& code) in compiler() function 195 void operator()(ast::nil) const { BOOST_ASSERT(0); } in operator ()() 196 void operator()(unsigned int n) const in operator ()() 202 void operator()(ast::operation const& x) const in operator ()() 215 void operator()(ast::signed_ const& x) const in operator ()() 226 void operator()(ast::expression const& x) const in operator ()() 332 typedef client::compiler compiler; in main() typedef
|
| /third_party/flutter/skia/src/sksl/ |
| D | SkSLMain.cpp | 68 SkSL::Compiler compiler; in main() local 84 SkSL::Compiler compiler; in main() local 100 SkSL::Compiler compiler; in main() local 116 SkSL::Compiler compiler(SkSL::Compiler::kPermitInvalidStaticTests_Flag); in main() local 133 SkSL::Compiler compiler(SkSL::Compiler::kPermitInvalidStaticTests_Flag); in main() local
|
| /third_party/flutter/skia/third_party/externals/angle2/src/tests/compiler_tests/ |
| D | ConstructCompiler_test.cpp | 19 ShHandle compiler = sh::ConstructCompiler(GL_FRAGMENT_SHADER, SH_WEBGL_SPEC, in TEST() local 30 ShHandle compiler = sh::ConstructCompiler(GL_FRAGMENT_SHADER, SH_WEBGL_SPEC, in TEST() local 42 ShHandle compiler = sh::ConstructCompiler(GL_FRAGMENT_SHADER, SH_WEBGL_SPEC, in TEST() local
|
| D | ShaderVariable_test.cpp | 220 ShHandle compiler = sh::ConstructCompiler(GL_VERTEX_SHADER, SH_GLES2_SPEC, in TEST() local 243 ShHandle compiler = sh::ConstructCompiler(GL_VERTEX_SHADER, SH_GLES2_SPEC, in TEST() local 278 ShHandle compiler = sh::ConstructCompiler(GL_VERTEX_SHADER, SH_GLES2_SPEC, in TEST() local 320 ShHandle compiler = sh::ConstructCompiler(GL_VERTEX_SHADER, SH_GLES2_SPEC, in TEST() local 363 ShHandle compiler = sh::ConstructCompiler(GL_VERTEX_SHADER, SH_GLES2_SPEC, in TEST() local
|
| /third_party/boost/libs/metaparse/tools/benchmark/ |
| D | benchmark.py | 49 filename, compiler, include_dirs, (progress_from, progress_to), argument 76 def compiler_info(compiler): argument 132 def benchmark(src_dir, compiler, include_dirs, iter_count): argument 268 def plot_diagrams(results, configs, compiler, out_dir): argument
|
| /third_party/boost/boost/spirit/home/support/ |
| D | meta_compiler.hpp | 235 struct compiler struct 240 compile(Expr const& expr, Modifiers modifiers, mpl::true_) in compile() 242 typename meta_compiler<Domain>::meta_grammar compiler; in compile() local 249 compile(Expr const& expr, Modifiers modifiers, mpl::false_) in compile() 251 typename meta_compiler<Domain>::meta_grammar compiler; in compile() local
|
| /third_party/boost/libs/xpressive/test/ |
| D | test_dynamic_grammar.cpp | 28 sregex_compiler compiler; in test_dynamic_grammar() local 64 sregex_compiler compiler; in test_dynamic_grammar2() local
|
| /third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/d3d12/ |
| D | ShaderModuleD3D12.cpp | 30 spirv_cross::CompilerHLSL compiler(mSpirv); in ShaderModule() local 35 spirv_cross::CompilerHLSL compiler(mSpirv); in GetHLSLSource() local
|
| /third_party/flutter/skia/modules/particles/src/ |
| D | SkParticleEffect.cpp | 32 SkParticleExternalValue(const char* name, SkSL::Compiler& compiler, const SkSL::Type& type) in SkParticleExternalValue() 49 SkCurveExternalValue(const char* name, SkSL::Compiler& compiler, const SkCurve& curve) in SkCurveExternalValue() 81 std::unique_ptr<SkParticleExternalValue> toValue(SkSL::Compiler& compiler) override { in toValue() 93 SkColorCurveExternalValue(const char* name, SkSL::Compiler& compiler, const SkColorCurve& curve) in SkColorCurveExternalValue() 129 std::unique_ptr<SkParticleExternalValue> toValue(SkSL::Compiler& compiler) override { in toValue() 157 SkPathExternalValue(const char* name, SkSL::Compiler& compiler, const SkPathContours* path) in SkPathExternalValue() 208 std::unique_ptr<SkParticleExternalValue> toValue(SkSL::Compiler& compiler) override { in toValue() 251 std::unique_ptr<SkParticleExternalValue> toValue(SkSL::Compiler& compiler) override { in toValue() 299 SkRandomExternalValue(const char* name, SkSL::Compiler& compiler) in SkRandomExternalValue() 364 SkSL::Compiler compiler; in rebuild() local
|
| /third_party/grpc/src/python/grpcio/ |
| D | support.py | 53 def _compile(compiler, source_string): argument 66 def _expect_compile(compiler, source_string, error_message): argument
|
| /third_party/flutter/skia/tests/ |
| D | SkSLInterpreterTest.cpp | 27 SkSL::Compiler compiler; in test() local 76 SkSL::Compiler compiler; in vec_test() local 118 SkSL::Compiler compiler; in test() local 540 SkSL::Compiler compiler; in DEF_TEST() local 617 SkSL::Compiler compiler; in expect_failure() local 628 SkSL::Compiler compiler; in expect_run_failure() local 679 SkSL::Compiler compiler; in DEF_TEST() local 831 static const SkSL::Type& type_of(const skjson::Value* value, SkSL::Compiler* compiler) { in type_of() 849 JSONExternalValue(const char* name, const skjson::Value* value, SkSL::Compiler* compiler) in JSONExternalValue() 921 SkSL::Compiler compiler; in DEF_TEST() local [all …]
|
| /third_party/weex-loader/src/ |
| D | template.js | 27 const compiler = require('./lite/lite-transform-template') constant
|
| /third_party/protobuf/src/google/protobuf/compiler/java/ |
| D | java_doc_comment_unittest.cc | 39 namespace compiler { namespace
|