/external/zlib/src/contrib/untgz/ |
D | untgz.c | 42 #define REGTYPE '0' /* regular file */ macro 468 case REGTYPE: in tar()
|
/external/python/cpython2/Lib/ |
D | tarfile.py | 77 REGTYPE = "0" # regular file variable 104 SUPPORTED_TYPES = (REGTYPE, AREGTYPE, LNKTYPE, 111 REGULAR_TYPES = (REGTYPE, AREGTYPE, 943 self.type = REGTYPE # member type 1126 info.get("type", REGTYPE), 1900 type = REGTYPE 1923 if type == REGTYPE:
|
/external/python/cpython3/Lib/ |
D | tarfile.py | 89 REGTYPE = b"0" # regular file variable 116 SUPPORTED_TYPES = (REGTYPE, AREGTYPE, LNKTYPE, 123 REGULAR_TYPES = (REGTYPE, AREGTYPE, 749 self.type = REGTYPE # member type 928 info.get("type", REGTYPE), 1821 type = REGTYPE 1844 if type == REGTYPE:
|
/external/v8/src/arm64/ |
D | macro-assembler-arm64-inl.h | 294 #define DEFINE_FUNCTION(FN, REGTYPE, REG, OP) \ argument 295 void MacroAssembler::FN(const REGTYPE REG, const MemOperand& addr) { \ 303 #define DEFINE_FUNCTION(FN, REGTYPE, REG, REG2, OP) \ argument 304 void MacroAssembler::FN(const REGTYPE REG, const REGTYPE REG2, \
|
D | macro-assembler-arm64.h | 296 #define DECLARE_FUNCTION(FN, REGTYPE, REG, OP) \ argument 297 inline void FN(const REGTYPE REG, const MemOperand& addr); 305 #define DECLARE_FUNCTION(FN, REGTYPE, REG, REG2, OP) \ argument 306 inline void FN(const REGTYPE REG, const REGTYPE REG2, const MemOperand& addr);
|
/external/vixl/src/aarch64/ |
D | macro-assembler-aarch64.cc | 1827 #define DEFINE_FUNCTION(FN, REGTYPE, REG, OP) \ argument 1828 void MacroAssembler::FN(const REGTYPE REG, const MemOperand& addr) { \ 1874 #define DEFINE_FUNCTION(FN, REGTYPE, REG, REG2, OP) \ argument 1875 void MacroAssembler::FN(const REGTYPE REG, \ 1876 const REGTYPE REG2, \
|
D | macro-assembler-aarch64.h | 766 #define DECLARE_FUNCTION(FN, REGTYPE, REG, OP) \ argument 767 void FN(const REGTYPE REG, const MemOperand& addr); 775 #define DECLARE_FUNCTION(FN, REGTYPE, REG, REG2, OP) \ argument 776 void FN(const REGTYPE REG, const REGTYPE REG2, const MemOperand& addr);
|
/external/python/cpython3/Lib/test/ |
D | test_tarfile.py | 1577 self.assertEqual(tarinfo.type, tarfile.REGTYPE, 1588 self.assertEqual(tarinfo.type, tarfile.REGTYPE, 2433 items = [(filename_1, 99, 98, tarfile.REGTYPE, fobj), 2435 (filename_2, 88, 87, tarfile.REGTYPE, fobj),
|
/external/python/cpython2/Lib/test/ |
D | test_tarfile.py | 1314 self.assertTrue(tarinfo.type == tarfile.REGTYPE, 1325 self.assertTrue(tarinfo.type == tarfile.REGTYPE,
|
/external/python/cpython2/Doc/library/ |
D | tarfile.rst | 560 File type. *type* is usually one of these constants: :const:`REGTYPE`,
|
/external/python/cpython3/Doc/library/ |
D | tarfile.rst | 560 File type. *type* is usually one of these constants: :const:`REGTYPE`,
|
/external/python/cpython2/Misc/ |
D | HISTORY | 1445 REGTYPE directories from tarfiles written by old programs.
|
/external/python/cpython3/Misc/ |
D | HISTORY | 18829 REGTYPE directories from tarfiles written by old programs.
|