/third_party/mesa3d/src/getopt/ |
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[1] == '\0') { in getopt_internal() 371 place = EMSG; in getopt_internal() 392 if (long_options != NULL && place != nargv[optind] && in getopt_internal() [all …]
|
/third_party/node/deps/cares/src/tools/ |
D | ares_getopt.c | 68 static char *place = EMSG; /* option letter processing */ in ares_getopt() local 71 if (optreset || !*place) { /* update scanning pointer */ in ares_getopt() 73 if (optind >= nargc || *(place = nargv[optind]) != '-') { in ares_getopt() 74 place = EMSG; in ares_getopt() 77 if (place[1] && *++place == '-') { /* found "--" */ in ares_getopt() 79 place = EMSG; in ares_getopt() 83 if ((optopt = (int)*place++) == (int)':' || in ares_getopt() 91 if (!*place) in ares_getopt() 100 if (!*place) in ares_getopt() 104 if (*place) /* no white space */ in ares_getopt() [all …]
|
/third_party/libwebsockets/win32port/win32helpers/ |
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) 130 if (!*place) [all …]
|
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) 124 if (*place) /* no white space */ [all …]
|
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/classes/property_member_declarations/member_variable_declarations/ |
D | member_variable_declarations_2.ts | 27 public place: string; property in Staff1 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; property in Staff2 44 constructor(name: string, place: string, work: boolean) { 46 this.place = place; 54 Assert.equal(em1.place, "hainan"); 57 Assert.equal(em2.place, "qingdao");
|
/third_party/rust/crates/serde/test_suite/tests/expand/ |
D | generic_tuple_struct.expanded.rs | 99 struct __Visitor<'de, 'place, T: 'place, U: 'place> in deserialize_in_place() 104 place: &'place mut GenericTupleStruct<T, U>, in deserialize_in_place() field 107 … impl<'de, 'place, T: 'place, U: 'place> _serde::de::Visitor<'de> for __Visitor<'de, 'place, T, U> in deserialize_in_place() 132 _serde::__private::de::InPlaceSeed(&mut self.place.0), in deserialize_in_place() 146 _serde::__private::de::InPlaceSeed(&mut self.place.1), in deserialize_in_place() 166 place: __place, in deserialize_in_place()
|
D | named_tuple.expanded.rs | 169 struct __Visitor<'de, 'place, A: 'place, B: 'place, C: 'place> in deserialize_in_place() 175 place: &'place mut DeNamedTuple<A, B, C>, in deserialize_in_place() field 178 impl<'de, 'place, A: 'place, B: 'place, C: 'place> _serde::de::Visitor<'de> in deserialize_in_place() 179 for __Visitor<'de, 'place, A, B, C> in deserialize_in_place() 205 _serde::__private::de::InPlaceSeed(&mut self.place.0), in deserialize_in_place() 219 _serde::__private::de::InPlaceSeed(&mut self.place.1), in deserialize_in_place() 233 _serde::__private::de::InPlaceSeed(&mut self.place.2), in deserialize_in_place() 253 place: __place, in deserialize_in_place()
|
D | generic_struct.expanded.rs | 295 struct __Visitor<'de, 'place, T: 'place> in deserialize_in_place() 299 place: &'place mut GenericStruct<T>, in deserialize_in_place() field 302 impl<'de, 'place, T: 'place> _serde::de::Visitor<'de> for __Visitor<'de, 'place, T> in deserialize_in_place() 323 _serde::__private::de::InPlaceSeed(&mut self.place.x), in deserialize_in_place() 363 _serde::__private::de::InPlaceSeed(&mut self.place.x), in deserialize_in_place() 386 self.place.x = match _serde::__private::de::missing_field("x") { in deserialize_in_place() 402 place: __place, in deserialize_in_place() 528 struct __Visitor<'de, 'place, T: 'place> in deserialize_in_place() 532 place: &'place mut GenericNewTypeStruct<T>, in deserialize_in_place() field 535 impl<'de, 'place, T: 'place> _serde::de::Visitor<'de> for __Visitor<'de, 'place, T> in deserialize_in_place() [all …]
|
D | named_map.expanded.rs | 430 struct __Visitor<'de, 'place, A: 'place, B: 'place, C: 'place> in deserialize_in_place() 436 place: &'place mut DeNamedMap<A, B, C>, in deserialize_in_place() field 439 impl<'de, 'place, A: 'place, B: 'place, C: 'place> _serde::de::Visitor<'de> in deserialize_in_place() 440 for __Visitor<'de, 'place, A, B, C> in deserialize_in_place() 463 _serde::__private::de::InPlaceSeed(&mut self.place.a), in deserialize_in_place() 477 _serde::__private::de::InPlaceSeed(&mut self.place.b), in deserialize_in_place() 491 _serde::__private::de::InPlaceSeed(&mut self.place.c), in deserialize_in_place() 533 _serde::__private::de::InPlaceSeed(&mut self.place.a), in deserialize_in_place() 550 _serde::__private::de::InPlaceSeed(&mut self.place.b), in deserialize_in_place() 567 _serde::__private::de::InPlaceSeed(&mut self.place.c), in deserialize_in_place() [all …]
|
D | default_ty_param.expanded.rs | 299 struct __Visitor<'de, 'place, T: AssociatedType<X = i32> + 'place> { in deserialize_in_place() 300 place: &'place mut DefaultTyParam<T>, in deserialize_in_place() field 303 impl<'de, 'place, T: AssociatedType<X = i32> + 'place> _serde::de::Visitor<'de> in deserialize_in_place() 304 for __Visitor<'de, 'place, T> in deserialize_in_place() 323 _serde::__private::de::InPlaceSeed(&mut self.place.phantom), in deserialize_in_place() 365 _serde::__private::de::InPlaceSeed(&mut self.place.phantom), in deserialize_in_place() 388 self.place.phantom = match _serde::__private::de::missing_field("phantom") { in deserialize_in_place() 404 place: __place, in deserialize_in_place()
|
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/functions/destructuring_parameter_declarations/ |
D | destructuring_parameter_declarations_6.ts | 29 place?: [number, number]; property 32 function infor({ title, place, brave }: information) { 36 if (place) { 37 Assert.equal(Array.isArray(place), true); 45 infor({ place: [0, 1] });
|
/third_party/python/Doc/c-api/ |
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. 188 operation is done *in-place* when *o1* supports it. This is the equivalent of 197 is done *in-place* when *o1* supports it. This is the equivalent of the Python 198 statement ``o1 **= o2`` when o3 is :c:data:`Py_None`, or an in-place variant of [all …]
|
/third_party/typescript/tests/baselines/reference/ |
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/ltp/scripts/coccinelle/ |
D | run-spatch.sh | 24 --in-place \ 30 --in-place \ 56 --in-place \ 77 -f Apply the semantic patch in-place to fix the code
|
/third_party/skia/experimental/sktext/editor/ |
D | Editor.cpp | 51 fCursor->place(endOfText.fBoundaries); in Editor() 63 fCursor->place(position.fBoundaries); in update() 103 fCursor->place(position.fBoundaries); in moveCursor() 163 fCursor->place(position.fBoundaries); in deleteElement() 172 fCursor->place(position.fBoundaries); in deleteElement() 196 fCursor->place(position.fBoundaries); in insertCodepoint() 256 fCursor->place(position.fBoundaries); in onMouse()
|
D | Cursor.h | 26 void place(SkPoint xy, SkSize size) { in place() function 34 void place(SkRect rect) { in place() function
|
/third_party/openssl/crypto/bio/ |
D | bio_print.c | 441 int place = 0; in fmtint() local 467 convert[place++] = (caps ? "0123456789ABCDEF" : "0123456789abcdef") in fmtint() 470 } while (uvalue && (place < (int)sizeof(convert))); in fmtint() 471 if (place == sizeof(convert)) in fmtint() 472 place--; in fmtint() 473 convert[place] = 0; in fmtint() 475 zpadlen = max - place; in fmtint() 477 min - OSSL_MAX(max, place) - (signvalue ? 1 : 0) - strlen(prefix); in fmtint() 517 while (place > 0) { in fmtint() 518 if (!doapr_outch(sbuffer, buffer, currlen, maxlen, convert[--place])) in fmtint()
|
/third_party/skia/third_party/externals/opengl-registry/extensions/SGIX/ |
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
|
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
|
/third_party/openGLES/extensions/SGIX/ |
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
|
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
|
/third_party/skia/gm/ |
D | hardstop_gradients_many.cpp | 63 float place = SkScalar(pos) / SkScalar(row); in onDraw() local 64 positions.push_back(place); in onDraw() 65 positions.push_back(place); in onDraw()
|
/third_party/rust/crates/libc/src/ |
D | macros.rs | 333 ($place:expr) => { 334 &$place 340 ($place:expr) => { 341 ::core::ptr::addr_of!($place)
|
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/ |
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
|
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
|