/third_party/glslang/Test/ |
D | 110scope.vert | 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 [all …]
|
D | 430scope.vert | 8 float a = float(a) + 1.0; // okay 14 int f(int a, int b, int c); // okay to redeclare 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
|
D | constErrors.frag | 12 const int a1 = 2; // okay 13 const int a2 = constInt; // okay 16 vec4 c[constInt]; // okay 21 vec4 g[int(sin(0.3)) + 1]; // okay 35 const float f = 3; // okay, type conversion
|
D | 100scope.vert | 14 int f(int a, int b, int c); // okay to redeclare 23 float tan; // okay, built-in is in an outer scope 29 bool radians(bool x) // okay, can overload built-in functions 41 float sin; // okay
|
D | array.frag | 19 float gu[2]; // okay, new scope 24 gu[2] = 4.0; // okay 40 u[2] = 3.0; // okay 43 foo(u); // okay
|
D | array100.frag | 19 float gu[2]; // okay, new scope 36 foo(u); // okay 59 void bar10(SB s) // okay
|
D | switch.frag | 142 float a; // okay, hiding outer 'a' 151 case 5: // okay that branch bypassed an initializer 154 case 6: // okay that branch bypassed an initializer
|
D | specExamples.vert | 36 layout(max_vertices = 60) out; // redeclaration okay 37 layout(triangle_strip) out; // redeclaration okay 80 uniform sampler2D s17; // okay, s still bound at 3 100 //layout (binding=1, offset=0) a; // okay 101 //layout (binding=2, offset=0) b; // okay
|
D | cppSimple.vert | 137 #define QUOTE "abcd" // okay 139 #define SINGLE 'a' // okay 167 // okay 262 #line 1236 F1 + F2 moreEmpty empty_extra // okay, lots of nothin 316 // recursion (okay)
|
D | 440.vert | 17 layout(location = 4, component = 2) in vec2 h; // component overlap okay for vertex in 69 layout(location = 53, component = 2) out vec2 ffv2; // okay, fits 77 layout(location=59, component=2) out flat double dfo3; // okay, fits 160 layout(xfb_offset=52) mat3x3 m3; // non-multiple of 8 okay 163 layout(xfb_offset=108) S s; // non-multiple of 8 okay
|
/third_party/typescript/tests/baselines/reference/ |
D | noImplicitAnyIndexingSuppressed.errors.txt | 10 // Should be okay; should be a string. 13 // Should be okay; should be a string. 16 // Should be okay, as we suppress implicit 'any' property access checks 19 // Should be okay; should be a MyEmusEnum 23 // Should be okay, as we suppress implicit 'any' property access checks 28 // Should be okay, as we suppress implicit 'any' property access checks 37 // Should be okay, as we suppress implicit 'any' property access checks
|
D | noImplicitAnyIndexingSuppressed.types | 9 // Should be okay; should be a string. 16 // Should be okay; should be a string. 25 // Should be okay, as we suppress implicit 'any' property access checks 32 // Should be okay; should be a MyEmusEnum 40 // Should be okay, as we suppress implicit 'any' property access checks 47 // Should be okay, as we suppress implicit 'any' property access checks 62 // Should be okay, as we suppress implicit 'any' property access checks
|
D | arrowFunctionsMissingTokens.js | 56 module okay { 110 var okay; variable 111 (function (okay) { argument 117 })(okay || (okay = {}));
|
D | noImplicitAnyIndexingSuppressed.symbols | 9 // Should be okay; should be a string. 14 // Should be okay; should be a string. 22 // Should be okay, as we suppress implicit 'any' property access checks 27 // Should be okay; should be a MyEmusEnum 34 // Should be okay, as we suppress implicit 'any' property access checks 38 // Should be okay, as we suppress implicit 'any' property access checks 48 // Should be okay, as we suppress implicit 'any' property access checks
|
D | noImplicitAnyIndexing.errors.txt | 12 // Should be okay; should be a string. 15 // Should be okay; should be a string. 23 // Should be okay; should be a MyEmusEnum
|
D | noImplicitAnyIndexing.types | 9 // Should be okay; should be a string. 16 // Should be okay; should be a string. 32 // Should be okay; should be a MyEmusEnum
|
D | excessPropertyCheckingIntersectionWithConditional.types | 8 ><K,>(x: K): Foo<K> & { x: K; } => { return { a: 1, x: x }; // okay in TS 4.7.4, error in TS 4.8.2… 12 return { a: 1, x: x }; // okay in TS 4.7.4, error in TS 4.8.2
|
D | classAbstractInstantiations2.types | 62 new x; // okay -- undefined behavior at runtime 70 abstract class D extends B { } // okay 74 class E extends B { // okay -- implements abstract method
|
/third_party/python/Tools/c-analyzer/c_common/ |
D | fsutil.py | 314 okay = _check_file(filename, S_IRANY) 316 okay = NotImplemented 317 if okay is not NotImplemented: 318 return okay 327 okay = _check_file(filename, S_IWANY) 329 okay = NotImplemented 330 if okay is not NotImplemented: 331 return okay 340 okay = _check_file(filename, S_IXANY) 342 okay = NotImplemented [all …]
|
/third_party/ltp/testcases/kernel/syscalls/ptrace/ |
D | ptrace07.c | 103 bool okay; in do_test() local 191 okay = true; in do_test() 194 okay &= (WIFEXITED(status) && WEXITSTATUS(status) == 0); in do_test() 196 if (okay) in do_test()
|
/third_party/libwebsockets/minimal-examples/mqtt-client/minimal-mqtt-client-multi/ |
D | minimal-mqtt-client-multi.c | 44 static int interrupted, do_ssl, pipeline, stagger_us = 5000, okay, variable 238 okay++; in callback_mqtt() 242 __func__, (int)(item - &items[0]), okay, count); in callback_mqtt() 442 lwsl_user("%s: Completed: %d/%d ok, %s\n", __func__, okay, count, in main() 443 okay != count ? "failed" : "OK"); in main() 446 return okay != count; in main()
|
/third_party/python/Tools/scripts/ |
D | stable_abi.py | 291 okay = True 303 okay &= _report_unexpected_items( 317 okay &= binutils_check_library( 324 okay &= binutils_check_library( 333 okay &= _report_unexpected_items( 343 okay &= _report_unexpected_items( 348 return okay
|
/third_party/pcre2/pcre2/testdata/ |
D | testinput9 | 42 ) )* # further okay, if led by a period 66 ) # ...further okay 117 ) # ...further okay 145 ) # ...further okay 147 )* # further okay, if led by comma 175 ) )* # further okay, if led by a period 199 ) # ...further okay
|
D | testoutput9 | 50 ) )* # further okay, if led by a period 74 ) # ...further okay 125 ) # ...further okay 153 ) # ...further okay 155 )* # further okay, if led by comma 183 ) )* # further okay, if led by a period 207 ) # ...further okay
|
D | testinput11 | 39 ) )* # further okay, if led by a period 63 ) # ...further okay 114 ) # ...further okay 142 ) # ...further okay 144 )* # further okay, if led by comma 172 ) )* # further okay, if led by a period 196 ) # ...further okay
|