Home
last modified time | relevance | path

Searched refs:valType (Results 1 – 9 of 9) sorted by relevance

/external/libxml2/include/libxml/
Dxmlschemastypes.h57 xmlSchemaValType valType,
101 xmlSchemaValType valType,
/external/libxml2/
Dxmlschemastypes.c5144 xmlSchemaValType valType, in xmlSchemaValidateLengthFacetInternal() argument
5175 switch (valType) { in xmlSchemaValidateLengthFacetInternal()
5185 if (valType == XML_SCHEMAS_STRING) in xmlSchemaValidateLengthFacetInternal()
5287 xmlSchemaValType valType, in xmlSchemaValidateLengthFacetWhtsp() argument
5293 return (xmlSchemaValidateLengthFacetInternal(facet, valType, value, val, in xmlSchemaValidateLengthFacetWhtsp()
5314 xmlSchemaValType valType, in xmlSchemaValidateFacetInternal() argument
5395 facet->val, facet->value, fws, valType, val, in xmlSchemaValidateFacetInternal()
5408 if ((valType == XML_SCHEMAS_QNAME) || in xmlSchemaValidateFacetInternal()
5409 (valType == XML_SCHEMAS_NOTATION)) in xmlSchemaValidateFacetInternal()
5416 if ((valType == XML_SCHEMAS_QNAME) || in xmlSchemaValidateFacetInternal()
[all …]
Dxmlschemas.c1494 xmlSchemaValType valType; in xmlSchemaGetCanonValueWhtspExt() local
1504 valType = xmlSchemaGetValType(val); in xmlSchemaGetCanonValueWhtspExt()
1505 switch (valType) { in xmlSchemaGetCanonValueWhtspExt()
13402 xmlSchemaIsDerivedFromBuiltInType(xmlSchemaTypePtr type, int valType) in xmlSchemaIsDerivedFromBuiltInType() argument
13409 if (type->builtInType == valType) in xmlSchemaIsDerivedFromBuiltInType()
13414 return(xmlSchemaIsDerivedFromBuiltInType(type->subtypes, valType)); in xmlSchemaIsDerivedFromBuiltInType()
13416 return(xmlSchemaIsDerivedFromBuiltInType(type->subtypes, valType)); in xmlSchemaIsDerivedFromBuiltInType()
13431 xmlSchemaIsUserDerivedFromBuiltInType(xmlSchemaTypePtr type, int valType)
13438 if (type->builtInType == valType)
13442 return(xmlSchemaIsDerivedFromBuiltInType(type->subtypes, valType));
[all …]
Dtestapi.c35937 xmlSchemaValType valType; /* the built-in type of the value */ in test_xmlSchemaValidateFacetWhtsp() local
35955 valType = gen_xmlSchemaValType(n_valType, 2); in test_xmlSchemaValidateFacetWhtsp()
35960 ret_val = xmlSchemaValidateFacetWhtsp(facet, fws, valType, (const xmlChar *)value, val, ws); in test_xmlSchemaValidateFacetWhtsp()
35965 des_xmlSchemaValType(n_valType, valType, 2); in test_xmlSchemaValidateFacetWhtsp()
36066 xmlSchemaValType valType; /* the built-in type */ in test_xmlSchemaValidateLengthFacetWhtsp() local
36085 valType = gen_xmlSchemaValType(n_valType, 1); in test_xmlSchemaValidateLengthFacetWhtsp()
36091 …ret_val = xmlSchemaValidateLengthFacetWhtsp(facet, valType, (const xmlChar *)value, val, length, w… in test_xmlSchemaValidateLengthFacetWhtsp()
36095 des_xmlSchemaValType(n_valType, valType, 1); in test_xmlSchemaValidateLengthFacetWhtsp()
/external/libxml2/os400/libxmlrpg/
Dxmlschemastypes.rpgle75 d valType value like(xmlSchemaValType)
163 d valType value like(xmlSchemaValType)
/external/golang-protobuf/protoc-gen-go/generator/
Dgenerator.go2285 valType, valWire := g.GoType(d, valField)
2294 valType = strings.TrimPrefix(valType, "*")
2299 valType = strings.TrimPrefix(valType, "*")
2302 typename = fmt.Sprintf("map[%s]%s", keyType, valType)
/external/golang-protobuf/proto/
Dtable_marshal.go2283 valType := t.Elem()
2287 …valSizer, valMarshaler := typeMarshaler(valType, valTags, false, false) // don't omit zero value i…
2296 valIsPtr := valType.Kind() == reflect.Ptr
2304 if valIsPtr && valType.Elem().Kind() == reflect.Struct {
2305 u := getMarshalInfo(valType.Elem())
/external/syzkaller/vendor/github.com/golang/protobuf/proto/
Dtable_marshal.go2267 valType := t.Elem()
2271 …valSizer, valMarshaler := typeMarshaler(valType, valTags, false, false) // don't omit zero value i…
2280 valIsPtr := valType.Kind() == reflect.Ptr
/external/v8/src/wasm/
Dwasm-interpreter.cc1685 #define SPLAT_CASE(format, sType, valType, num) \ in ExecuteSimdOp() argument
1688 valType v = val.to<valType>(); \ in ExecuteSimdOp()