/third_party/typescript/tests/baselines/reference/ |
D | typeCheckTypeArgument.errors.txt | 1 tests/cases/compiler/typeCheckTypeArgument.ts(1,19): error TS2304: Cannot find name 'UNKNOWN'. 2 tests/cases/compiler/typeCheckTypeArgument.ts(3,26): error TS2304: Cannot find name 'UNKNOWN'. 3 tests/cases/compiler/typeCheckTypeArgument.ts(5,21): error TS2304: Cannot find name 'UNKNOWN'. 4 tests/cases/compiler/typeCheckTypeArgument.ts(7,24): error TS2304: Cannot find name 'UNKNOWN'. 5 tests/cases/compiler/typeCheckTypeArgument.ts(10,22): error TS2304: Cannot find name 'UNKNOWN'. 6 tests/cases/compiler/typeCheckTypeArgument.ts(13,13): error TS2304: Cannot find name 'UNKNOWN'. 10 var f: <T extends UNKNOWN>() => void; 12 !!! error TS2304: Cannot find name 'UNKNOWN'. 14 interface IFoo<T extends UNKNOWN> { } 16 !!! error TS2304: Cannot find name 'UNKNOWN'. [all …]
|
D | typeCheckTypeArgument.types | 2 var f: <T extends UNKNOWN>() => void; 5 interface IFoo<T extends UNKNOWN> { } 7 class Foo<T extends UNKNOWN> { } 10 function bar<T extends UNKNOWN>() { } 16 method<T extends UNKNOWN>() { } 20 (<T extends UNKNOWN>(a) => { }); 21 >(<T extends UNKNOWN>(a) => { }) : <T extends any>(a: any) => void 22 ><T extends UNKNOWN>(a) => { } : <T extends any>(a: any) => void
|
D | typeCheckTypeArgument.js | 2 var f: <T extends UNKNOWN>() => void; 4 interface IFoo<T extends UNKNOWN> { } 6 class Foo<T extends UNKNOWN> { } 8 function bar<T extends UNKNOWN>() { } 11 method<T extends UNKNOWN>() { } 14 (<T extends UNKNOWN>(a) => { });
|
D | typeCheckTypeArgument.symbols | 2 var f: <T extends UNKNOWN>() => void; 6 interface IFoo<T extends UNKNOWN> { } 10 class Foo<T extends UNKNOWN> { } 14 function bar<T extends UNKNOWN>() { } 21 method<T extends UNKNOWN>() { } 26 (<T extends UNKNOWN>(a) => { });
|
D | enumTag.errors.txt | 3 tests/cases/conformance/jsdoc/a.js(37,16): error TS2339: Property 'UNKNOWN' does not exist on type … 47 v = Target.UNKNOWN // error, can't find 'UNKNOWN' 49 !!! error TS2339: Property 'UNKNOWN' does not exist on type '{ START: string; MIDDLE: string; END: …
|
D | enumTag.types | 106 v = Target.UNKNOWN // error, can't find 'UNKNOWN' 107 >v = Target.UNKNOWN : any 109 >Target.UNKNOWN : any 111 >UNKNOWN : any
|
/third_party/typescript/tests/cases/compiler/ |
D | typeCheckTypeArgument.ts | 2 var f: <T extends UNKNOWN>() => void; 4 interface IFoo<T extends UNKNOWN> { } 6 class Foo<T extends UNKNOWN> { } 8 function bar<T extends UNKNOWN>() { } 11 method<T extends UNKNOWN>() { } 14 (<T extends UNKNOWN>(a) => { });
|
/third_party/gstreamer/gstplugins_bad/sys/d3d11/ |
D | gstd3d11pluginutils.cpp | 223 MAKE_COLOR_MAP (RGB_FULL_G22_NONE_P709, _0_255, UNKNOWN, BT709, BT709), 224 MAKE_COLOR_MAP (RGB_FULL_G22_NONE_P709, _0_255, UNKNOWN, BT601, BT709), 225 MAKE_COLOR_MAP (RGB_FULL_G22_NONE_P709, _0_255, UNKNOWN, BT2020_10, BT709), 226 MAKE_COLOR_MAP (RGB_FULL_G22_NONE_P709, _0_255, UNKNOWN, BT2020_12, BT709), 227 MAKE_COLOR_MAP (RGB_FULL_G22_NONE_P709, _0_255, UNKNOWN, BT709, BT470BG), 228 MAKE_COLOR_MAP (RGB_FULL_G22_NONE_P709, _0_255, UNKNOWN, BT601, BT470BG), 229 MAKE_COLOR_MAP (RGB_FULL_G22_NONE_P709, _0_255, UNKNOWN, BT2020_10, BT470BG), 230 MAKE_COLOR_MAP (RGB_FULL_G22_NONE_P709, _0_255, UNKNOWN, BT2020_12, BT470BG), 233 MAKE_COLOR_MAP (RGB_FULL_G22_NONE_P709, _0_255, UNKNOWN, SRGB, BT709), 234 MAKE_COLOR_MAP (RGB_FULL_G22_NONE_P709, _0_255, UNKNOWN, SRGB, BT470BG), [all …]
|
/third_party/protobuf/src/google/protobuf/stubs/ |
D | status_test.cc | 52 EXPECT_EQ(util::error::UNKNOWN, util::Status::UNKNOWN.error_code()); in TEST() 53 EXPECT_EQ(util::error::UNKNOWN, util::Status::UNKNOWN.code()); in TEST() 88 util::Status a(util::error::UNKNOWN, "message"); in TEST() 94 util::Status a(util::error::UNKNOWN, "message"); in TEST() 101 util::Status a(util::error::UNKNOWN, "message"); in TEST() 127 const util::Status b = util::Status(util::error::UNKNOWN, "message"); in TEST()
|
D | status.cc | 47 case UNKNOWN: in CodeEnumToString() 87 const Status Status::UNKNOWN = Status(error::UNKNOWN, ""); member in google::protobuf::util::Status
|
/third_party/python/Tools/c-analyzer/c_analyzer/ |
D | info.py | 22 UNKNOWN = _misc.Labeled('UNKNOWN') variable 70 if resolved in (UNKNOWN, IGNORED): 81 elif typedeps in (None, UNKNOWN): 83 return UNKNOWN, extra 84 elif None in typedeps or UNKNOWN in typedeps: 94 if typedecl in (UNKNOWN, IGNORED): 100 typedecl = UNKNOWN 102 typedecl = [UNKNOWN if d is None else d for d in typedecl] 104 typedecl = UNKNOWN 109 typedecl = UNKNOWN [all …]
|
D | analyze.py | 13 UNKNOWN, 59 if UNKNOWN in typedeps: 62 types[decl] = UNKNOWN 133 typedecl = UNKNOWN 136 typedecl = UNKNOWN 137 elif types[typedecl] is UNKNOWN: 138 typedecl = UNKNOWN 217 if types[decl] in (UNKNOWN, IGNORED):
|
/third_party/mbedtls/tests/suites/ |
D | test_suite_error.data | 14 error_strerror:-0x8880:"UNKNOWN ERROR CODE (8880)" 17 error_strerror:-0x007F:"UNKNOWN ERROR CODE (007F)" 20 error_strerror:-0x88FF:"UNKNOWN ERROR CODE (8880) \: UNKNOWN ERROR CODE (007F)"
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
D | TimeZoneFormatTest.java | 567 null, "Etc/GMT", 1, TimeType.UNKNOWN}, in TestParse() 570 null, "Etc/GMT", 1, TimeType.UNKNOWN}, in TestParse() 573 EnumSet.of(ParseOption.ALL_STYLES), "Etc/GMT", 1, TimeType.UNKNOWN}, in TestParse() 576 null, "Africa/Lusaka", 11, TimeType.UNKNOWN}, in TestParse() 579 EnumSet.of(ParseOption.ALL_STYLES), "Africa/Lusaka", 11, TimeType.UNKNOWN}, in TestParse() 582 null, "Etc/GMT", 6, TimeType.UNKNOWN}, in TestParse() 585 null, "GMT-01:30:45", 9, TimeType.UNKNOWN}, in TestParse() 588 null, "GMT-07:00", 2, TimeType.UNKNOWN}, in TestParse() 591 null, "GMT-22:22", 5, TimeType.UNKNOWN}, in TestParse() 594 null, "GMT-03:33", 4, TimeType.UNKNOWN}, in TestParse() [all …]
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | TimeZoneFormatTest.java | 564 null, "Etc/GMT", 1, TimeType.UNKNOWN}, in TestParse() 567 null, "Etc/GMT", 1, TimeType.UNKNOWN}, in TestParse() 570 EnumSet.of(ParseOption.ALL_STYLES), "Etc/GMT", 1, TimeType.UNKNOWN}, in TestParse() 573 null, "Africa/Lusaka", 11, TimeType.UNKNOWN}, in TestParse() 576 EnumSet.of(ParseOption.ALL_STYLES), "Africa/Lusaka", 11, TimeType.UNKNOWN}, in TestParse() 579 null, "Etc/GMT", 6, TimeType.UNKNOWN}, in TestParse() 582 null, "GMT-01:30:45", 9, TimeType.UNKNOWN}, in TestParse() 585 null, "GMT-07:00", 2, TimeType.UNKNOWN}, in TestParse() 588 null, "GMT-22:22", 5, TimeType.UNKNOWN}, in TestParse() 591 null, "GMT-03:33", 4, TimeType.UNKNOWN}, in TestParse() [all …]
|
/third_party/mindspore/mindspore/lite/schema/ |
D | ops_types.fbs | 20 UNKNOWN = -1, 82 UNKNOWN = 20 105 UNKNOWN = 3 127 UNKNOWN = 0,
|
/third_party/ejdb/src/bindings/ejdb2_jni/src/main/java/com/softmotions/ejdb2/ |
D | JSON.java | 54 private static JSON UNKNOWN = new JSON(ValueType.UNKNOWN, null); field in JSON 58 valueTypes[i] = ValueType.UNKNOWN; 120 if (type != ValueType.UNKNOWN) { in write() 133 return type == ValueType.UNKNOWN; in isUnknown() 169 return UNKNOWN; in get() 173 return UNKNOWN; in get() 184 return UNKNOWN; in get() 188 return UNKNOWN; in get() 199 return type != ValueType.UNKNOWN ? (T) value : defaultValue; in orDefault() 203 return type != ValueType.UNKNOWN && type != ValueType.NULL ? (T) value : defaultValue; in orDefaultNotNull() [all …]
|
/third_party/grpc/src/python/grpcio_tests/tests/unit/ |
D | _rpc_part_1_test.py | 106 self.assertIs(grpc.StatusCode.UNKNOWN, 132 self.assertIs(grpc.StatusCode.UNKNOWN, 136 self.assertIs(grpc.StatusCode.UNKNOWN, 161 self.assertIs(grpc.StatusCode.UNKNOWN, 180 self.assertIs(grpc.StatusCode.UNKNOWN, response_future.code()) 181 self.assertIs(grpc.StatusCode.UNKNOWN,
|
D | _invocation_defects_test.py | 207 self.assertIs(grpc.StatusCode.UNKNOWN, 220 self.assertIs(grpc.StatusCode.UNKNOWN, 233 self.assertIs(grpc.StatusCode.UNKNOWN, 248 self.assertIs(grpc.StatusCode.UNKNOWN, 260 self.assertIs(grpc.StatusCode.UNKNOWN,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Lanai/ |
D | LanaiAluCode.h | 40 UNKNOWN = 0xFF, enumerator 115 .Default(UNKNOWN); in stringToLanaiAluCode() 141 return AluCode::UNKNOWN; in isdToLanaiAluCode()
|
/third_party/grpc/src/ruby/spec/generic/ |
D | rpc_desc_spec.rb | 23 UNKNOWN = GRPC::Core::StatusCodes::UNKNOWN constant 49 expect(@call).to receive(:send_status).once.with(UNKNOWN, 58 UNKNOWN, not_implemented_error_msg, false, metadata: {}) 107 expect(@call).to receive(:send_status).once.with(UNKNOWN, arg_error_msg, 114 UNKNOWN, not_implemented_error_msg, false, metadata: {}) 177 expect(@call).to receive(:send_status).once.with(UNKNOWN, error_msg, 186 UNKNOWN, not_implemented_error_msg, false, metadata: {})
|
/third_party/jsframework/runtime/main/extend/systemplugin/napi/ |
D | ohos_application_AbilityConstant.js | 21 UNKNOWN: 0, property 27 UNKNOWN: 0, property
|
/third_party/flutter/engine/flutter/shell/platform/android/io/flutter/embedding/android/ |
D | AndroidTouchProcessor.java | 46 PointerDeviceKind.UNKNOWN 53 int UNKNOWN = 4; field 60 PointerSignalKind.UNKNOWN 65 int UNKNOWN = 2; field 305 return PointerDeviceKind.UNKNOWN; in getPointerDeviceTypeForToolType()
|
/third_party/mesa3d/include/pci_ids/ |
D | radeon_pci_ids.h | 15 CHIPSET(0x515E, RN50_515E, UNKNOWN) 16 CHIPSET(0x5969, RN50_5969, UNKNOWN)
|
/third_party/node/test/parallel/ |
D | test-fs-readdir-types.js | 82 const UNKNOWN = constants.UV_DIRENT_UNKNOWN; constant 93 results[1] = results[1].map(() => UNKNOWN); 99 results[1] = results[1].map(() => UNKNOWN);
|