Home
last modified time | relevance | path

Searched refs:okay (Results 1 – 25 of 219) sorted by relevance

123456789

/third_party/glslang/Test/
D110scope.vert8 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 …]
D430scope.vert8 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
DconstErrors.frag12 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
D100scope.vert14 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
Darray.frag19 float gu[2]; // okay, new scope
24 gu[2] = 4.0; // okay
40 u[2] = 3.0; // okay
43 foo(u); // okay
Darray100.frag19 float gu[2]; // okay, new scope
36 foo(u); // okay
59 void bar10(SB s) // okay
Dswitch.frag142 float a; // okay, hiding outer 'a'
151 case 5: // okay that branch bypassed an initializer
154 case 6: // okay that branch bypassed an initializer
DcppSimple.vert137 #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)
DspecExamples.vert36 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/
DtestThreads.c36 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/
DnoImplicitAnyIndexingSuppressed.errors.txt10 // 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
DnoImplicitAnyIndexingSuppressed.types9 // 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
DarrowFunctionsMissingTokens.js56 module okay {
110 var okay; variable
111 (function (okay) { argument
117 })(okay || (okay = {}));
DnoImplicitAnyIndexingSuppressed.symbols9 // 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
DnoImplicitAnyIndexing.errors.txt12 // Should be okay; should be a string.
15 // Should be okay; should be a string.
23 // Should be okay; should be a MyEmusEnum
DnoImplicitAnyIndexing.types9 // Should be okay; should be a string.
16 // Should be okay; should be a string.
32 // Should be okay; should be a MyEmusEnum
DclassAbstractInstantiations2.types62 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/
Dfsutil.py314 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/
DSDL_blit.c37 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/
Dptrace07.c89 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/
Dminimal-mqtt-client-multi.c44 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/
Dstable_abi.py291 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/
Dtest-crypto-key-objects.js353 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/
Dtestinput942 ) )* # 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/
DSDL_sysjoystick.c489 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()

123456789