Home
last modified time | relevance | path

Searched refs:Compiler (Results 1 - 25 of 143) sorted by relevance

123456

/third_party/rust/crates/proc-macro2/src/
H A Dwrapper.rs14 Compiler(DeferredTokenStream),
29 Compiler(proc_macro::LexError),
80 TokenStream::Compiler(DeferredTokenStream::new(proc_macro::TokenStream::new())) in new()
88 TokenStream::Compiler(tts) => tts.is_empty(), in is_empty()
95 TokenStream::Compiler(s) => s.into_token_stream(), in unwrap_nightly()
102 TokenStream::Compiler(_) => mismatch(line!()), in unwrap_stable()
113 Ok(TokenStream::Compiler(DeferredTokenStream::new( in from_str()
124 let result = panic::catch_unwind(|| src.parse().map_err(LexError::Compiler)); in proc_macro_parse()
131 TokenStream::Compiler(tts) => Display::fmt(&tts.clone().into_token_stream(), f), in fmt()
139 TokenStream::Compiler(DeferredTokenStrea in from()
[all...]
H A Dextra.rs23 Compiler {
35 imp::Group::Compiler(group) => DelimSpanEnum::Compiler {
56 DelimSpanEnum::Compiler { join, .. } => Span::_new(imp::Span::Compiler(*join)), in join()
65 DelimSpanEnum::Compiler { open, .. } => Span::_new(imp::Span::Compiler(*open)), in open()
74 DelimSpanEnum::Compiler { close, .. } => Span::_new(imp::Span::Compiler(*close)), in close()
/third_party/skia/third_party/externals/spirv-cross/
H A Dspirv_cross.cpp37 Compiler::Compiler(vector<uint32_t> ir_) in Compiler() function in Compiler
44 Compiler::Compiler(const uint32_t *ir_, size_t word_count) in Compiler() function in Compiler
51 Compiler::Compiler(const ParsedIR &ir_) in Compiler() function in Compiler
56 Compiler::Compiler(ParsedIR &&ir_) in Compiler() function in Compiler
61 void Compiler::set_ir(ParsedIR &&ir_) in set_ir()
67 void Compiler
[all...]
H A Dspirv_cross.hpp151 class Compiler class
160 explicit Compiler(std::vector<uint32_t> ir);
161 Compiler(const uint32_t *ir, size_t word_count);
164 // With copy, we can reuse the same parsed IR for multiple Compiler instances.
165 explicit Compiler(const ParsedIR &ir);
166 explicit Compiler(ParsedIR &&ir);
168 virtual ~Compiler() = default;
549 SPIRV_CROSS_THROW("Compiler::stream() out of range."); in stream()
802 BufferAccessHandler(const Compiler &compiler_, SmallVector<BufferRange> &ranges_, uint32_t id_) in BufferAccessHandler()
811 const Compiler
[all...]
H A Dspirv_cfg.hpp32 class Compiler;
36 CFG(Compiler &compiler, const SPIRFunction &function);
38 Compiler &get_compiler() in get_compiler()
43 const Compiler &get_compiler() const in get_compiler()
125 Compiler &compiler;
H A Dspirv_cross_util.hpp31 void rename_interface_variable(SPIRV_CROSS_NAMESPACE::Compiler &compiler,
34 void inherit_combined_sampler_bindings(SPIRV_CROSS_NAMESPACE::Compiler &compiler);
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
H A DIceCompiler.h1 //===- subzero/src/IceCompiler.h - Compiler driver --------------*- C++ -*-===//
29 class Compiler { class
30 Compiler(const Compiler &) = delete;
31 Compiler &operator=(const Compiler &) = delete;
34 Compiler() = default;
H A DIceCompileServer.h33 /// given Compiler. Each request is paired with an input stream, a context
63 Compiler &getCompiler() { return Comp; } in getCompiler()
65 Compiler Comp;
/third_party/skia/src/sksl/
H A DSkSLCompiler.cpp83 Compiler::OverrideFlag Compiler::sOptimizer = OverrideFlag::kDefault;
84 Compiler::OverrideFlag Compiler::sInliner = OverrideFlag::kDefault;
90 AutoSource(Compiler* compiler, const char* source) in AutoSource()
100 Compiler* fCompiler;
134 Compiler::Compiler(const ShaderCapsClass* caps) in Compiler() function in SkSL::Compiler
143 Compiler::~Compiler() {} in ~Compiler()
[all...]
H A DSkSLCompiler.h66 class SK_API Compiler { class
116 Compiler(const ShaderCapsClass* caps);
118 ~Compiler();
120 Compiler(const Compiler&) = delete;
121 Compiler& operator=(const Compiler&) = delete;
205 CompilerErrorReporter(Compiler* compiler) in CompilerErrorReporter()
213 Compiler& fCompiler;
H A DSkSLThreadContext.h23 class Compiler;
43 ThreadContext(SkSL::Compiler* compiler, SkSL::ProgramKind kind,
54 * Returns the Compiler used by DSL operations in the current thread.
56 static SkSL::Compiler& Compiler() { return *Instance().fCompiler; } in Compiler() function in SkSL::ThreadContext
198 SkSL::Compiler* fCompiler;
H A DSkSLMain.cpp329 SkSL::Compiler compiler(caps); in processCommand()
348 [](SkSL::Compiler& compiler, SkSL::Program& program, SkSL::OutputStream& out) { in processCommand()
353 [](SkSL::Compiler& compiler, SkSL::Program& program, SkSL::OutputStream& out) { in processCommand()
373 [](SkSL::Compiler& compiler, SkSL::Program& program, SkSL::OutputStream& out) { in processCommand()
378 [](SkSL::Compiler& compiler, SkSL::Program& program, SkSL::OutputStream& out) { in processCommand()
383 [&](SkSL::Compiler&, SkSL::Program& program, SkSL::OutputStream& out) { in processCommand()
399 [](SkSL::Compiler&, SkSL::Program& program, SkSL::OutputStream& out) { in processCommand()
465 SkSL::Compiler compiler(caps); in processCommand()
471 compiler.loadModule(kind, SkSL::Compiler::MakeModulePath(inputPath.c_str()), in processCommand()
H A DSkSLErrorReporter.cpp16 if (msg.contains(Compiler::POISON_TAG)) { in error()
25 if (msg.contains(Compiler::POISON_TAG)) { in error()
/third_party/rust/crates/regex/bench/src/
H A Drust_compile.rs4 use regex::internal::Compiler;
10 Compiler::new().compile(&[re]).unwrap() in compile_simple()
18 Compiler::new().bytes(true).compile(&[re]).unwrap() in compile_simple_bytes()
31 Compiler::new().compile(&[re]).unwrap() in compile_small()
39 Compiler::new().bytes(true).compile(&[re]).unwrap() in compile_small_bytes()
52 Compiler::new().size_limit(1 << 30).compile(&[re]).unwrap() in compile_huge()
60 Compiler::new().size_limit(1 << 30).bytes(true).compile(&[re]).unwrap() in compile_huge_bytes()
/third_party/typescript/tests/baselines/reference/
H A DparserVariableDeclaration3.js3 var outfile = new Harness.Compiler.WriterAggregator()
4 , outerr = new Harness.Compiler.WriterAggregator()
11 var outfile = new Harness.Compiler.WriterAggregator(), outerr = new Harness.Compiler.WriterAggregator(), compiler = new TypeScript.TypeScriptCompiler(outerr), code;
H A Dparserharness.js135 export function compilerWarning(result: Compiler.CompilerResult, line: number, column: number, desc: string) {
688 export module Compiler {
728 var writer = new Harness.Compiler.WriterAggregator();
744 var current = <Harness.Compiler.WriterAggregator>this.fileCollection[p];
778 compiler.addUnit(Harness.Compiler.libText, "lib.d.ts", true);
1108 export function generateDeclFile(code: string, verifyNoDeclFile: boolean, unitName?: string, compilationContext?: Harness.Compiler.CompilationContext, references?: TypeScript.IFileReference[]): string {
1128 outputs[fn] = new Harness.Compiler.WriterAggregator();
1140 var writer = <Harness.Compiler.WriterAggregator>outputs[fn];
1210 // Compiler Error.
1327 export function compileUnits(units: TestCaseParser.TestUnitData[], callback: (res: Compiler
[all...]
/third_party/skia/modules/particles/include/
H A DSkParticleBinding.h26 class Compiler;
36 SkSL::Compiler& compiler, in SkParticleExternalFunction()
46 SkSL::Compiler& fCompiler;
59 virtual std::unique_ptr<SkParticleExternalFunction> toFunction(SkSL::Compiler&,
/third_party/skia/bench/
H A DSkSLBench.cpp30 SkSL::Compiler compiler(&caps);
102 SkSL::Compiler fCompiler;
521 SkSL::Compiler compiler(&caps); in RunSkSLMemoryBenchmarks()
530 SkSL::Compiler compiler(&caps); in RunSkSLMemoryBenchmarks()
541 SkSL::Compiler compiler(&caps); in RunSkSLMemoryBenchmarks()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DCompiler.h7 // Compiler.h: Defines the gl::Compiler class, abstracting the ESSL compiler
31 class Compiler final : public RefCountObjectNoID
34 Compiler(rx::GLImplFactory *implFactory, const State &data, egl::Display *display);
43 ~Compiler() override;
H A DCompiler.cpp7 // Compiler.cpp: implements the gl::Compiler class.
9 #include "libANGLE/Compiler.h"
65 Compiler::Compiler(rx::GLImplFactory *implFactory, const State &state, egl::Display *display) in Compiler() function in gl::Compiler
288 Compiler::~Compiler() = default;
290 void Compiler::onDestroy(const Context *context) in onDestroy()
307 ShCompilerInstance Compiler::getInstance(ShaderType type) in getInstance()
325 void Compiler
[all...]
/third_party/node/deps/v8/src/compiler-dispatcher/
H A Doptimizing-compile-dispatcher.cc125 Compiler::DisposeTurbofanCompilationJob(job.get(), restore_function_code); in FlushOutputQueue()
137 Compiler::DisposeTurbofanCompilationJob(job.get(), true); in FlushInputQueue()
203 Compiler::DisposeTurbofanCompilationJob(job.get(), false); in InstallOptimizedFunctions()
207 Compiler::FinalizeTurbofanCompilationJob(job.get(), isolate_); in InstallOptimizedFunctions()
/third_party/node/deps/v8/src/codegen/
H A Dcompiler.cc801 // rather than with Compiler::GetSharedFunctionInfo, to support in IterativelyExecuteAndFinalizeUnoptimizedCompilationJobs()
808 shared_info = Compiler::GetSharedFunctionInfo(literal, script, isolate); in IterativelyExecuteAndFinalizeUnoptimizedCompilationJobs()
1310 Compiler::ClearExceptionFlag flag = Compiler::KEEP_EXCEPTION) { in FailWithPreparedPendingException()
1311 if (flag == Compiler::CLEAR_EXCEPTION) { in FailWithPreparedPendingException()
1327 Compiler::ClearExceptionFlag flag) { in FailWithPendingException()
1406 Compiler::CompileSharedWithBaseline( in CompileAllWithBaseline()
1407 isolate, shared_info, Compiler::CLEAR_EXCEPTION, &is_compiled_scope); in CompileAllWithBaseline()
1441 Compiler::ClearExceptionFlag::KEEP_EXCEPTION); in CompileToplevel()
1467 Compiler in CompileToplevel()
1307 FailWithPreparedPendingException( Isolate* isolate, Handle<Script> script, const PendingCompilationErrorHandler* pending_error_handler, Compiler::ClearExceptionFlag flag = Compiler::KEEP_EXCEPTION) FailWithPreparedPendingException() argument
[all...]
/third_party/skia/include/sksl/
H A DDSLRuntimeEffects.h16 class Compiler;
22 void StartRuntimeShader(SkSL::Compiler* compiler);
/third_party/skia/src/sksl/dsl/priv/
H A DDSL_priv.h16 class Compiler;
24 void StartModule(SkSL::Compiler* compiler, SkSL::ProgramKind kind,
/third_party/skia/modules/particles/src/
H A DSkParticleBinding.cpp50 SkSL::Compiler& compiler, in SkPathExternalFunction()
99 std::unique_ptr<SkParticleExternalFunction> toFunction(SkSL::Compiler& compiler,
138 std::unique_ptr<SkParticleExternalFunction> toFunction(SkSL::Compiler& compiler,
168 SkSL::Compiler& compiler, in SkShaderExternalFunction()
220 std::unique_ptr<SkParticleExternalFunction> toFunction(SkSL::Compiler& compiler,

Completed in 20 milliseconds

123456