/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 | 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 | 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
|
/third_party/libxml2/ |
D | testThreads.c | 36 int okay; member 65 int okay = 1; in thread_specific_data() local 83 okay = 0; in thread_specific_data() 88 okay = 0; in thread_specific_data() 92 okay = 0; in thread_specific_data() 97 okay = 0; in thread_specific_data() 101 okay = 0; in thread_specific_data() 104 params->okay = okay; in thread_specific_data() 140 if (threadParams[i].okay == 0) in main() 201 if (threadParams[i].okay == 0) in main() [all …]
|
/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 | 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/flutter/skia/third_party/externals/sdl/src/video/ |
D | SDL_blit.c | 37 int okay; in SDL_SoftBlit() local 42 okay = 1; in SDL_SoftBlit() 48 okay = 0; in SDL_SoftBlit() 57 okay = 0; in SDL_SoftBlit() 64 if (okay && !SDL_RectEmpty(srcrect)) { in SDL_SoftBlit() 99 return (okay ? 0 : -1); in SDL_SoftBlit()
|
/third_party/ltp/testcases/kernel/syscalls/ptrace/ |
D | ptrace07.c | 89 bool okay; in do_test() local 169 okay = true; in do_test() 172 okay &= (WIFEXITED(status) && WEXITSTATUS(status) == 0); in do_test() 174 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/node/test/parallel/ |
D | test-crypto-key-objects.js | 353 const okay = createVerify(algo) constant 357 assert.ok(okay); 409 const okay = createVerify('sha256') constant 413 assert.ok(okay); 455 const okay = createVerify('sha512') constant 459 assert.ok(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
|
/third_party/flutter/skia/third_party/externals/sdl/src/joystick/darwin/ |
D | SDL_sysjoystick.c | 489 CreateHIDDeviceMatchDictionary(const UInt32 page, const UInt32 usage, int *okay) in CreateHIDDeviceMatchDictionary() argument 509 *okay = 0; in CreateHIDDeviceMatchDictionary() 519 int okay = 1; in CreateHIDManager() local 521 … (void *) CreateHIDDeviceMatchDictionary(kHIDPage_GenericDesktop, kHIDUsage_GD_Joystick, &okay), in CreateHIDManager() 522 … (void *) CreateHIDDeviceMatchDictionary(kHIDPage_GenericDesktop, kHIDUsage_GD_GamePad, &okay), in CreateHIDManager() 523 …) CreateHIDDeviceMatchDictionary(kHIDPage_GenericDesktop, kHIDUsage_GD_MultiAxisController, &okay), in CreateHIDManager() 526 …CFArrayRef array = okay ? CFArrayCreate(kCFAllocatorDefault, vals, numElements, &kCFTypeArrayCallB… in CreateHIDManager()
|