Home
last modified time | relevance | path

Searched refs:h (Results 1 – 25 of 212) sorted by relevance

123456789

/arkcompiler/toolchain/build/third_party_gn/googletest/
DBUILD.gn35 "$googletest_dir/include/gtest/gtest-spi.h",
36 "$googletest_dir/include/gtest/gtest.h",
39 "$googletest_dir/include/gtest/gtest-death-test.h",
40 "$googletest_dir/include/gtest/gtest-matchers.h",
41 "$googletest_dir/include/gtest/gtest-message.h",
42 "$googletest_dir/include/gtest/gtest-param-test.h",
43 "$googletest_dir/include/gtest/gtest-printers.h",
44 "$googletest_dir/include/gtest/gtest-test-part.h",
45 "$googletest_dir/include/gtest/gtest-typed-test.h",
46 "$googletest_dir/include/gtest/gtest_pred_impl.h",
[all …]
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DmappedTypeInferenceCircularity.ts26 declare let h: HTML; variable
27 AssertType(h, "HTML");
29 h.div(h);
30 AssertType(h.div(h), "{}");
31 AssertType(h.div, "Block<HTML>");
32 AssertType(h, "HTML");
DcompositeGenericFunction.ts25 function h<R>(func: (x: number) => R): R { function
30 let z: number = h<number>(f);
32 AssertType(h<number>(f), "number");
33 AssertType(h, "<R>((number) => R) => R");
36 let z: number = h(f);
38 AssertType(h(f), "number");
39 AssertType(h, "<R>((number) => R) => R");
DoptionalMethods.ts72 h?() {
120 let h1 = x.h && x.h();
122 AssertType(x.h && x.h(), "union");
123 AssertType(x.h, "union");
124 AssertType(x.h(), "number");
125 AssertType(x.h, "() => number");
127 let h2 = x.h ? x.h() : 0;
129 AssertType(x.h ? x.h() : 0, "number");
130 AssertType(x.h, "union");
131 AssertType(x.h(), "number");
[all …]
DstringLiteralTypesAsTypeParameterConstraint01.ts60 let h = bar(x => x); variable
61 AssertType(h, "(union) => union");
68 let hResult = h("foo");
70 AssertType(h("foo"), "union");
71 AssertType(h, "(union) => union");
74 hResult = h("bar");
75 AssertType(hResult = h("bar"), "union");
77 AssertType(h("bar"), "union");
78 AssertType(h, "(union) => union");
DconditionalExpressions2.ts72 let h = [{h:5}, null]; variable
73 AssertType(h, "{ h: number; }[]");
74 AssertType([{h:5}, null], "{ h: number; }[]");
75 AssertType({h:5}, "{ h: number; }");
76 AssertType(h, "number");
DgenericsAndHigherOrderFunctions.ts59 (h: <M>(_: (_: K) => (_: M) => M) => (_: M) => M) =>
60 AssertType(h, "<M>((K) => (M) => M) => (M) => M");
73 …(g: (x: K) => N) => (h: <M>(_: (_: K) => (_: M) => M) => (_: M) => M) => <R>(f: …
77 (h: <M>(_: (_: K) => (_: M) => M) => (_: M) => M) =>
78 AssertType((h: <M>(_: (_: K) => (_: M) => M) => (_: M) => M) => <R>(f: (_: N) => (_: R) …
79 AssertType(h, "<M>((K) => (M) => M) => (M) => M");
85 <R>(f: (_: N) => (_: R) => R) => h(combine(f)(g))
86 AssertType(<R>(f: (_: N) => (_: R) => R) => h(combine(f)(g)), "<R>((N) => (R) => R) => (R) => R");
90 AssertType(h(combine(f)(g)), "(R) => R");
91 AssertType(h, "<M>((K) => (M) => M) => (M) => M");
DcontextualSignatureInstantiationWithTypeParameterConstrainedToOuterTypeParameter.ts34 let h: <V, W>(v: V, func: (v: V) => W) => W; variable
35 AssertType(h, "<V, W>(V, (V) => W) => W");
40 let x = h("", f<string>()); // Call should succeed and x should be string. All type parameters shou…
42 AssertType(h("", f<string>()), "string");
43 AssertType(h, "<V, W>(V, (V) => W) => W");
DassignmentCompatWithGenericCallSignatures3.ts32 let h: <T>(x: T) => <S>(y: S) => { <U>(f: (x: T) => (y: S) => U): U variable
33 AssertType(h, "<T>(T) => <S>(S) => <U>((T) => (S) => U) => U");
46 g = h // ok
47 AssertType(g = h, "<T>(T) => <S>(S) => <U>((T) => (S) => U) => U");
49 AssertType(h, "<T>(T) => <S>(S) => <U>((T) => (S) => U) => U");
DinferThisType.ts22 declare function h(this: number): void;
23 f(h)
24 AssertType(f(h), "number");
26 AssertType(h, "(number) => void");
DtaggedTemplateStringsWithTagsTypedAsAnyES6.ts36 f.g.h `abc`
37 AssertType(f.g.h `abc`, "any");
38 AssertType(f.g.h, "any");
41 f.g.h `abc${1}def${2}ghi`;
42 AssertType(f.g.h `abc${1}def${2}ghi`, "any");
43 AssertType(f.g.h, "any");
DtaggedTemplateStringsWithTagsTypedAsAny.ts36 f.g.h `abc`
37 AssertType(f.g.h `abc`, "any");
38 AssertType(f.g.h, "any");
41 f.g.h `abc${1}def${2}ghi`;
42 AssertType(f.g.h `abc${1}def${2}ghi`, "any");
43 AssertType(f.g.h, "any");
DlogicalAssignment1targetes2015.ts42 declare let h: 0 | 1 | 42
43 AssertType(h, "union");
85 h ||= 42
86 AssertType(h ||= 42, "union");
87 AssertType(h, "union");
DlogicalAssignment1targetes2021.ts42 declare let h: 0 | 1 | 42
43 AssertType(h, "union");
85 h ||= 42
86 AssertType(h ||= 42, "union");
87 AssertType(h, "union");
DlogicalAssignment1targetes2020.ts42 declare let h: 0 | 1 | 42
43 AssertType(h, "union");
85 h ||= 42
86 AssertType(h ||= 42, "union");
87 AssertType(h, "union");
DlogicalAssignment1targetesnext.ts42 declare let h: 0 | 1 | 42
43 AssertType(h, "union");
85 h ||= 42
86 AssertType(h ||= 42, "union");
87 AssertType(h, "union");
DnewWithSpreadES6.ts64 let h: { [key: string]: C }; variable
65 AssertType(h, "{ [string]: C; }");
374 new h["a-b"]["a-b"](1, 2, "string");
375 AssertType(new h["a-b"]["a-b"](1, 2, "string"), "B");
376 AssertType(h["a-b"]["a-b"], "typeof B");
377 AssertType(h["a-b"], "C");
378 AssertType(h, "{ [string]: C; }");
385 new h["a-b"]["a-b"](1, 2, ...a);
386 AssertType(new h["a-b"]["a-b"](1, 2, ...a), "B");
387 AssertType(h["a-b"]["a-b"], "typeof B");
[all …]
DnewWithSpreadES5.ts63 let h: { [key: string]: C }; variable
64 AssertType(h, "{ [string]: C; }");
373 new h["a-b"]["a-b"](1, 2, "string");
374 AssertType(new h["a-b"]["a-b"](1, 2, "string"), "B");
375 AssertType(h["a-b"]["a-b"], "typeof B");
376 AssertType(h["a-b"], "C");
377 AssertType(h, "{ [string]: C; }");
384 new h["a-b"]["a-b"](1, 2, ...a);
385 AssertType(new h["a-b"]["a-b"](1, 2, ...a), "B");
386 AssertType(h["a-b"]["a-b"], "typeof B");
[all …]
/arkcompiler/ets_runtime/tools/circuit_viewer/src/engine/graphics/
DXTexture.js71 this.ximages[rid] = { stat: 1, path: path, tex: texture, w: 1, h: 1 }; property
100 XTexture.pinstance_.ximages[rid].h = image.height;
105 TmpCut(rid, x = 0, y = 0, w = -1, h = -1, ww = 1024, hh = 1024) { argument
109 if (h == -1) h = hh;
115 h: h, property
121 v2: (y + h) / hh,
123 v3: (y + h) / hh,
128 makeCut(rid, x = 0, y = 0, w = -1, h = -1, ww = -1, hh = -1) { argument
130 if (hh == -1) hh = this.ximages[rid].h;
132 if (h == -1) h = hh;
[all …]
/arkcompiler/ets_runtime/tools/circuit_viewer/src/engine/
DXDefine.js19 static ReSize(w, h) { argument
21 Scr.height = h;
22 if (Scr.keeplogicworh == 'width') Scr.logich = (Scr.logicw * h) / w;
23 else Scr.logicw = (Scr.logich * w) / h;
25 static setLogicScreenSize(w, h) { argument
26 if (Scr.logicw == w && Scr.width == w && Scr.logich == h && Scr.height == h)
29 Scr.logich = h;
31 Scr.height = h;
/arkcompiler/toolchain/build/third_party_gn/musl/
Dmusl_src.gni99 "compat/time32/time32.h",
232 "src/internal/pthread_impl.h",
233 "src/internal/locale_impl.h",
551 "src/malloc/mallocng/glue.h",
554 "src/malloc/mallocng/meta.h",
1744 "arch/arm/bits/fcntl.h",
1745 "arch/arm/bits/fenv.h",
1746 "arch/arm/bits/float.h",
1747 "arch/arm/bits/hwcap.h",
1748 "arch/arm/bits/ioctl_fix.h",
[all …]
/arkcompiler/runtime_core/gn/ark-third-party/zlib/
DBUILD.gn37 "crc32.h",
39 "deflate.h",
41 "gzguts.h",
47 "inffast.h",
48 "inffixed.h",
50 "inflate.h",
52 "inftrees.h",
54 "trees.h",
56 "zconf.h",
57 "zlib.h",
[all …]
/arkcompiler/runtime_core/cmake/ark-third-party/zlib/
DCMakeLists.txt23 check_include_file(sys/types.h HAVE_SYS_TYPES_H)
24 check_include_file(stdint.h HAVE_STDINT_H)
25 check_include_file(stddef.h HAVE_STDDEF_H)
58 # Check for unistd.h
60 check_include_file(unistd.h Z_HAVE_UNISTD_H)
70 # If we're doing an out of source build and the user has a zconf.h
72 if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/zconf.h)
74 message(STATUS " ${CMAKE_CURRENT_SOURCE_DIR}/zconf.h")
75 message(STATUS "to 'zconf.h.included' because this file is included with zlib")
77 … file(RENAME ${CMAKE_CURRENT_SOURCE_DIR}/zconf.h ${CMAKE_CURRENT_SOURCE_DIR}/zconf.h.included)
[all …]
/arkcompiler/toolchain/build/third_party_gn/zlib/
DBUILD.gn39 "//third_party/zlib/crc32.h",
41 "//third_party/zlib/deflate.h",
43 "//third_party/zlib/gzguts.h",
49 "//third_party/zlib/inffast.h",
50 "//third_party/zlib/inffixed.h",
52 "//third_party/zlib/inflate.h",
54 "//third_party/zlib/inftrees.h",
56 "//third_party/zlib/trees.h",
58 "//third_party/zlib/zconf.h",
59 "//third_party/zlib/zlib.h",
[all …]
/arkcompiler/ets_runtime/tools/circuit_viewer/src/ir/
DCanvasInput.js19 static SetSafeArea(x, y, w, h) { argument
20 CanvasInput.SAFE_AREA = [x, y, w, h];
22 static Reset(x, y, w, h, value, cb, cb2, cb3) { argument
23 CanvasInput.SAFE_AREA = [x, y, w, h];
28 ci.style.height = h + 'px';

123456789