Home | History | Annotate | Download | only in compiler

Lines Matching refs:ES2_identifier_ES3_keyword

78 static int ES2_identifier_ES3_keyword(TParseContext *context, int token);
135 "uint" { return ES2_identifier_ES3_keyword(context, UINT_TYPE); }
148 "mat2x2" { return ES2_identifier_ES3_keyword(context, MATRIX2); }
149 "mat3x3" { return ES2_identifier_ES3_keyword(context, MATRIX3); }
150 "mat4x4" { return ES2_identifier_ES3_keyword(context, MATRIX4); }
152 "mat2x3" { return ES2_identifier_ES3_keyword(context, MATRIX2x3); }
153 "mat3x2" { return ES2_identifier_ES3_keyword(context, MATRIX3x2); }
154 "mat2x4" { return ES2_identifier_ES3_keyword(context, MATRIX2x4); }
155 "mat4x2" { return ES2_identifier_ES3_keyword(context, MATRIX4x2); }
156 "mat3x4" { return ES2_identifier_ES3_keyword(context, MATRIX3x4); }
157 "mat4x3" { return ES2_identifier_ES3_keyword(context, MATRIX4x3); }
165 "uvec2" { return ES2_identifier_ES3_keyword(context, UVEC2); }
166 "uvec3" { return ES2_identifier_ES3_keyword(context, UVEC3); }
167 "uvec4" { return ES2_identifier_ES3_keyword(context, UVEC4); }
178 "sampler2DArray" { return ES2_identifier_ES3_keyword(context, SAMPLER2DARRAY); }
179 "isampler2D" { return ES2_identifier_ES3_keyword(context, ISAMPLER2D); }
180 "isampler3D" { return ES2_identifier_ES3_keyword(context, ISAMPLER3D); }
181 "isamplerCube" { return ES2_identifier_ES3_keyword(context, ISAMPLERCUBE); }
182 "isampler2DArray" { return ES2_identifier_ES3_keyword(context, ISAMPLER2DARRAY); }
183 "usampler2D" { return ES2_identifier_ES3_keyword(context, USAMPLER2D); }
184 "usampler3D" { return ES2_identifier_ES3_keyword(context, USAMPLER3D); }
185 "usamplerCube" { return ES2_identifier_ES3_keyword(context, USAMPLERCUBE); }
186 "usampler2DArray" { return ES2_identifier_ES3_keyword(context, USAMPLER2DARRAY); }
188 "samplerCubeShadow" { return ES2_identifier_ES3_keyword(context, SAMPLERCUBESHADOW); }
189 "sampler2DArrayShadow" { return ES2_identifier_ES3_keyword(context, SAMPLER2DARRAYSHADOW); }
193 "layout" { return ES2_identifier_ES3_keyword(context, LAYOUT); }
469 int ES2_identifier_ES3_keyword(TParseContext *context, int token)