Home
last modified time | relevance | path

Searched refs:isUndefined (Results 1 – 25 of 138) sorted by relevance

123456

/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/types/primitive_types/the_undefined_type/
Dthe_undefined_type_1.ts39 Assert.isUndefined(x.b);
40 Assert.isUndefined(x.c);
41 Assert.isUndefined(x.d);
42 Assert.isUndefined(x.e);
43 Assert.isUndefined(x.f);
44 Assert.isUndefined(x.g);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DValueLattice.h142 bool isUndefined() const { return Tag == undefined; } in isUndefined() function
195 assert(isUndefined()); in markConstant()
213 assert(isUndefined() || isConstant()); in markNotConstant()
228 assert(isUndefined()); in markConstantRange()
241 if (RHS.isUndefined() || isOverdefined()) in mergeIn()
248 if (isUndefined()) { in mergeIn()
250 return !RHS.isUndefined(); in mergeIn()
295 if (isUndefined() || Other.isUndefined()) in getCompare()
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/2.7/6_improved_type_inference_for_object_literals/
D6_improved_type_inference_for_object_literals.ts30 Assert.isUndefined(obj1.a);
35 Assert.isUndefined(obj1.b);
47 Assert.isUndefined(obj2.a);
54 Assert.isUndefined(obj2.b);
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/expressions/binary_operators/the_and_operator/
Dthe_and_operator.ts47 Assert.isUndefined(o);
57 Assert.isUndefined(s);
68 Assert.isUndefined(x);
70 Assert.isUndefined(y);
/third_party/typescript/src/testRunner/unittests/tsserver/
DautoImportProvider.ts41 …assert.isUndefined(projectService.configuredProjects.get(tsconfig.path)!.getLanguageService().getA…
53 …assert.isUndefined(projectService.configuredProjects.get(tsconfig.path)!.getLanguageService().getA…
69 assert.isUndefined(projectService
89 …assert.isUndefined(projectService.configuredProjects.get(tsconfig.path)!.getLanguageService().getA…
102 …assert.isUndefined(projectService.configuredProjects.get(tsconfig.path)!.getLanguageService().getA…
144 assert.isUndefined(hostProject.autoImportProviderHost);
227 …assert.isUndefined(projectService.configuredProjects.get(tsconfig.path)!.getLanguageService().getA…
250 assert.isUndefined(project.getPackageJsonAutoImportProvider());
284 …assert.isUndefined(projectService.configuredProjects.get("/packages/a/tsconfig.json")!.getLanguage…
DpackageJsonInfo.ts29 assert.isUndefined(projectService.packageJsonCache.getInDirectory("/" as Path));
46 assert.isUndefined(packageJsonInfo.dependencies);
57 assert.isUndefined(projectService.packageJsonCache.getInDirectory("/" as Path));
DmaxNodeModuleJsDepth.ts44 assert.isUndefined(project.getCompilationSettings().maxNodeModuleJsDepth);
52 assert.isUndefined(project.getCompilationSettings().maxNodeModuleJsDepth);
Doccurences.ts32 …assert.isUndefined(firstOccurence.isInString, "Highlights should not be marked with isInString if …
43 …assert.isUndefined(firstOccurence.isInString, "Highlights should not be marked with isInString if …
DmoduleSpecifierCache.ts107 assert.isUndefined(getWithPreferences(preferences));
110 assert.isUndefined(getWithPreferences({}));
118 assert.isUndefined(getWithPreferences(preferences));
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/types/type_parameters/type_parameter_lists/
Dtype_parameter_lists_3.ts42 Assert.isUndefined(x.job);
43 Assert.isUndefined(x.age);
45 Assert.isUndefined(x.job);
/third_party/vk-gl-cts/modules/glshared/
DglsStateQueryUtil.cpp148 bool QueriedState::isUndefined (void) const in isUndefined() function in deqp::gls::StateQueryUtil::QueriedState
1835 if (!state.isUndefined()) in verifyStateBoolean()
1845 if (!state.isUndefined()) in verifyStateInteger()
1855 if (!state.isUndefined()) in verifyStateIntegerMin()
1865 if (!state.isUndefined()) in verifyStateIntegerMax()
1877 if (stateA.isUndefined() || stateB.isUndefined()) in verifyStateIntegerEqualToOther()
1922 if (!state.isUndefined()) in verifyStateFloat()
1932 if (!state.isUndefined()) in verifyStateFloatMin()
1942 if (!state.isUndefined()) in verifyStateFloatMax()
1952 if (!state.isUndefined()) in verifyStatePointer()
[all …]
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/2.0/optional_parameters_and_properties/
Doptional_parameters_and_properties.ts31 Assert.isUndefined(c);
45 Assert.isUndefined(i1.str);
61 Assert.isUndefined(c1.str);
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/types/type_relationships/type_inference/
Dtype_inference_4.ts35 function isUndefined<T>(x: Maybe<T>): x is void { function
46 let x3 = isUndefined(x) ? "Undefined" : x;
55 let x3 = isUndefined(x) ? -1 : x;
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/3.0/new_unknown_top_type/
Dnew_unknown_top_type.ts29 Assert.isUndefined(t1);
35 Assert.isUndefined(t3);
39 Assert.isUndefined(t4);
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/expressions/object_literal/
Dobject_literal_7.ts41 Assert.isUndefined(obj2['str']);
57 Assert.isUndefined(obj4[1]);
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/4.3/static_index_signatures/
Dstatic_index_signatures.ts38 Assert.isUndefined(x);
59 Assert.isUndefined(y);
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/3.7/optional_chaining/
Doptional_chaining_4.ts43 Assert.isUndefined(x);
46 Assert.isUndefined(y);
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/2.0/expression_operators/
Dexpression_operators_2.ts34 Assert.isUndefined(y);
49 Assert.isUndefined(b);
/third_party/typescript/tests/baselines/reference/
DcontrolFlowGenericTypes.js33 declare function isUndefined(x: unknown): x is undefined;
43 if (!isUndefined(x)) {
55 if (isUndefined(x)) {
257 if (!isUndefined(x)) {
267 if (isUndefined(x)) {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCObjectWriter.cpp29 if (SA.isUndefined() || SB.isUndefined()) in isSymbolRefDifferenceFullyResolved()
DMachObjectWriter.cpp57 if (S.isUndefined()) in doesSymbolRequireExternRelocation()
101 if (Target.getSymA() && Target.getSymA()->getSymbol().isUndefined()) in getSymbolAddress()
104 if (Target.getSymB() && Target.getSymB()->getSymbol().isUndefined()) in getSymbolAddress()
361 if (IsAlias && Symbol->isUndefined()) in writeNlist()
363 else if (Symbol->isUndefined()) in writeNlist()
376 if (Data.isExternal() || (!IsAlias && Symbol->isUndefined())) in writeNlist()
380 if (IsAlias && Symbol->isUndefined()) in writeNlist()
572 if (!Symbol.isExternal() && !Symbol.isUndefined()) in computeSymbolTable()
579 if (Symbol.isUndefined()) { in computeSymbolTable()
598 if (Symbol.isExternal() || Symbol.isUndefined()) in computeSymbolTable()
/third_party/node/test/parallel/
Dtest-util.js124 assert.strictEqual(util.isUndefined(undefined), true);
125 assert.strictEqual(util.isUndefined(), true);
126 assert.strictEqual(util.isUndefined(null), false);
127 assert.strictEqual(util.isUndefined('string'), false);
/third_party/typescript/tests/cases/conformance/controlFlow/
DcontrolFlowGenericTypes.ts34 declare function isUndefined(x: unknown): x is undefined;
44 if (!isUndefined(x)) {
56 if (isUndefined(x)) {
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/expressions/binary_operators/the_or_operator/
Dthe_or_operator_1.ts48 Assert.isUndefined(o);
68 Assert.isUndefined(v);
/third_party/typescript/src/testRunner/unittests/evaluation/
DoptionalCall.ts12 assert.isUndefined(result.output[1]);
151 assert.isUndefined(result.output[2]);

123456