Lines Matching refs:okay
8 float a = float(a) + 1.0; // okay
14 int f(int a, int b, int c); // okay to redeclare
17 float b(int a); // okay, b and b() are different
20 bool c; // okay, and c() are different
22 float f; // okay f and f() are different
23 float tan; // okay, hides built-in function
24 float sin(float x); // okay, can redefine built-in functions
25 float cos(float x) // okay, can redefine built-in functions
29 bool radians(bool x) // okay, can overload built-in functions
38 int g(); // okay
41 float sin; // okay
43 sin(0.7); // okay
78 struct S { // okay, hides S