Home
last modified time | relevance | path

Searched refs:checkType (Results 1 – 25 of 42) sorted by relevance

12

/third_party/node/deps/npm/node_modules/json-schema/lib/
Dvalidate.js101 function checkType(type,value){ function
113 if(!(unionErrors=checkType(type[j],value)).length){
136 errors = errors.concat(checkType(getType(schema),value));
137 if(schema.disallow && !checkType(schema.disallow,value).length){
/third_party/typescript_eslint/packages/eslint-plugin/src/rules/
Dconsistent-type-assertions.ts108 function checkType(node: TSESTree.TypeNode): boolean { function
150 checkType(node.typeAnnotation) &&
Dindent.ts218 left: node.checkType as any,
222 range: [node.checkType.range[0], node.extendsType.range[1]],
224 start: node.checkType.loc.start,
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/
DvktImageAtomicSpirvShaders.hpp46 CheckType checkType; member
DvktImageAtomicSpirvShaders.cpp6511 static_cast<int>(checkType), in operator <()
6519 static_cast<int>(other.checkType), in operator <()
6526 : imageType{imgtype}, textureFormat{order, chtype}, checkType{cktype} in CaseVariant()
/third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
DRubyRepeatedField.java113 value = Utils.checkType(context, fieldType, value, (RubyModule) typeClass); in indexSet()
169 value = Utils.checkType(context, fieldType, value, (RubyModule) typeClass); in push()
393 Utils.checkType(context, fieldType, arr.eltInternal(i), (RubyModule) typeClass); in checkArrayElementType()
DRubyMap.java151 key = Utils.checkType(context, keyType, key, (RubyModule) valueTypeClass); in indexSet()
152 value = Utils.checkType(context, valueType, value, (RubyModule) valueTypeClass); in indexSet()
DUtils.java67 …public static IRubyObject checkType(ThreadContext context, Descriptors.FieldDescriptor.Type fieldT… in checkType() method in Utils
DRubyMessage.java726 value = Utils.checkType(context, fieldType, value, (RubyModule) typeClass); in setField()
/third_party/node/deps/npm/node_modules/har-validator/node_modules/ajv/lib/dot/
Dvalidate.jst136 {{## def.checkType:
173 {{# def.checkType }}
/third_party/typescript_eslint/packages/typescript-estree/tests/snapshots/typescript/types/
Dconditional-infer-nested.src.ts.shot41 "checkType": Object {
166 "checkType": Object {
257 "checkType": Object {
Dconditional-with-null.src.ts.shot43 "checkType": Object {
Dconditional.src.ts.shot43 "checkType": Object {
Dconditional-infer.src.ts.shot41 "checkType": Object {
Dconditional-infer-simple.src.ts.shot41 "checkType": Object {
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/geometry/
DvktGeometryLayeredRenderingTests.cpp750 const std::string checkType = "Depth"; in verifyLayerContent() local
760 …eMultipleBars(log, depthAsColor, barWidthRatios, barDepths, barsCount, numUsedChannels, checkType); in verifyLayerContent()
764 const std::string checkType = "Stencil"; in verifyLayerContent() local
775 …tipleBars(log, stencilAsColor, barWidthRatios, barStencils, barsCount, numUsedChannels, checkType); in verifyLayerContent()
779 const std::string checkType = "Color"; in verifyLayerContent() local
784 …ifyImageMultipleBars(log, image, barWidthRatios, barColors, barsCount, numUsedChannels, checkType); in verifyLayerContent()
/third_party/typescript/src/compiler/
Dtracing.ts230 conditionalCheckType: conditionalType.checkType?.id,
Dchecker.ts4724 … const checkTypeNode = typeToTypeNodeHelper((<ConditionalType>type).checkType, context);
10785 const checkType = (<ConditionalType>type).checkType;
10786 const constraint = getLowerBoundOfKeyType(checkType);
10787 if (constraint !== checkType) {
10788 …(<ConditionalType>type, prependTypeMapping((<ConditionalType>type).root.checkType, constraint, (<C…
11165 const simplified = getSimplifiedType(type.checkType, /*writing*/ false);
11166 … const constraint = simplified === type.checkType ? getConstraintOfType(simplified) : simplified;
11167 if (constraint && constraint !== type.checkType) {
11168 …ed = getConditionalTypeInstantiation(type, prependTypeMapping(type.root.checkType, constraint, typ…
12711 …t constraint = getImpliedConstraint(type, (<ConditionalTypeNode>parent).checkType, (<ConditionalTy…
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DValue.cpp48 static inline Type *checkType(Type *Ty) { in checkType() function
54 : VTy(checkType(ty)), UseList(nullptr), SubclassID(scid), in Value()
/third_party/glslang/glslang/Include/
DTypes.h1745 virtual bool containsBasicType(TBasicType checkType) const in containsBasicType() argument
1747 return contains([checkType](const TType* t) { return t->basicType == checkType; } ); in containsBasicType()
/third_party/typescript/src/compiler/transformers/
Ddeclarations.ts1025 const checkType = visitNode(input.checkType, visitDeclarationSubtree); constant
1032 …return cleanup(factory.updateConditionalTypeNode(input, checkType, extendsType, trueType, falseTyp…
/third_party/node/deps/icu-small/source/common/
Dlocid.cpp565 void (*checkType)(const char* type),
702 void (*checkType)(const char* type), in readAlias()
727 checkType(aliasFrom); in readAlias()
/third_party/skia/third_party/externals/icu/source/common/
Dlocid.cpp585 void (*checkType)(const char* type),
722 void (*checkType)(const char* type), in readAlias()
747 checkType(aliasFrom); in readAlias()
/third_party/icu/icu4c/source/common/
Dlocid.cpp581 void (*checkType)(const char* type),
718 void (*checkType)(const char* type), in readAlias()
743 checkType(aliasFrom); in readAlias()
/third_party/typescript/src/compiler/factory/
DnodeFactory.ts1918 …function createConditionalTypeNode(checkType: TypeNode, extendsType: TypeNode, trueType: TypeNode,…
1920 node.checkType = parenthesizerRules().parenthesizeMemberOfConditionalType(checkType);
1929 …function updateConditionalTypeNode(node: ConditionalTypeNode, checkType: TypeNode, extendsType: Ty…
1930 return node.checkType !== checkType
1934 … ? update(createConditionalTypeNode(checkType, extendsType, trueType, falseType), node)

12