| /third_party/skia/third_party/externals/angle2/src/ |
| D | compiler.gni | 8 "src/compiler/translator/blocklayout.h", 9 "src/compiler/translator/blocklayoutHLSL.h", 25 "src/compiler/translator/BaseTypes.h", 26 "src/compiler/translator/BuiltInFunctionEmulator.cpp", 27 "src/compiler/translator/BuiltInFunctionEmulator.h", 28 "src/compiler/translator/CallDAG.cpp", 29 "src/compiler/translator/CallDAG.h", 30 "src/compiler/translator/CodeGen.cpp", 31 "src/compiler/translator/CollectVariables.cpp", 32 "src/compiler/translator/CollectVariables.h", [all …]
|
| /third_party/protobuf/cmake/ |
| D | libprotoc.cmake | 2 ${protobuf_source_dir}/src/google/protobuf/compiler/code_generator.cc 3 ${protobuf_source_dir}/src/google/protobuf/compiler/command_line_interface.cc 4 ${protobuf_source_dir}/src/google/protobuf/compiler/cpp/cpp_enum.cc 5 ${protobuf_source_dir}/src/google/protobuf/compiler/cpp/cpp_enum_field.cc 6 ${protobuf_source_dir}/src/google/protobuf/compiler/cpp/cpp_extension.cc 7 ${protobuf_source_dir}/src/google/protobuf/compiler/cpp/cpp_field.cc 8 ${protobuf_source_dir}/src/google/protobuf/compiler/cpp/cpp_file.cc 9 ${protobuf_source_dir}/src/google/protobuf/compiler/cpp/cpp_generator.cc 10 ${protobuf_source_dir}/src/google/protobuf/compiler/cpp/cpp_helpers.cc 11 ${protobuf_source_dir}/src/google/protobuf/compiler/cpp/cpp_map_field.cc [all …]
|
| /third_party/mesa3d/src/gallium/drivers/r300/ |
| D | meson.build | 63 'compiler/memory_pool.c', 64 'compiler/memory_pool.h', 65 'compiler/r300_fragprog.c', 66 'compiler/r300_fragprog_emit.c', 67 'compiler/r300_fragprog.h', 68 'compiler/r300_fragprog_swizzle.c', 69 'compiler/r300_fragprog_swizzle.h', 70 'compiler/r3xx_fragprog.c', 71 'compiler/r3xx_vertprog.c', 72 'compiler/r3xx_vertprog_dump.c', [all …]
|
| /third_party/skia/third_party/externals/spirv-cross/ |
| D | spirv_cross_c.cpp | 151 unique_ptr<Compiler> compiler; member 263 spvc_capture_mode mode, spvc_compiler *compiler) in spvc_context_create_compiler() argument 286 comp->compiler.reset(new Compiler(move(parsed_ir->parsed))); in spvc_context_create_compiler() 288 comp->compiler.reset(new Compiler(parsed_ir->parsed)); in spvc_context_create_compiler() 294 comp->compiler.reset(new CompilerGLSL(move(parsed_ir->parsed))); in spvc_context_create_compiler() 296 comp->compiler.reset(new CompilerGLSL(parsed_ir->parsed)); in spvc_context_create_compiler() 303 comp->compiler.reset(new CompilerHLSL(move(parsed_ir->parsed))); in spvc_context_create_compiler() 305 comp->compiler.reset(new CompilerHLSL(parsed_ir->parsed)); in spvc_context_create_compiler() 312 comp->compiler.reset(new CompilerMSL(move(parsed_ir->parsed))); in spvc_context_create_compiler() 314 comp->compiler.reset(new CompilerMSL(parsed_ir->parsed)); in spvc_context_create_compiler() [all …]
|
| /third_party/pcre2/pcre2/src/sljit/ |
| D | sljitLir.c | 2 * Stack-less Just-In-Time compiler 45 if (SLJIT_UNLIKELY(compiler->error)) \ 46 return compiler->error; \ 51 if (SLJIT_UNLIKELY(compiler->error)) \ 58 return compiler->error; \ 70 compiler->error = SLJIT_ERR_ALLOC_FAILED; \ 78 compiler->error = SLJIT_ERR_ALLOC_FAILED; \ 86 compiler->error = SLJIT_ERR_EX_ALLOC_FAILED; \ 395 compiler->error = SLJIT_ERR_BAD_ARGUMENT; \ 403 compiler->error = SLJIT_ERR_BAD_ARGUMENT; \ [all …]
|
| D | sljitNativePPC_32.c | 2 * Stack-less Just-In-Time compiler 29 static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 reg, sljit_sw imm) in load_immediate() argument 32 return push_inst(compiler, ADDI | D(reg) | A(0) | IMM(imm)); in load_immediate() 35 return push_inst(compiler, ORI | S(TMP_ZERO) | A(reg) | IMM(imm)); in load_immediate() 37 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(imm >> 16))); in load_immediate() 38 return (imm & 0xffff) ? push_inst(compiler, ORI | S(reg) | A(reg) | IMM(imm)) : SLJIT_SUCCESS; in load_immediate() 45 static SLJIT_INLINE sljit_s32 emit_single_op(struct sljit_compiler *compiler, sljit_s32 op, sljit_s… in emit_single_op() argument 57 return push_inst(compiler, OR | S(src2) | A(dst) | B(src2)); in emit_single_op() 65 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op() 66 return push_inst(compiler, INS_CLEAR_LEFT(dst, src2, 24)); in emit_single_op() [all …]
|
| D | sljitNativePPC_64.c | 2 * Stack-less Just-In-Time compiler 40 push_inst(compiler, RLDICR | S(reg) | A(reg) | RLDI_SH(63 - shift) | RLDI_ME(shift)) 42 static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 reg, sljit_sw imm) in load_immediate() argument 50 return push_inst(compiler, ADDI | D(reg) | A(0) | IMM(imm)); in load_immediate() 53 return push_inst(compiler, ORI | S(TMP_ZERO) | A(reg) | IMM(imm)); in load_immediate() 56 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(imm >> 16))); in load_immediate() 57 return (imm & 0xffff) ? push_inst(compiler, ORI | S(reg) | A(reg) | IMM(imm)) : SLJIT_SUCCESS; in load_immediate() 61 FAIL_IF(push_inst(compiler, ORIS | S(TMP_ZERO) | A(reg) | IMM(imm >> 16))); in load_immediate() 62 return (imm & 0xffff) ? push_inst(compiler, ORI | S(reg) | A(reg) | IMM(imm)) : SLJIT_SUCCESS; in load_immediate() 73 FAIL_IF(push_inst(compiler, ADDI | D(reg) | A(0) | (sljit_ins)(tmp >> 48))); in load_immediate() [all …]
|
| D | sljitNativeX86_common.c | 2 * Stack-less Just-In-Time compiler 368 #define INC_SIZE(s) (*inst++ = U8(s), compiler->size += (s)) 757 static void reduce_code_size(struct sljit_compiler *compiler) in reduce_code_size() argument 771 label = compiler->labels; in reduce_code_size() 772 jump = compiler->jumps; in reduce_code_size() 865 compiler->size -= size_reduce; in reduce_code_size() 868 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler, sljit_s32 optio… in sljit_generate_code() argument 886 CHECK_PTR(check_sljit_generate_code(compiler)); in sljit_generate_code() 888 reduce_code_size(compiler); in sljit_generate_code() 891 …code = (sljit_u8*)allocate_executable_memory(compiler->size, options, exec_allocator_data, &execut… in sljit_generate_code() [all …]
|
| D | sljitNativeRISCV_common.c | 2 * Stack-less Just-In-Time compiler 156 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins) in push_inst() argument 158 sljit_ins *ptr = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst() 161 compiler->size++; in push_inst() 165 static sljit_s32 push_imm_s_inst(struct sljit_compiler *compiler, sljit_ins ins, sljit_sw imm) in push_imm_s_inst() argument 167 return push_inst(compiler, ins | IMM_S(imm)); in push_imm_s_inst() 401 static void reduce_code_size(struct sljit_compiler *compiler) in reduce_code_size() argument 411 label = compiler->labels; in reduce_code_size() 412 jump = compiler->jumps; in reduce_code_size() 413 const_ = compiler->consts; in reduce_code_size() [all …]
|
| D | sljitNativeX86_32.c | 2 * Stack-less Just-In-Time compiler 33 static sljit_s32 emit_do_imm(struct sljit_compiler *compiler, sljit_u8 opcode, sljit_sw imm) in emit_do_imm() argument 37 inst = (sljit_u8*)ensure_buf(compiler, 1 + 1 + sizeof(sljit_sw)); in emit_do_imm() 46 static sljit_u8* emit_x86_instruction(struct sljit_compiler *compiler, sljit_uw size, in emit_x86_instruction() argument 127 inst = (sljit_u8*)ensure_buf(compiler, 1 + inst_size); in emit_x86_instruction() 222 static sljit_s32 emit_vex_instruction(struct sljit_compiler *compiler, sljit_uw op, in emit_vex_instruction() argument 265 inst = emit_x86_instruction(compiler, size, a, 0, b, immb); in emit_vex_instruction() 313 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compiler, in sljit_emit_enter() argument 326 …CHECK(check_sljit_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds,… in sljit_emit_enter() 327 set_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size); in sljit_emit_enter() [all …]
|
| D | sljitNativeLOONGARCH_64.c | 2 * Stack-less Just-In-Time compiler 399 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins) in push_inst() argument 401 sljit_ins *ptr = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst() 404 compiler->size++; in push_inst() 568 static void reduce_code_size(struct sljit_compiler *compiler) in reduce_code_size() argument 578 label = compiler->labels; in reduce_code_size() 579 jump = compiler->jumps; in reduce_code_size() 580 const_ = compiler->consts; in reduce_code_size() 654 compiler->size -= size_reduce; in reduce_code_size() 657 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler, sljit_s32 optio… in sljit_generate_code() argument [all …]
|
| D | sljitNativeARM_T2_32.c | 2 * Stack-less Just-In-Time compiler 259 static sljit_s32 function_check_is_freg(struct sljit_compiler *compiler, sljit_s32 fr, sljit_s32 is… in function_check_is_freg() argument 261 if (compiler->scratches == -1) in function_check_is_freg() 267 return (fr >= SLJIT_FR0 && fr < (SLJIT_FR0 + compiler->fscratches)) in function_check_is_freg() 268 || (fr > (SLJIT_FS0 - compiler->fsaveds) && fr <= SLJIT_FS0) in function_check_is_freg() 274 static sljit_s32 push_inst16(struct sljit_compiler *compiler, sljit_ins inst) in push_inst16() argument 279 ptr = (sljit_u16*)ensure_buf(compiler, sizeof(sljit_u16)); in push_inst16() 282 compiler->size++; in push_inst16() 286 static sljit_s32 push_inst32(struct sljit_compiler *compiler, sljit_ins inst) in push_inst32() argument 288 sljit_u16 *ptr = (sljit_u16*)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst32() [all …]
|
| D | sljitNativeARM_32.c | 2 * Stack-less Just-In-Time compiler 193 static sljit_s32 function_check_is_freg(struct sljit_compiler *compiler, sljit_s32 fr, sljit_s32 is… in function_check_is_freg() argument 195 if (compiler->scratches == -1) in function_check_is_freg() 201 return (fr >= SLJIT_FR0 && fr < (SLJIT_FR0 + compiler->fscratches)) in function_check_is_freg() 202 || (fr > (SLJIT_FS0 - compiler->fsaveds) && fr <= SLJIT_FS0) in function_check_is_freg() 210 static sljit_s32 push_cpool(struct sljit_compiler *compiler) in push_cpool() argument 219 if (compiler->last_label && compiler->last_label->size == compiler->size) in push_cpool() 220 compiler->last_label->size += compiler->cpool_fill + (CONST_POOL_ALIGNMENT - 1) + 1; in push_cpool() 222 SLJIT_ASSERT(compiler->cpool_fill > 0 && compiler->cpool_fill <= CPOOL_SIZE); in push_cpool() 223 inst = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins)); in push_cpool() [all …]
|
| D | sljitNativeMIPS_common.c | 2 * Stack-less Just-In-Time compiler 376 static sljit_s32 function_check_is_freg(struct sljit_compiler *compiler, sljit_s32 fr, sljit_s32 is… in function_check_is_freg() argument 378 if (compiler->scratches == -1) in function_check_is_freg() 384 return (fr >= SLJIT_FR0 && fr < (SLJIT_FR0 + compiler->fscratches)) in function_check_is_freg() 385 || (fr > (SLJIT_FS0 - compiler->fsaveds) && fr <= SLJIT_FS0) in function_check_is_freg() 463 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins, sljit_s32 delay_slot) in push_inst() argument 465 sljit_ins *ptr = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst() 471 compiler->size++; in push_inst() 472 compiler->delay_slot = delay_slot; in push_inst() 697 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler, sljit_s32 optio… in sljit_generate_code() argument [all …]
|
| D | sljitNativeS390X.c | 2 * Stack-less Just-In-Time compiler 140 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins) in push_inst() argument 142 sljit_ins *ibuf = (sljit_ins *)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst() 148 compiler->size++; in push_inst() 150 compiler->size++; in push_inst() 153 compiler->size++; in push_inst() 163 static SLJIT_INLINE sljit_u8 get_cc(struct sljit_compiler *compiler, sljit_s32 type) { in get_cc() argument 171 if (SLJIT_ADD_SUB_NO_COMPARE(compiler->status_flags_state)) { in get_cc() 172 sljit_s32 type = GET_FLAG_TYPE(compiler->status_flags_state); in get_cc() 187 if (SLJIT_ADD_SUB_NO_COMPARE(compiler->status_flags_state)) { in get_cc() [all …]
|
| D | sljitNativeX86_64.c | 2 * Stack-less Just-In-Time compiler 33 static sljit_s32 emit_load_imm64(struct sljit_compiler *compiler, sljit_s32 reg, sljit_sw imm) in emit_load_imm64() argument 37 inst = (sljit_u8*)ensure_buf(compiler, 1 + 2 + sizeof(sljit_sw)); in emit_load_imm64() 46 static sljit_s32 emit_do_imm32(struct sljit_compiler *compiler, sljit_u8 rex, sljit_u8 opcode, slji… in emit_do_imm32() argument 51 inst = (sljit_u8*)ensure_buf(compiler, 1 + length); in emit_do_imm32() 61 static sljit_u8* emit_x86_instruction(struct sljit_compiler *compiler, sljit_uw size, in emit_x86_instruction() argument 75 SLJIT_ASSERT(a != SLJIT_IMM || compiler->mode32 || IS_HALFWORD(imma)); in emit_x86_instruction() 92 if (!compiler->mode32 && !(flags & EX86_NO_REXW)) in emit_x86_instruction() 103 PTR_FAIL_IF(emit_load_imm64(compiler, TMP_REG2, immb)); in emit_x86_instruction() 160 SLJIT_ASSERT(imma <= (compiler->mode32 ? 0x1f : 0x3f)); in emit_x86_instruction() [all …]
|
| /third_party/typescript/tests/baselines/reference/ |
| D | doYouNeedToChangeYourTargetLibraryES2015.errors.txt | 1 …compiler/doYouNeedToChangeYourTargetLibraryES2015.ts(3,26): error TS2583: Cannot find name 'Reflec… 2 …compiler/doYouNeedToChangeYourTargetLibraryES2015.ts(4,30): error TS2583: Cannot find name 'Reflec… 3 …compiler/doYouNeedToChangeYourTargetLibraryES2015.ts(5,35): error TS2583: Cannot find name 'Reflec… 4 …compiler/doYouNeedToChangeYourTargetLibraryES2015.ts(6,35): error TS2583: Cannot find name 'Reflec… 5 …compiler/doYouNeedToChangeYourTargetLibraryES2015.ts(7,24): error TS2583: Cannot find name 'Reflec… 6 …compiler/doYouNeedToChangeYourTargetLibraryES2015.ts(8,45): error TS2583: Cannot find name 'Reflec… 7 …compiler/doYouNeedToChangeYourTargetLibraryES2015.ts(9,35): error TS2583: Cannot find name 'Reflec… 8 …compiler/doYouNeedToChangeYourTargetLibraryES2015.ts(10,33): error TS2583: Cannot find name 'Refle… 9 …compiler/doYouNeedToChangeYourTargetLibraryES2015.ts(11,28): error TS2583: Cannot find name 'Refle… 10 …compiler/doYouNeedToChangeYourTargetLibraryES2015.ts(12,38): error TS2583: Cannot find name 'Refle… [all …]
|
| D | doYouNeedToChangeYourTargetLibraryES2016Plus.errors.txt | 1 …compiler/doYouNeedToChangeYourTargetLibraryES2016Plus.ts(2,32): error TS2550: Property 'includes' … 2 …compiler/doYouNeedToChangeYourTargetLibraryES2016Plus.ts(5,31): error TS2550: Property 'padStart' … 3 …compiler/doYouNeedToChangeYourTargetLibraryES2016Plus.ts(6,29): error TS2550: Property 'padEnd' do… 4 …compiler/doYouNeedToChangeYourTargetLibraryES2016Plus.ts(7,44): error TS2550: Property 'values' do… 5 …compiler/doYouNeedToChangeYourTargetLibraryES2016Plus.ts(8,45): error TS2550: Property 'entries' d… 6 …compiler/doYouNeedToChangeYourTargetLibraryES2016Plus.ts(9,63): error TS2550: Property 'getOwnProp… 7 …compiler/doYouNeedToChangeYourTargetLibraryES2016Plus.ts(10,64): error TS2550: Property 'formatToP… 8 …compiler/doYouNeedToChangeYourTargetLibraryES2016Plus.ts(11,21): error TS2583: Cannot find name 'A… 9 …compiler/doYouNeedToChangeYourTargetLibraryES2016Plus.ts(12,35): error TS2583: Cannot find name 'S… 10 …compiler/doYouNeedToChangeYourTargetLibraryES2016Plus.ts(15,50): error TS2550: Property 'finally' … [all …]
|
| D | bigintWithoutLib.errors.txt | 1 …/compiler/bigintWithoutLib.ts(4,25): error TS2583: Cannot find name 'BigInt'. Do you need to chang… 2 …/compiler/bigintWithoutLib.ts(5,13): error TS2583: Cannot find name 'BigInt'. Do you need to chang… 3 …/compiler/bigintWithoutLib.ts(6,5): error TS2583: Cannot find name 'BigInt'. Do you need to change… 4 …/compiler/bigintWithoutLib.ts(7,13): error TS2583: Cannot find name 'BigInt'. Do you need to chang… 5 tests/cases/compiler/bigintWithoutLib.ts(7,30): error TS2737: BigInt literals are not available whe… 6 …/compiler/bigintWithoutLib.ts(8,13): error TS2583: Cannot find name 'BigInt'. Do you need to chang… 7 tests/cases/compiler/bigintWithoutLib.ts(8,31): error TS2737: BigInt literals are not available whe… 8 tests/cases/compiler/bigintWithoutLib.ts(9,1): error TS2322: Type 'Object' is not assignable to typ… 9 tests/cases/compiler/bigintWithoutLib.ts(11,32): error TS2554: Expected 0 arguments, but got 1. 10 tests/cases/compiler/bigintWithoutLib.ts(13,38): error TS2554: Expected 0 arguments, but got 1. [all …]
|
| D | privacyFunctionCannotNameParameterTypeDeclFile.types | 1 === tests/cases/compiler/privacyFunctionCannotNameParameterTypeDeclFile_consumer.ts === 9 >myPublicStaticMethod : (param?: import("tests/cases/compiler/privacyFunctionCannotNameParameterTyp… 10 >param : import("tests/cases/compiler/privacyFunctionCannotNameParameterTypeDeclFile_Widgets").Widg… 11 >exporter.createExportedWidget1() : import("tests/cases/compiler/privacyFunctionCannotNameParameter… 12 >exporter.createExportedWidget1 : () => import("tests/cases/compiler/privacyFunctionCannotNameParam… 14 >createExportedWidget1 : () => import("tests/cases/compiler/privacyFunctionCannotNameParameterTypeD… 17 >myPrivateStaticMethod : (param?: import("tests/cases/compiler/privacyFunctionCannotNameParameterTy… 18 >param : import("tests/cases/compiler/privacyFunctionCannotNameParameterTypeDeclFile_Widgets").Widg… 19 >exporter.createExportedWidget1() : import("tests/cases/compiler/privacyFunctionCannotNameParameter… 20 >exporter.createExportedWidget1 : () => import("tests/cases/compiler/privacyFunctionCannotNameParam… [all …]
|
| /third_party/protobuf/ |
| D | BUILD.gn | 162 "src/google/protobuf/compiler/importer.cc", 163 "src/google/protobuf/compiler/parser.cc", 245 "src/google/protobuf/compiler/importer.cc", 246 "src/google/protobuf/compiler/parser.cc", 324 "src/google/protobuf/compiler/code_generator.cc", 325 "src/google/protobuf/compiler/command_line_interface.cc", 326 "src/google/protobuf/compiler/cpp/cpp_enum.cc", 327 "src/google/protobuf/compiler/cpp/cpp_enum_field.cc", 328 "src/google/protobuf/compiler/cpp/cpp_extension.cc", 329 "src/google/protobuf/compiler/cpp/cpp_field.cc", [all …]
|
| /third_party/mesa3d/src/freedreno/ir3/ |
| D | ir3_compiler.c | 67 ir3_compiler_destroy(struct ir3_compiler *compiler) in ir3_compiler_destroy() argument 69 disk_cache_destroy(compiler->disk_cache); in ir3_compiler_destroy() 70 ralloc_free(compiler); in ir3_compiler_destroy() 155 struct ir3_compiler *compiler = rzalloc(NULL, struct ir3_compiler); in ir3_compiler_create() local 165 compiler->dev = dev; in ir3_compiler_create() 166 compiler->dev_id = dev_id; in ir3_compiler_create() 167 compiler->gen = fd_dev_gen(dev_id); in ir3_compiler_create() 168 compiler->robust_buffer_access2 = options->robust_buffer_access2; in ir3_compiler_create() 171 compiler->local_mem_size = 32 * 1024; in ir3_compiler_create() 173 compiler->branchstack_size = 64; in ir3_compiler_create() [all …]
|
| /third_party/protobuf/src/ |
| D | Makefile.am | 58 google/protobuf/compiler/plugin.proto 148 google/protobuf/compiler/code_generator.h \ 149 google/protobuf/compiler/command_line_interface.h \ 150 google/protobuf/compiler/importer.h \ 151 google/protobuf/compiler/parser.h \ 152 google/protobuf/compiler/plugin.h \ 153 google/protobuf/compiler/plugin.pb.h \ 154 google/protobuf/compiler/cpp/cpp_generator.h \ 155 google/protobuf/compiler/csharp/csharp_generator.h \ 156 google/protobuf/compiler/csharp/csharp_names.h \ [all …]
|
| /third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
| D | ShaderLang.cpp | 8 // Implement the top-level of interface to the compiler, 14 #include "compiler/translator/Compiler.h" 15 #include "compiler/translator/InitializeDll.h" 16 #include "compiler/translator/glslang_wrapper.h" 17 #include "compiler/translator/length_limits.h" 19 # include "compiler/translator/TranslatorHLSL.h" 22 #include "compiler/translator/VariablePacker.h" 45 // and the shading language compiler. 49 const std::vector<VarT> *GetVariableList(const TCompiler *compiler); 52 const std::vector<InterfaceBlock> *GetVariableList(const TCompiler *compiler) in GetVariableList() argument [all …]
|
| /third_party/typescript/tests/baselines/reference/docker/ |
| D | vue-next.log | 6 Rolling up type definitions for compiler-core... 8 … use TypeScript X.X.X-insiders.xxxxxxxx which is newer than the bundled compiler engine; consider … 9 Writing: /vue-next/temp/compiler-core.api.json 10 The API report is up to date: temp/compiler-core.api.md 11 Writing package typings: /vue-next/packages/compiler-core/dist/compiler-core.d.ts 12 Writing package typings: /vue-next/dist/compiler-core.d.ts 14 Rolling up type definitions for compiler-dom... 16 … use TypeScript X.X.X-insiders.xxxxxxxx which is newer than the bundled compiler engine; consider … 17 Writing: /vue-next/temp/compiler-dom.api.json 18 The API report is up to date: temp/compiler-dom.api.md [all …]
|