| /third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/classes/property_member_declarations/member_variable_declarations/ |
| H A D | member_variable_declarations_2.ts | 27 public place: string;
29 constructor(name: string, place: string, work: boolean) {
31 this.place = place;
34 initializer(name: string, place: string, work: boolean) {
36 this.place = place;
42 public place: string;
44 constructor(name: string, place: string, work: boolean) {
46 this.place [all...] |
| /third_party/mesa3d/src/getopt/ |
| H A D | getopt_long.c | 84 static char *place = EMSG; /* option letter processing */ variable 166 current_argv = place; in parse_long_options() 311 if (optreset || !*place) { /* update scanning pointer */ in getopt_internal() 314 place = EMSG; in getopt_internal() 331 if (*(place = nargv[optind]) != '-' || in getopt_internal() 332 (place[1] == '\0' && strchr(options, '-') == NULL)) { in getopt_internal() 333 place = EMSG; /* found non-option */ in getopt_internal() 369 if (place[1] != '\0' && *++place == '-' && place[ in getopt_internal() [all...] |
| /third_party/libwebsockets/win32port/win32helpers/ |
| H A D | getopt.c | 93 static char *place = EMSG; /* option letter processing */
local 100 if (optreset || !*place) { /* update scanning pointer */
102 if (optind >= nargc || *(place = nargv[optind]) != '-') {
103 place = EMSG;
106 if (place[1] && *++place == '-' /* found "--" */
107 && place[1] == '\0') {
109 place = EMSG;
113 if ((optopt = (int)*place++) == (int)':' ||
121 if (!*place)
[all...] |
| H A D | getopt_long.c | 86 static char *place = EMSG; /* option letter processing */
local 92 if (optreset || !*place) { /* update scanning pointer */
94 if (optind >= nargc || *(place = nargv[optind]) != '-') {
95 place = EMSG;
98 if (place[1] && *++place == '-') { /* found "--" */
100 place = EMSG;
104 if ((optopt = (int)*place++) == (int)':' ||
112 if (!*place)
121 if (!*place)
[all...] |
| /third_party/node/deps/cares/src/tools/ |
| H A D | ares_getopt.c | 57 state->place = EMSG; in ares_getopt_init() 71 if (!*state->place) { in ares_getopt() 75 state->place = state->argv[state->optind]; in ares_getopt() 76 if (*(state->place) != '-') { in ares_getopt() 79 state->place++; in ares_getopt() 82 if (*(state->place) == '-') { in ares_getopt() 88 if (!*(state->place)) { in ares_getopt() 95 state->optopt = *(state->place); in ares_getopt() 96 state->place++; in ares_getopt() 100 if (!(*state->place)) { in ares_getopt() [all...] |
| /third_party/typescript/tests/arkTSTest/testcase/arkts-strict-typing-required/ |
| H A D | arkts-strict-typing-required-5-error.json | 4 "messageText": "Switching off type checks with in-place comments is not allowed (arkts-strict-typing-required)", 11 "messageText": "Switching off type checks with in-place comments is not allowed (arkts-strict-typing-required)", 18 "messageText": "Switching off type checks with in-place comments is not allowed (arkts-strict-typing-required)", 27 "messageText": "Switching off type checks with in-place comments is not allowed (arkts-strict-typing-required)", 34 "messageText": "Switching off type checks with in-place comments is not allowed (arkts-strict-typing-required)", 41 "messageText": "Switching off type checks with in-place comments is not allowed (arkts-strict-typing-required)",
|
| H A D | arkts-strict-typing-required-4-error.json | 4 "messageText": "Switching off type checks with in-place comments is not allowed (arkts-strict-typing-required)", 11 "messageText": "Switching off type checks with in-place comments is not allowed (arkts-strict-typing-required)", 20 "messageText": "Switching off type checks with in-place comments is not allowed (arkts-strict-typing-required)", 27 "messageText": "Switching off type checks with in-place comments is not allowed (arkts-strict-typing-required)",
|
| /third_party/python/Doc/c-api/ |
| H A D | number.rst | 79 If *o3* is to be ignored, pass :c:data:`Py_None` in its place (passing ``NULL`` for 142 is done *in-place* when *o1* supports it. This is the equivalent of the Python 149 operation is done *in-place* when *o1* supports it. This is the equivalent of 156 operation is done *in-place* when *o1* supports it. This is the equivalent of 163 failure. The operation is done *in-place* when *o1* supports it. This is 172 The operation is done *in-place* when *o1* supports it. This is the equivalent 182 passed two integers. The operation is done *in-place* when *o1* supports it. 189 operation is done *in-place* when *o1* supports it. This is the equivalent of 198 is done *in-place* when *o1* supports it. This is the equivalent of the Python 199 statement ``o1 **= o2`` when o3 is :c:data:`Py_None`, or an in-place varian [all...] |
| /third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/ |
| H A D | place-dep.js | 2 // dependency, place the dep somewhere in the node's tree, and all of its 5 // Handles all of the tree updating needed to place the dep, including 14 const CanPlaceDep = require('./can-place-dep.js') 63 // walk up the tree until we hit either a top/root node, or a place 68 // if the current location has a peerDep on it, then we can't place here 78 // So we check if we can place v under c@2, that's fine. 80 // but we CAN place it under a, so the correct thing to do is keep 103 // a given node we're trying to place, but there actually is no current 109 // We place (a), and get a peer of (c) along with it. 110 // then we try to place ( [all...] |
| H A D | can-place-dep.js | 50 // dep is a dep that we're trying to place. it should already live in 52 // target is the actual place where we're trying to place this dep 86 // the result of whether we can place it or not 143 // cannot place peers inside their dependents, except for tops 199 // First, is this the deepest place that this thing can go, and NOT the 200 // deepest place where the conflicting dep can go? If so, replace it, 209 // if we are not checking a peerDep, then we MUST place it here, in the 248 // Trying to place a peer group of (a@1, b@1) would fail to note that 384 // always place peer [all...] |
| /third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/message2/ |
| H A D | MessageFormat2Test.java | 143 + "match {$place :selectordinal}\n" in testPluralOrdinal() 147 + " when one {You got in the {$place}st place}\n" in testPluralOrdinal() 148 + " when two {You got in the {$place}nd place}\n" in testPluralOrdinal() 149 + " when few {You got in the {$place}rd place}\n" in testPluralOrdinal() 150 + " when * {You got in the {$place}th place}\n" in testPluralOrdinal() 158 mf2.formatToString(Args.of("place", in testPluralOrdinal() [all...] |
| /third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/functions/destructuring_parameter_declarations/ |
| H A D | destructuring_parameter_declarations_6.ts | 29 place?: [number, number];
32 function infor({ title, place, brave }: information) {
36 if (place) {
37 Assert.equal(Array.isArray(place), true);
45 infor({ place: [0, 1] })
|
| /third_party/skia/experimental/sktext/editor/ |
| H A D | Editor.cpp | 44 // Place the cursor at the end of the output text in Editor() 51 fCursor->place(endOfText.fBoundaries); in Editor() 63 fCursor->place(position.fBoundaries); in update() 101 // Place the cursor at the new position in moveCursor() 103 fCursor->place(position.fBoundaries); in moveCursor() 163 fCursor->place(position.fBoundaries); in deleteElement() 165 // The cursor stays the the same place in deleteElement() 172 fCursor->place(position.fBoundaries); in deleteElement() 196 fCursor->place(position.fBoundaries); in insertCodepoint() 256 fCursor->place(positio in onMouse() [all...] |
| /third_party/elfutils/tests/ |
| H A D | run-strip-test-many.sh | 66 # Now strip "in-place" and make sure it is smaller. 67 echo "Testing strip in-place" 72 { echo "*** failure strip in-place"; status=1; } 77 { echo "*** failure in-place strip file not smaller $original"; exit 1; } 79 echo "elflint in-place" 81 { echo "*** failure elflint in-place"; status=1; }
|
| /third_party/mbedtls/include/mbedtls/ |
| H A D | oid.h | 521 * \param ext_type place to store the extension type 532 * \param short_name place to store the string pointer 542 * \param pk_alg place to store public key algorithm 552 * \param oid place to store ASN.1 OID string pointer 565 * \param grp_id place to store group id 575 * \param oid place to store ASN.1 OID string pointer 588 * \param grp_id place to store group id 599 * \param oid place to store ASN.1 OID string pointer 612 * \param md_alg place to store message digest algorithm 613 * \param pk_alg place t [all...] |
| /third_party/typescript/tests/issues_cookbook_tests/expected/ |
| H A D | 5.77-expected.json | 6 "origin": "ERROR: ArkTS:ERROR File: /entry/src/main/ets/pages/cookbook/5.77.ets:3:1\n Switching off type checks with in-place comments is not allowed (arkts-strict-typing-required)\n\n",
10 "description": "Switching off type checks with in-place comments is not allowed (arkts-strict-typing-required)"
13 "origin": "ERROR: ArkTS:ERROR File: /entry/src/main/ets/pages/cookbook/5.77.ets:10:1\n Switching off type checks with in-place comments is not allowed (arkts-strict-typing-required)\n\n",
17 "description": "Switching off type checks with in-place comments is not allowed (arkts-strict-typing-required)"
|
| /third_party/typescript/tests/baselines/reference/ |
| H A D | thisTypeInAccessorsNegative.types | 10 wrong: "place" | "time" | "method" | "technique";
11 >wrong : "place" | "time" | "method" | "technique"
33 >this.wrong : "place" | "time" | "method" | "technique"
35 >wrong : "place" | "time" | "method" | "technique"
|
| /third_party/openGLES/extensions/SGIX/ |
| H A D | GLX_SGIX_swap_group.txt | 26 group will then take place concurrently. 29 a buffer swap can take place. 61 Before a buffer swap can take place, a set of conditions must be 80 can take place: 86 Buffer swaps for all windows in a swap group will take place concurrently
|
| H A D | GLX_SGIX_swap_barrier.txt | 32 take place concurrently. 35 a buffer swap can take place. 70 Before a buffer swap can take place, a set of conditions must be 89 can take place: 98 Buffer swaps for all windows in a swap group will take place concurrently 101 Buffer swaps for all groups using a barrier will take place concurrently
|
| /third_party/skia/third_party/externals/opengl-registry/extensions/SGIX/ |
| H A D | GLX_SGIX_swap_group.txt | 26 group will then take place concurrently. 29 a buffer swap can take place. 61 Before a buffer swap can take place, a set of conditions must be 80 can take place: 86 Buffer swaps for all windows in a swap group will take place concurrently
|
| H A D | GLX_SGIX_swap_barrier.txt | 32 take place concurrently. 35 a buffer swap can take place. 70 Before a buffer swap can take place, a set of conditions must be 89 can take place: 98 Buffer swaps for all windows in a swap group will take place concurrently 101 Buffer swaps for all groups using a barrier will take place concurrently
|
| /third_party/mesa3d/src/mesa/main/ |
| H A D | macros.h | 355 /** In-place addition */ 373 /** In-place scalar multiplication and addition */ 391 /** In-place scalar multiplication */ 457 /** In-place scalar multiplication */ 465 /** In-place element-wise multiplication */ 473 /** In-place addition */ 497 /** In-place scalar multiplication and addition */ 505 /** In-place scalar multiplication */ 513 /** In-place scalar addition */ 575 /** In-place scala [all...] |
| /third_party/python/Include/ |
| H A D | abstract.h | 547 /* --- In-place variants of (some of) the above number protocol functions -- */ 549 /* Returns the result of adding o2 to o1, possibly in-place, or NULL 555 /* Returns the result of subtracting o2 from o1, possibly in-place or 561 /* Returns the result of multiplying o1 by o2, possibly in-place, or NULL on 573 in-place, or NULL on failure. 580 in-place, or null on failure. 586 /* Returns the remainder of dividing o1 by o2, possibly in-place, or NULL on 592 /* Returns the result of raising o1 to the power of o2, possibly in-place, 600 /* Returns the result of left shifting o1 by o2, possibly in-place, or NULL 606 /* Returns the result of right shifting o1 by o2, possibly in-place o [all...] |
| /third_party/openGLES/extensions/NV/ |
| H A D | GLX_NV_swap_group.txt | 37 members of the swap group will then take place concurrently. 45 a buffer swap can take place. 131 Before a buffer swap can take place, a set of conditions must be 150 window can take place: 159 Buffer swaps for all windows in a swap group will take place 163 Buffer swaps for all groups using a barrier will take place
|
| H A D | WGL_NV_swap_group.txt | 38 group will then take place concurrently. 45 a buffer swap can take place. 124 Before a buffer swap can take place, a set of conditions must be 142 can take place: 151 Buffer swaps for all windows in a swap group will take place concurrently 154 Buffer swaps for all groups using a barrier will take place concurrently
|