Home
last modified time | relevance | path

Searched refs:pf2 (Results 1 – 20 of 20) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DtypeParameterFixingWithContextSensitiveArguments5.types2 function f<T, U>(t1: T, u1: U, pf1: (u2: U) => T, pf2: (t2: T) => U): [T, U] { return [t1, pf2(t1)]…
3 >f : <T, U>(t1: T, u1: U, pf1: (u2: U) => T, pf2: (t2: T) => U) => [T, U]
8 >pf2 : (t2: T) => U
10 >[t1, pf2(t1)] : [T, U]
12 >pf2(t1) : U
13 >pf2 : (t2: T) => U
29 >f : <T, U>(t1: T, u1: U, pf1: (u2: U) => T, pf2: (t2: T) => U) => [T, U]
DtypeParameterFixingWithContextSensitiveArguments3.types2 function f<T, U>(t1: T, u1: U, pf1: (u2: U) => T, pf2: (t2: T) => U): [T, U] { return [t1, pf2(t1)]…
3 >f : <T, U>(t1: T, u1: U, pf1: (u2: U) => T, pf2: (t2: T) => U) => [T, U]
8 >pf2 : (t2: T) => U
10 >[t1, pf2(t1)] : [T, U]
12 >pf2(t1) : U
13 >pf2 : (t2: T) => U
29 >f : <T, U>(t1: T, u1: U, pf1: (u2: U) => T, pf2: (t2: T) => U) => [T, U]
DtypeParameterFixingWithContextSensitiveArguments3.js2 function f<T, U>(t1: T, u1: U, pf1: (u2: U) => T, pf2: (t2: T) => U): [T, U] { return [t1, pf2(t1)]…
11 function f(t1, u1, pf1, pf2) { return [t1, pf2(t1)]; } argument
DtypeParameterFixingWithContextSensitiveArguments5.js2 function f<T, U>(t1: T, u1: U, pf1: (u2: U) => T, pf2: (t2: T) => U): [T, U] { return [t1, pf2(t1)]…
11 function f(t1, u1, pf1, pf2) { return [t1, pf2(t1)]; } argument
DtypeParameterFixingWithContextSensitiveArguments3.symbols2 function f<T, U>(t1: T, u1: U, pf1: (u2: U) => T, pf2: (t2: T) => U): [T, U] { return [t1, pf2(t1)]…
14 >pf2 : Symbol(pf2, Decl(typeParameterFixingWithContextSensitiveArguments3.ts, 0, 49))
21 >pf2 : Symbol(pf2, Decl(typeParameterFixingWithContextSensitiveArguments3.ts, 0, 49))
DtypeParameterFixingWithContextSensitiveArguments5.symbols2 function f<T, U>(t1: T, u1: U, pf1: (u2: U) => T, pf2: (t2: T) => U): [T, U] { return [t1, pf2(t1)]…
14 >pf2 : Symbol(pf2, Decl(typeParameterFixingWithContextSensitiveArguments5.ts, 0, 49))
21 >pf2 : Symbol(pf2, Decl(typeParameterFixingWithContextSensitiveArguments5.ts, 0, 49))
DtypeParameterFixingWithContextSensitiveArguments3.errors.txt5 …function f<T, U>(t1: T, u1: U, pf1: (u2: U) => T, pf2: (t2: T) => U): [T, U] { return [t1, pf2(t1)…
/third_party/glslang/Test/
Dspv.queryL.frag30 vec2 pf2;
34 lod += textureQueryLod(isamp2D, pf2);
38 lod += textureQueryLod(usamp2DA, pf2);
42 lod += textureQueryLod(samp2Ds, pf2);
45 lod += textureQueryLod(samp2DAs, pf2);
D150.frag111 vec2 pf2;
115 lod = textureQueryLod(samp2Ds, pf2); // ERROR, extension GL_ARB_texture_query_lod needed
138 vec2 pf2;
142 lod = textureQueryLod(isamp2D, pf2);
146 lod = textureQueryLod(usamp2DA, pf2);
149 lod = textureQueryLod(samp2Ds, pf2);
152 lod = textureQueryLod(samp2DAs, pf2);
155 lod = textureQueryLod(sampRect, pf2); // ERROR
D400.frag165 vec2 pf2;
169 lod = textureQueryLod(isamp2D, pf2);
173 lod = textureQueryLod(usamp2DA, pf2);
177 lod = textureQueryLod(samp2Ds, pf2);
180 lod = textureQueryLod(samp2DAs, pf2);
184 lod = textureQueryLod(sampRect, pf2); // ERROR
D400.geom112 vec2 pf2;
116 lod = textureQueryLod(samp2Ds, pf2); // ERROR, only in fragment
/third_party/typescript/tests/cases/compiler/
DtypeParameterFixingWithContextSensitiveArguments5.ts1 function f<T, U>(t1: T, u1: U, pf1: (u2: U) => T, pf2: (t2: T) => U): [T, U] { return [t1, pf2(t1)]…
DtypeParameterFixingWithContextSensitiveArguments3.ts1 function f<T, U>(t1: T, u1: U, pf1: (u2: U) => T, pf2: (t2: T) => U): [T, U] { return [t1, pf2(t1)]…
/third_party/icu/icu4c/source/test/intltest/
Dplurfmts.cpp647 PluralFormat pf2(Locale::getEnglish(), UPLURAL_TYPE_ORDINAL, errorCode); in ordinalFormatTest() local
648 pf2.applyPattern(pattern, errorCode); in ordinalFormatTest()
652 result = pf2.format((int32_t)456, errorCode); in ordinalFormatTest()
657 result = pf2.format((int32_t)111, errorCode); in ordinalFormatTest()
671 PluralFormat pf2(Locale::getEnglish(), in TestDecimals() local
674 pf2.setNumberFormat(&df, errorCode); in TestDecimals()
675 …assertEquals("offset-decimals format(1)", "another 0.0 meters", pf2.format((int32_t)1, errorCode),… in TestDecimals()
676 …assertEquals("offset-decimals format(2)", "another 1.0 meters", pf2.format((int32_t)2, errorCode),… in TestDecimals()
677 …assertEquals("offset-decimals format(2.5)", "another 1.5 meters", pf2.format(2.5, errorCode), true… in TestDecimals()
/third_party/glslang/Test/baseResults/
Dspv.queryL.frag.out23 Name 25 "pf2"
179 25(pf2): 8(ptr) Variable Function
187 26: 7(fvec2) Load 25(pf2)
211 66: 7(fvec2) Load 25(pf2)
229 93: 7(fvec2) Load 25(pf2)
247 120: 7(fvec2) Load 25(pf2)
D150.frag.out234 0:115 'pf2' ( temp 2-component vector of float)
247 0:142 'pf2' ( temp 2-component vector of float)
267 0:146 'pf2' ( temp 2-component vector of float)
277 0:149 'pf2' ( temp 2-component vector of float)
292 0:152 'pf2' ( temp 2-component vector of float)
D400.frag.out417 0:169 'pf2' ( temp 2-component vector of float)
437 0:173 'pf2' ( temp 2-component vector of float)
452 0:177 'pf2' ( temp 2-component vector of float)
467 0:180 'pf2' ( temp 2-component vector of float)
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
DPluralFormatUnitTest.java404 PluralFormat pf2 = new PluralFormat(ULocale.ENGLISH, in TestDecimals() local
406 pf2.setNumberFormat(new DecimalFormat("0.0", new DecimalFormatSymbols(ULocale.ENGLISH))); in TestDecimals()
407 assertEquals("offset-decimals format(1)", "another 0.0 meters", pf2.format(1)); in TestDecimals()
408 assertEquals("offset-decimals format(2)", "another 1.0 meters", pf2.format(2)); in TestDecimals()
409 assertEquals("offset-decimals format(2.5)", "another 1.5 meters", pf2.format(2.5)); in TestDecimals()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DPluralFormatUnitTest.java402 PluralFormat pf2 = new PluralFormat(ULocale.ENGLISH, in TestDecimals() local
404 pf2.setNumberFormat(new DecimalFormat("0.0", new DecimalFormatSymbols(ULocale.ENGLISH))); in TestDecimals()
405 assertEquals("offset-decimals format(1)", "another 0.0 meters", pf2.format(1)); in TestDecimals()
406 assertEquals("offset-decimals format(2)", "another 1.0 meters", pf2.format(2)); in TestDecimals()
407 assertEquals("offset-decimals format(2.5)", "another 1.5 meters", pf2.format(2.5)); in TestDecimals()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonPatterns.td43 // SDNodes, use pf1/pf2 to convert them to PatFrags. Use common frags
277 class pf2<SDNode Op> : PatFrag<(ops node:$a, node:$b), (Op node:$a, node:$b)>;
356 def Add: pf2<add>; def And: pf2<and>; def Sra: pf2<sra>;
357 def Sub: pf2<sub>; def Or: pf2<or>; def Srl: pf2<srl>;
358 def Mul: pf2<mul>; def Xor: pf2<xor>; def Shl: pf2<shl>;
360 def Rol: pf2<rotl>;
1276 def: OpR_RI_pat<S2_asl_i_vw, pf2<HexagonVASL>, v2i32, V2I32, u5_0ImmPred>;
1277 def: OpR_RI_pat<S2_asl_i_vh, pf2<HexagonVASL>, v4i16, V4I16, u4_0ImmPred>;
1278 def: OpR_RI_pat<S2_asr_i_vw, pf2<HexagonVASR>, v2i32, V2I32, u5_0ImmPred>;
1279 def: OpR_RI_pat<S2_asr_i_vh, pf2<HexagonVASR>, v4i16, V4I16, u4_0ImmPred>;
[all …]