Home
last modified time | relevance | path

Searched refs:_p (Results 1 – 25 of 138) sorted by relevance

123456

/third_party/toybox/tests/
Dlsattr.test11 _p=$PWD
16 testing "file_path" "lsattr $_p/file" "$_A $_p/file\n" "" ""
18 testing "-R file_path" "lsattr -R $_p/file" "$_A $_p/file\n" "" ""
20 testing "-a file_path" "lsattr -a $_p/file" "$_A $_p/file\n" "" ""
22 testing "-d dir_path" "lsattr -d $_p" "$_b $_p\n" "" ""
24 testing "-d file_path" "lsattr -d $_p/file" "$_A $_p/file\n" "" ""
30 testing "-v file_path" "chattr -v $_v * && lsattr -v $_p/file" \
31 "$_v $_A $_p/file\n" "" ""
/third_party/lzma/CPP/Common/
DAutoPtr.h8 T *_p; variable
10 CMyAutoPtr(T *p = NULL) : _p(p) {} in _p() function
11 CMyAutoPtr(CMyAutoPtr<T>& p): _p(p.release()) {} in CMyAutoPtr()
17 ~CMyAutoPtr() { delete _p; } in ~CMyAutoPtr() local
18 T& operator*() const { return *_p; }
20 T* get() const { return _p; } in get()
23 T *tmp = _p; in release()
24 _p = NULL; in release()
29 if (p != _p)
30 delete _p; variable
[all …]
DMyCom.h12 T* _p; variable
14 CMyComPtr(): _p(NULL) {} in CMyComPtr()
15 CMyComPtr(T* p) throw() { if ((_p = p) != NULL) p->AddRef(); } in throw()
16 CMyComPtr(const CMyComPtr<T>& lp) throw() { if ((_p = lp._p) != NULL) _p->AddRef(); } in throw()
17 ~CMyComPtr() { if (_p) _p->Release(); } in ~CMyComPtr()
18 void Release() { if (_p) { _p->Release(); _p = NULL; } } in Release()
19 operator T*() const { return (T*)_p; }
21 T** operator&() { return &_p; }
22 T* operator->() const { return _p; }
27 if (_p)
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/
Dunaligned_access.h66 #define ABSL_INTERNAL_UNALIGNED_LOAD16(_p) \ argument
67 (absl::base_internal::UnalignedLoad16(_p))
68 #define ABSL_INTERNAL_UNALIGNED_LOAD32(_p) \ argument
69 (absl::base_internal::UnalignedLoad32(_p))
70 #define ABSL_INTERNAL_UNALIGNED_LOAD64(_p) \ argument
71 (absl::base_internal::UnalignedLoad64(_p))
73 #define ABSL_INTERNAL_UNALIGNED_STORE16(_p, _val) \ argument
74 (absl::base_internal::UnalignedStore16(_p, _val))
75 #define ABSL_INTERNAL_UNALIGNED_STORE32(_p, _val) \ argument
76 (absl::base_internal::UnalignedStore32(_p, _val))
[all …]
/third_party/typescript/tests/baselines/reference/
DcontextualOverloadListFromUnionWithPrimitiveNoImplicitAny.types25 …d: { validate: (_t, _p, _s) => false, normalize: match => match.x, }} : { field: …
28 >field : { validate: (_t: string, _p: number, _s: Rule) => false; normalize: (match: any) => any; }
29 >{ validate: (_t, _p, _s) => false, normalize: match => match.x, } : { validate: (…
31 validate: (_t, _p, _s) => false,
32 >validate : (_t: string, _p: number, _s: Rule) => false
33 >(_t, _p, _s) => false : (_t: string, _p: number, _s: Rule) => false
35 >_p : number
DjsDeclarationsClasses.types66 * @param {U} _p
68 set f1(_p) {}
70 >_p : U
81 * @param {U} _p
83 set f3(_p) {}
85 >_p : U
122 * @param {string} _p
124 static set s1(_p) {}
126 >_p : string
136 * @param {string} _p
[all …]
DjsDeclarationsClasses.symbols61 * @param {U} _p
63 set f1(_p) {}
65 >_p : Symbol(_p, Decl(index.js, 44, 11))
74 * @param {U} _p
76 set f3(_p) {}
78 >_p : Symbol(_p, Decl(index.js, 54, 11))
113 * @param {string} _p
115 static set s1(_p) {}
117 >_p : Symbol(_p, Decl(index.js, 85, 18))
126 * @param {string} _p
[all …]
DjsDeclarationsComputedNames.js25 constructor(_p = InnerSym) { argument
57 function MyClass(_p) { argument
58 if (_p === void 0) { _p = InnerSym; }
88 constructor(_p?: typeof TopLevelSym | typeof InnerSym);
DintersectionType_useDefineForClassFields.types8 function bar<T>(_p: T): { new(): Foo<T> } {
9 >bar : <T>(_p: T) => { new (): Foo<T>;}
10 >_p : T
20 >bar : <T>(_p: T) => new () => Foo<T>
DjsDeclarationsClasses.js46 set f1(_p) {} argument
56 set f3(_p) {} argument
87 static set s1(_p) {} argument
97 static set s3(_p) {} argument
269 set: function (_p) { }, argument
285 set: function (_p) { }, argument
297 set: function (_p) { }, argument
313 set: function (_p) { }, argument
DprivateNameFieldUnaryMutation.js69 …var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z;
82 …__classPrivateFieldSet(this, _C_test, (_p = __classPrivateFieldGet(this, _C_test, "f"), _p--, _p),…
93 …var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z…
99 …teFieldSet(_m = this.getInstance(), _C_test, (_p = __classPrivateFieldGet(_m, _C_test, "f"), _o =
DdestructuringArrayBindingPatternAndAssignment1ES5.js109 var _p = [1, 2, "string"], c14 = _p[0], c15 = _p[1], c16 = _p[2]; variable
DjsDeclarationsComputedNames.symbols59 * @param {typeof TopLevelSym | typeof InnerSym} _p
61 constructor(_p = InnerSym) {
62 >_p : Symbol(_p, Decl(index2.js, 9, 16))
65 // switch on _p
DelementAccessChain.js35 var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q; variable
46 (_p = (_o = o5["b"]) === null || _o === void 0 ? void 0 : _o.call(o5)["c"].d) === null || _p === vo…
DexternalModuleImmutableBindings.js109 for (var _p = 0, _q = []; _p < _q.length; _p++) {
110 (stuff[n]) = _q[_p];
DprivateNameStaticFieldUnaryMutation.js47 var _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y;
53 …_o = C, _a, (_q = __classPrivateFieldGet(_o, _a, "f", _C_test), _p = _q--, _q), "f", _C_test), _p);
60 var _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y;
66 …lass(), _a, (_q = __classPrivateFieldGet(_o, _a, "f", _C_test), _p = _q--, _q), "f", _C_test), _p);
DdeleteChain.js29 var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r; variable
41 (_p = (_o = o6.b) === null || _o === void 0 ? void 0 : _o['c'].d) === null || _p === void 0 ? true …
DnoImplicitAnyDestructuringVarDeclaration2.js21 var _p = { x: 1, y: 2, z: 3 }, x = _p.x, y = _p.y, z = _p.z; // no error variable
/third_party/python/Objects/stringlib/
Dcodecs.h45 STRINGLIB_CHAR *_p = p; in STRINGLIB() local
54 _p[0] = (STRINGLIB_CHAR)(value & 0xFFu); in STRINGLIB()
55 _p[1] = (STRINGLIB_CHAR)((value >> 8) & 0xFFu); in STRINGLIB()
56 _p[2] = (STRINGLIB_CHAR)((value >> 16) & 0xFFu); in STRINGLIB()
57 _p[3] = (STRINGLIB_CHAR)((value >> 24) & 0xFFu); in STRINGLIB()
59 _p[4] = (STRINGLIB_CHAR)((value >> 32) & 0xFFu); in STRINGLIB()
60 _p[5] = (STRINGLIB_CHAR)((value >> 40) & 0xFFu); in STRINGLIB()
61 _p[6] = (STRINGLIB_CHAR)((value >> 48) & 0xFFu); in STRINGLIB()
62 _p[7] = (STRINGLIB_CHAR)((value >> 56) & 0xFFu); in STRINGLIB()
66 _p[0] = (STRINGLIB_CHAR)((value >> 56) & 0xFFu); in STRINGLIB()
[all …]
Dfind_max_char.h27 const unsigned char *_p = p; in STRINGLIB() local
28 while (_p + SIZEOF_SIZE_T <= end) { in STRINGLIB()
29 size_t value = *(const size_t *) _p; in STRINGLIB()
32 _p += SIZEOF_SIZE_T; in STRINGLIB()
34 p = _p; in STRINGLIB()
/third_party/protobuf/src/google/protobuf/stubs/
Dport.h183 #define GOOGLE_UNALIGNED_LOAD16(_p) (*reinterpret_cast<const uint16 *>(_p)) argument
184 #define GOOGLE_UNALIGNED_LOAD32(_p) (*reinterpret_cast<const uint32 *>(_p)) argument
185 #define GOOGLE_UNALIGNED_LOAD64(_p) (*reinterpret_cast<const uint64 *>(_p)) argument
187 #define GOOGLE_UNALIGNED_STORE16(_p, _val) (*reinterpret_cast<uint16 *>(_p) = (_val)) argument
188 #define GOOGLE_UNALIGNED_STORE32(_p, _val) (*reinterpret_cast<uint32 *>(_p) = (_val)) argument
189 #define GOOGLE_UNALIGNED_STORE64(_p, _val) (*reinterpret_cast<uint64 *>(_p) = (_val)) argument
/third_party/typescript/tests/cases/conformance/jsdoc/declarations/
DjsDeclarationsClasses.ts51 set f1(_p) {}
61 set f3(_p) {}
92 static set s1(_p) {}
102 static set s3(_p) {}
/third_party/jerryscript/tests/jerry/
Dregression-test-issue-3477.js15 function _p(arg1, arg2) { function
20 var constructor = _p(this, (_ref = Object.getPrototypeOf(function (){})).call({}));
24 _p(this, (_ref += Object.getPrototypeOf(function (){})).call({}));
/third_party/rust/crates/rustix/src/backend/libc/io/
Dio_slice.rs15 _p: PhantomData<&'a [u8]>, field
26 _p: PhantomData, in new()
51 _p: PhantomData<&'a mut [u8]>, field
62 _p: PhantomData, in new()
/third_party/rust/crates/rustix/src/backend/linux_raw/io/
Dio_slice.rs16 _p: PhantomData<&'a [u8]>, field
28 _p: PhantomData, in new()
56 _p: PhantomData<&'a mut [u8]>, field
68 _p: PhantomData, in new()

123456