Home
last modified time | relevance | path

Searched refs:TypeIdent (Results 1 – 25 of 74) sorted by relevance

123

/dports/sysutils/istio/istio-1.6.7/vendor/sigs.k8s.io/service-apis/vendor/sigs.k8s.io/controller-tools/pkg/crd/
H A Dknown_types.go31 p.Schemata[TypeIdent{Name: "ObjectMeta", Package: pkg}] = apiext.JSONSchemaProps{
34 p.Schemata[TypeIdent{Name: "Time", Package: pkg}] = apiext.JSONSchemaProps{
38 p.Schemata[TypeIdent{Name: "MicroTime", Package: pkg}] = apiext.JSONSchemaProps{
42 p.Schemata[TypeIdent{Name: "Duration", Package: pkg}] = apiext.JSONSchemaProps{
46 p.Schemata[TypeIdent{Name: "Fields", Package: pkg}] = apiext.JSONSchemaProps{
56 p.Schemata[TypeIdent{Name: "Quantity", Package: pkg}] = apiext.JSONSchemaProps{
64 p.Schemata[TypeIdent{Name: "RawExtension", Package: pkg}] = apiext.JSONSchemaProps{
72 p.Schemata[TypeIdent{Name: "Unstructured", Package: pkg}] = apiext.JSONSchemaProps{
79 p.Schemata[TypeIdent{Name: "IntOrString", Package: pkg}] = apiext.JSONSchemaProps{
90 p.Schemata[TypeIdent{Name: "JSON", Package: pkg}] = apiext.JSONSchemaProps{
[all …]
H A Dparser.go31 type TypeIdent struct { struct
36 func (t TypeIdent) String() string { argument
54 Types map[TypeIdent]*markers.TypeInfo
56 Schemata map[TypeIdent]apiext.JSONSchemaProps
64 FlattenedSchemata map[TypeIdent]apiext.JSONSchemaProps
88 p.Schemata = make(map[TypeIdent]apiext.JSONSchemaProps)
91 p.Types = make(map[TypeIdent]*markers.TypeInfo)
131 ident := TypeIdent{
144 return p.Types[TypeIdent{Package: pkg, Name: name}]
148 func (p *Parser) NeedSchemaFor(typ TypeIdent) {
[all …]
H A Dflatten.go221 LookupReference func(ref string, contextPkg *loader.Package) (TypeIdent, error)
224 flattenedTypes map[TypeIdent]apiext.JSONSchemaProps
230 f.flattenedTypes = make(map[TypeIdent]apiext.JSONSchemaProps)
238 func (f *Flattener) cacheType(typ TypeIdent, schema apiext.JSONSchemaProps) {
244 func (f *Flattener) loadUnflattenedSchema(typ TypeIdent) (*apiext.JSONSchemaProps, error) {
256 func (f *Flattener) FlattenType(typ TypeIdent) *apiext.JSONSchemaProps {
306 func identFromRef(ref string, contextPkg *loader.Package) (TypeIdent, error) {
309 return TypeIdent{}, err
314 return TypeIdent{
321 return TypeIdent{
[all …]
H A Dspec.go80 typeIdent := TypeIdent{Package: pkg, Name: groupKind.Kind}
103 typeIdent := TypeIdent{Package: pkg, Name: groupKind.Kind}
H A Dschema.go60 NeedSchemaFor(typ TypeIdent) argument
99 c.schemaRequester.NeedSchemaFor(TypeIdent{
/dports/lang/cocor/cocor-1.7_3/samples/
H A Dpascal.atg64 Type = SimpleType | [ "packed" ] StructType | "^" TypeIdent .
66 SimpleType = TypeIdent | EnumerationType | SubrangeType .
68 TypeIdent = identifier .
94 VariantSelector = [ NewIdent ":" ] TypeIdent .
112 ReturnType = [ /* empty if forward referenced */ ":" TypeIdent ] .
122 ParamType = TypeIdent
124 | "packed" "array" "[" IndexSpec "]" "of" TypeIdent .
128 IndexSpec = NewIdent ".." NewIdent ":" TypeIdent .
/dports/lang/mosml/mosml-ver-2.10.1/src/doc/helpsigs/
H A DParser.grm58 %type <Asynt.IdInfo> OpIdent OpEqIdent TypeIdent LongTypeIdent
117 TypeIdent :
122 TypeIdent { $1 }
168 TyVarSeq TypeIdent EQUALS Ty AndTypBind_opt
178 TypeIdent EQUALS ConBind AndDatBind_opt
183 TyVarSeq1 TypeIdent EQUALS ConBind AndDatBind_opt
188 TyVarSeq TypeIdent EQUALS ConBind AndDatBind_opt
311 | DATATYPE TypeIdent EQUALS DATATYPE LongTypeIdent
330 TyVarSeq TypeIdent AndTypDesc_opt
/dports/lang/mosml/mosml-ver-2.10.1/src/notes/
H A Dmanycons.sml361 TypeIdent as TypeIdent1=TypeIdent1 ()
362 in ( [TypeIdent] ) end
851 val TypeIdent as TypeIdent1=TypeIdent1 () value
858 TyVarSeq, mk_TyCon TypeIdent,
868 val TypeIdent as TypeIdent1=TypeIdent1 () value
875 [], mk_TyCon TypeIdent,
894 TyVarSeq1, mk_TyCon TypeIdent,
960 (TyVarSeq, mk_TyCon TypeIdent, Ty,
2138 TyVarSeq, mk_TyCon TypeIdent,
2155 [], mk_TyCon TypeIdent,
[all …]
/dports/lang/polyml/polyml-5.8.2/mlsource/MLCompiler/
H A DPARSE_TYPE.ML131 badsyms (TypeIdent, lex);
197 | TypeIdent =>
201 getsym (TypeIdent, lex);
H A DSymbols.ML75 | TypeIdent
144 | repr TypeIdent = "<type identifier>"
H A DSymbolsSig.sml66 | TypeIdent
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeMaker.java457 public JCPrimitiveTypeTree TypeIdent(TypeTag typetag) { in TypeIdent() method in TreeMaker
685 tp = TypeIdent(t.getTag()); in Type()
708 tp = TypeIdent(ERROR); in Type()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeMaker.java457 public JCPrimitiveTypeTree TypeIdent(TypeTag typetag) { in TypeIdent() method in TreeMaker
685 tp = TypeIdent(t.getTag()); in Type()
708 tp = TypeIdent(ERROR); in Type()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/jdk.jshell/share/classes/jdk/jshell/
H A DReplParser.java209 t = to(F.at(pos).TypeIdent(TypeTag.VOID)); in replUnit()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.jshell/share/classes/jdk/jshell/
H A DReplParser.java208 t = to(F.at(pos).TypeIdent(TypeTag.VOID)); in replUnit()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/jdk.jshell/share/classes/jdk/jshell/
H A DReplParser.java210 t = to(F.at(pos).TypeIdent(TypeTag.VOID)); in replUnit()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.jshell/share/classes/jdk/jshell/
H A DReplParser.java209 t = to(F.at(pos).TypeIdent(TypeTag.VOID)); in replUnit()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/jdk.jshell/share/classes/jdk/jshell/
H A DReplParser.java208 t = to(F.at(pos).TypeIdent(TypeTag.VOID)); in replUnit()
/dports/sysutils/istio/istio-1.6.7/vendor/sigs.k8s.io/service-apis/vendor/sigs.k8s.io/controller-tools/pkg/schemapatcher/
H A Dgen.go132 typeIdent := crdgen.TypeIdent{Package: pkg, Name: groupKind.Kind}
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/jdk.jshell/share/classes/jdk/jshell/
H A DReplParser.java210 t = to(F.at(pos).TypeIdent(TypeTag.VOID)); in replUnit()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/jdk.jshell/share/classes/jdk/jshell/
H A DReplParser.java210 t = to(F.at(pos).TypeIdent(TypeTag.VOID)); in replUnit()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/jdk.jshell/share/classes/jdk/jshell/
H A DReplParser.java216 t = to(F.at(pos).TypeIdent(TypeTag.VOID)); in replUnit()
/dports/lang/mosml/mosml-ver-2.10.1/src/compiler/
H A DParser.grm157 %type <Asynt.IdInfo> OpIdent TypeIdent LongTypeIdent
260 TypeIdent :
265 TypeIdent { $1 }
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/jdk.compiler/share/classes/com/sun/tools/javac/tree/
H A DTreeMaker.java485 public JCPrimitiveTypeTree TypeIdent(TypeTag typetag) { in TypeIdent() method in TreeMaker
756 tp = TypeIdent(t.getTag()); in Type()
802 tp = TypeIdent(ERROR); in Type()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.compiler/share/classes/com/sun/tools/javac/tree/
H A DTreeMaker.java499 public JCPrimitiveTypeTree TypeIdent(TypeTag typetag) { in TypeIdent() method in TreeMaker
770 tp = TypeIdent(t.getTag()); in Type()
816 tp = TypeIdent(ERROR); in Type()

123