/third_party/typescript/tests/baselines/reference/ |
D | extendedInterfaceGenericType.symbols | 2 interface Alpha<T> { 3 >Alpha : Symbol(Alpha, Decl(extendedInterfaceGenericType.ts, 0, 0)) 6 takesArgOfT(arg: T): Alpha<T>; 7 >takesArgOfT : Symbol(Alpha.takesArgOfT, Decl(extendedInterfaceGenericType.ts, 0, 20)) 10 >Alpha : Symbol(Alpha, Decl(extendedInterfaceGenericType.ts, 0, 0)) 14 >makeBetaOfNumber : Symbol(Alpha.makeBetaOfNumber, Decl(extendedInterfaceGenericType.ts, 1, 34)) 17 interface Beta<T> extends Alpha<T> { 20 >Alpha : Symbol(Alpha, Decl(extendedInterfaceGenericType.ts, 0, 0)) 24 var alpha: Alpha<number>; 26 >Alpha : Symbol(Alpha, Decl(extendedInterfaceGenericType.ts, 0, 0)) [all …]
|
D | qualifiedName_ImportDeclarations-entity-names-referencing-a-var.types | 2 module Alpha { 3 >Alpha : typeof Alpha 11 import p = Alpha.x; 13 >Alpha : typeof Alpha 18 var x = Alpha.x 20 >Alpha.x : number 21 >Alpha : typeof Alpha
|
D | qualifiedName_ImportDeclarations-entity-names-referencing-a-var.js | 2 module Alpha { 7 import p = Alpha.x; 11 var x = Alpha.x 14 var Alpha; variable 15 (function (Alpha) { argument 16 Alpha.x = 100; 17 })(Alpha || (Alpha = {})); 18 var x = Alpha.x;
|
D | constructorTagOnClassConstructor.types | 2 export class Alpha { } 3 >Alpha : Alpha 15 const arr = [Alpha, Beta]; 16 >arr : (typeof Alpha)[] 17 >[Alpha, Beta] : (typeof Alpha)[] 18 >Alpha : typeof Alpha
|
D | umdGlobalConflict.symbols | 2 export as namespace Alpha; 3 >Alpha : Symbol(Alpha, Decl(index.d.ts, 0, 0)) 9 export as namespace Alpha; 10 >Alpha : Symbol(Alpha, Decl(index.d.ts, 0, 0)) 24 const p: string = Alpha.x; 26 >Alpha.x : Symbol(Alpha.x, Decl(index.d.ts, 1, 10)) 27 >Alpha : Symbol(Alpha, Decl(index.d.ts, 0, 0)) 28 >x : Symbol(Alpha.x, Decl(index.d.ts, 1, 10))
|
D | qualifiedName_ImportDeclarations-entity-names-referencing-a-var.symbols | 2 module Alpha { 3 >Alpha : Symbol(Alpha, Decl(qualifiedName_ImportDeclarations-entity-names-referencing-a-var.ts, 0, … 12 import p = Alpha.x; 14 >Alpha : Symbol(Alpha, Decl(qualifiedName_ImportDeclarations-entity-names-referencing-a-var.ts, 0, … 19 var x = Alpha.x 21 >Alpha.x : Symbol(Alpha.x, Decl(qualifiedName_ImportDeclarations-entity-names-referencing-a-var.ts,… 22 >Alpha : Symbol(Alpha, Decl(qualifiedName_ImportDeclarations-entity-names-referencing-a-var.ts, 0, … 23 >x : Symbol(Alpha.x, Decl(qualifiedName_ImportDeclarations-entity-names-referencing-a-var.ts, 1, 14…
|
D | extendedInterfaceGenericType.types | 2 interface Alpha<T> { 3 takesArgOfT(arg: T): Alpha<T>; 4 >takesArgOfT : (arg: T) => Alpha<T> 10 interface Beta<T> extends Alpha<T> { 13 var alpha: Alpha<number>; 14 >alpha : Alpha<number> 20 >alpha : Alpha<number> 24 >betaOfNumber.takesArgOfT(5) : Alpha<number> 25 >betaOfNumber.takesArgOfT : (arg: number) => Alpha<number> 27 >takesArgOfT : (arg: number) => Alpha<number>
|
D | qualifiedName_entity-name-resolution-does-not-affect-class-heritage.symbols | 2 module Alpha { 3 >Alpha : Symbol(Alpha, Decl(qualifiedName_entity-name-resolution-does-not-affect-class-heritage.ts,… 9 class Beta extends Alpha.x { 11 >Alpha.x : Symbol(Alpha.x, Decl(qualifiedName_entity-name-resolution-does-not-affect-class-heritage… 12 >Alpha : Symbol(Alpha, Decl(qualifiedName_entity-name-resolution-does-not-affect-class-heritage.ts,… 13 >x : Symbol(Alpha.x, Decl(qualifiedName_entity-name-resolution-does-not-affect-class-heritage.ts, 1…
|
D | qualifiedName_entity-name-resolution-does-not-affect-class-heritage.js | 2 module Alpha { 6 class Beta extends Alpha.x { 25 var Alpha; variable 26 (function (Alpha) { argument 27 Alpha.x = 100; 28 })(Alpha || (Alpha = {})); 35 }(Alpha.x));
|
D | qualifiedName_entity-name-resolution-does-not-affect-class-heritage.types | 2 module Alpha { 3 >Alpha : typeof Alpha 10 class Beta extends Alpha.x { 12 >Alpha.x : number 13 >Alpha : typeof Alpha
|
D | umdGlobalConflict.types | 2 export as namespace Alpha; 3 >Alpha : typeof import("tests/cases/compiler/v1/index") 9 export as namespace Alpha; 10 >Alpha : typeof import("tests/cases/compiler/v2/index") 24 const p: string = Alpha.x; 26 >Alpha.x : string 27 >Alpha : typeof Alpha
|
D | elaboratedErrors.types | 27 interface Alpha { x: string; } 33 var x: Alpha; 34 >x : Alpha 42 >x : Alpha 47 >x : Alpha 52 >y = x : Alpha 54 >x : Alpha 57 >y = x : Alpha 59 >x : Alpha
|
D | constructorTagOnClassConstructor.symbols | 2 export class Alpha { } 3 >Alpha : Symbol(Alpha, Decl(bug27025.js, 0, 0)) 15 const arr = [Alpha, Beta]; 17 >Alpha : Symbol(Alpha, Decl(bug27025.js, 0, 0))
|
D | elaboratedErrors.errors.txt | 3 …Errors.ts(20,1): error TS2741: Property 'x' is missing in type 'Beta' but required in type 'Alpha'. 4 …es/compiler/elaboratedErrors.ts(21,1): error TS2322: Type 'Beta' is not assignable to type 'Alpha'. 5 …elaboratedErrors.ts(24,1): error TS2741: Property 'y' is missing in type 'Alpha' but required in t… 6 tests/cases/compiler/elaboratedErrors.ts(25,1): error TS2322: Type 'Alpha' is not assignable to typ… 26 interface Alpha { x: string; } 28 var x: Alpha; 34 !!! error TS2741: Property 'x' is missing in type 'Beta' but required in type 'Alpha'. 38 !!! error TS2322: Type 'Beta' is not assignable to type 'Alpha'. 43 !!! error TS2741: Property 'y' is missing in type 'Alpha' but required in type 'Beta'. 47 !!! error TS2322: Type 'Alpha' is not assignable to type 'Beta'.
|
D | umdGlobalConflict.js | 4 export as namespace Alpha; 8 export as namespace Alpha; 17 const p: string = Alpha.x; 24 var p = Alpha.x;
|
D | extendedInterfaceGenericType.js | 2 interface Alpha<T> { 3 takesArgOfT(arg: T): Alpha<T>; 6 interface Beta<T> extends Alpha<T> { 9 var alpha: Alpha<number>;
|
/third_party/mesa3d/src/gallium/drivers/r300/compiler/ |
D | radeon_program_pair.c | 58 if (alpha && pair->Alpha.Src[RC_PAIR_PRESUB_SRC].Used in rc_pair_alloc_source() 59 && index != pair->Alpha.Src[RC_PAIR_PRESUB_SRC].Index) { in rc_pair_alloc_source() 77 if (pair->Alpha.Src[i].Used) { in rc_pair_alloc_source() 78 if (pair->Alpha.Src[i].File != file || in rc_pair_alloc_source() 79 pair->Alpha.Src[i].Index != index) { in rc_pair_alloc_source() 115 pair->Alpha.Src[candidate].Used = 1; in rc_pair_alloc_source() 116 pair->Alpha.Src[candidate].File = file; in rc_pair_alloc_source() 117 pair->Alpha.Src[candidate].Index = index; in rc_pair_alloc_source() 123 pair->Alpha.Src[i].Used = 1; in rc_pair_alloc_source() 147 pair->Alpha.Src[RC_PAIR_PRESUB_SRC].Index); in pair_foreach_source_callback() [all …]
|
D | radeon_pair_schedule.c | 255 else if (sinst->Instruction->U.P.Alpha.Opcode == RC_OPCODE_NOP) in instruction_ready() 307 !sinst->Instruction->U.P.Alpha.OutputWriteMask) { in score_no_output() 312 Alpha.OutputWriteMask) { in score_no_output() 342 sinst->Instruction->U.P.Alpha.Src[src_idx].Used; in calc_score_r300() 511 assert(dst_full->Alpha.Opcode == RC_OPCODE_NOP); in merge_presub_sources() 522 dst_sub = &dst_full->Alpha; in merge_presub_sources() 604 assert(rgb->Alpha.Opcode == RC_OPCODE_NOP); in destructive_merge_instructions() 618 if (alpha->Alpha.Src[RC_PAIR_PRESUB_SRC].Used) { in destructive_merge_instructions() 619 if(!merge_presub_sources(rgb, alpha->Alpha, RC_SOURCE_ALPHA)){ in destructive_merge_instructions() 625 opcode = rc_get_opcode_info(alpha->Alpha.Opcode); in destructive_merge_instructions() [all …]
|
D | radeon_pair_translate.c | 172 pair->Alpha.Opcode = inst->Opcode; in set_pair_instruction() 174 pair->Alpha.Saturate = 1; in set_pair_instruction() 205 pair->Alpha.Src[i].File = in set_pair_instruction() 207 pair->Alpha.Src[i].Index = in set_pair_instruction() 209 pair->Alpha.Src[i].Used = 1; in set_pair_instruction() 270 pair->Alpha.Arg[i].Source = source; in set_pair_instruction() 271 pair->Alpha.Arg[i].Swizzle = rc_init_swizzle(swz, 1); in set_pair_instruction() 272 pair->Alpha.Arg[i].Abs = inst->SrcReg[i].Abs; in set_pair_instruction() 275 pair->Alpha.Arg[i].Negate = in set_pair_instruction() 279 pair->Alpha.Arg[i].Negate = in set_pair_instruction() [all …]
|
D | r300_fragprog_emit.c | 167 code->alu.inst[ip].alpha_inst = translate_alpha_opcode(c, inst->Alpha.Opcode); in emit_alu() 179 src = use_source(code, inst->Alpha.Src[j]); in emit_alu() 180 if (inst->Alpha.Src[j].Index >= R300_PFS_NUM_TEMP_REGS) in emit_alu() 190 arg = r300FPTranslateAlphaSwizzle(inst->Alpha.Arg[j].Source, inst->Alpha.Arg[j].Swizzle); in emit_alu() 191 arg |= inst->Alpha.Arg[j].Abs << 6; in emit_alu() 192 arg |= inst->Alpha.Arg[j].Negate << 5; in emit_alu() 220 if (inst->Alpha.Src[RC_PAIR_PRESUB_SRC].Used) { in emit_alu() 221 switch(inst->Alpha.Src[RC_PAIR_PRESUB_SRC].Index) { in emit_alu() 245 if (inst->Alpha.Saturate) in emit_alu() 263 if (inst->Alpha.WriteMask) { in emit_alu() [all …]
|
D | radeon_program_print.c | 346 inst->RGB.Opcode : inst->Alpha.Opcode, branch_depth); in rc_print_pair_instruction() 359 if (inst->Alpha.Src[src].Used) { in rc_print_pair_instruction() 363 rc_print_register(f, inst->Alpha.Src[src].File, inst->Alpha.Src[src].Index, 0); in rc_print_pair_instruction() 372 if(inst->Alpha.Src[RC_PAIR_PRESUB_SRC].Used) { in rc_print_pair_instruction() 375 inst->Alpha.Src[RC_PAIR_PRESUB_SRC].Index)); in rc_print_pair_instruction() 421 if (inst->Alpha.Opcode != RC_OPCODE_NOP) { in rc_print_pair_instruction() 422 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->Alpha.Opcode); in rc_print_pair_instruction() 427 fprintf(f, " %s%s", opcode->Name, inst->Alpha.Saturate ? "_SAT" : ""); in rc_print_pair_instruction() 428 if (inst->Alpha.WriteMask) in rc_print_pair_instruction() 429 fprintf(f, " temp[%i].w", inst->Alpha.DestIndex); in rc_print_pair_instruction() [all …]
|
/third_party/flutter/skia/site/user/api/ |
D | SkBlendMode_Reference.md | 60 Replaces destination with <a href='SkColor_Reference#Alpha'>Alpha</a> and <a href='SkColor_Referenc… 69 Replaces destination with source. Destination <a href='SkColor_Reference#Alpha'>alpha</a> and <a hr… 349 Given: <code>Sa</code> as source <a href='SkColor_Reference#Alpha'>Alpha</a>, <code>Sc</code> as so… 352 regardless of source and destination <a href='SkColor_Reference#Alpha'>Alpha</a> values. As a param… 369 Given: <code>Da</code> as destination <a href='SkColor_Reference#Alpha'>Alpha</a>, <code>Dc</code> … 383 Given: <code>Sa</code> as source <a href='SkColor_Reference#Alpha'>Alpha</a>, <code>Sc</code> as so… 384 <code>Da</code> as destination <a href='SkColor_Reference#Alpha'>Alpha</a>, <code>Dc</code> as dest… 399 Given: <code>Sa</code> as source <a href='SkColor_Reference#Alpha'>Alpha</a>, <code>Sc</code> as so… 400 <code>Da</code> as destination <a href='SkColor_Reference#Alpha'>Alpha</a>, <code>Dc</code> as dest… 412 Given: <code>Sa</code> as source <a href='SkColor_Reference#Alpha'>Alpha</a>, <code>Sc</code> as so… [all …]
|
/third_party/flutter/skia/src/gpu/effects/ |
D | GrSRGBEffect.h | 20 enum class Alpha { enum 28 static std::unique_ptr<GrFragmentProcessor> Make(Mode mode, Alpha alpha) { in Make() 35 Alpha alpha() const { return fAlpha; } in alpha() 40 GrSRGBEffect(Mode mode, Alpha); 49 Alpha fAlpha;
|
/third_party/flutter/skia/tests/ |
D | SkPEGTest.cpp | 18 struct Alpha { struct 110 const auto match = Alpha::Match(gTests[i].fInput); in test_Alpha() 189 REPORTER_ASSERT(r, !(Choice<Digit,Alpha>::Match(""))); in test_Choice() 190 REPORTER_ASSERT(r, !(Choice<Digit,Alpha>::Match("\t"))); in test_Choice() 191 REPORTER_ASSERT(r, !(Choice<Digit,Alpha>::Match(" "))); in test_Choice() 192 REPORTER_ASSERT(r, (Choice<Digit,Alpha>::Match("a"))); in test_Choice() 193 REPORTER_ASSERT(r, (Choice<Digit,Alpha>::Match("3"))); in test_Choice() 194 REPORTER_ASSERT(r, (Choice<Digit,Alpha>::Match("a "))); in test_Choice() 195 REPORTER_ASSERT(r, (Choice<Digit,Alpha>::Match("3 "))); in test_Choice() 196 REPORTER_ASSERT(r, !(Choice<Digit,Alpha>::Match(" a "))); in test_Choice() [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | extendedInterfaceGenericType.ts | 1 interface Alpha<T> { interface 2 takesArgOfT(arg: T): Alpha<T>; 5 interface Beta<T> extends Alpha<T> { 8 var alpha: Alpha<number>;
|