Searched refs:lexAfterType (Results 1 – 3 of 3) sorted by relevance
133 "float" { context->lexAfterType = true; return(FLOAT_TYPE); }134 "int" { context->lexAfterType = true; return(INT_TYPE); }136 "void" { context->lexAfterType = true; return(VOID_TYPE); }137 "bool" { context->lexAfterType = true; return(BOOL_TYPE); }144 "mat2" { context->lexAfterType = true; return(MATRIX2); }145 "mat3" { context->lexAfterType = true; return(MATRIX3); }146 "mat4" { context->lexAfterType = true; return(MATRIX4); }159 "vec2" { context->lexAfterType = true; return (VEC2); }160 "vec3" { context->lexAfterType = true; return (VEC3); }161 "vec4" { context->lexAfterType = true; return (VEC4); }[all …]
1754 { context->lexAfterType = true; return(FLOAT_TYPE); }1758 { context->lexAfterType = true; return(INT_TYPE); }1766 { context->lexAfterType = true; return(VOID_TYPE); }1770 { context->lexAfterType = true; return(BOOL_TYPE); }1790 { context->lexAfterType = true; return(MATRIX2); }1794 { context->lexAfterType = true; return(MATRIX3); }1798 { context->lexAfterType = true; return(MATRIX4); }1838 { context->lexAfterType = true; return (VEC2); }1842 { context->lexAfterType = true; return (VEC3); }1846 { context->lexAfterType = true; return (VEC4); }[all …]
42 lexAfterType(false), in TParseContext()67 …bool lexAfterType; // true if we've recognized a type, so can only be looking for an ide… variable