/external/python/cpython2/Doc/library/ |
D | repr.rst | 25 .. class:: Repr() 35 This is an instance of :class:`Repr` which is used to provide the :func:`.repr` 42 This is the :meth:`~Repr.repr` method of ``aRepr``. It returns a string 49 Repr Objects 52 :class:`Repr` instances provide several attributes which can be used to provide 57 .. attribute:: Repr.maxlevel 62 .. attribute:: Repr.maxdict 63 Repr.maxlist 64 Repr.maxtuple 65 Repr.maxset [all …]
|
/external/python/cpython3/Doc/library/ |
D | reprlib.rst | 20 .. class:: Repr() 29 This is an instance of :class:`Repr` which is used to provide the 37 This is the :meth:`~Repr.repr` method of ``aRepr``. It returns a string 71 Repr Objects 74 :class:`Repr` instances provide several attributes which can be used to provide 79 .. attribute:: Repr.maxlevel 84 .. attribute:: Repr.maxdict 85 Repr.maxlist 86 Repr.maxtuple 87 Repr.maxset [all …]
|
/external/libtextclassifier/utils/utf8/ |
D | unicodetext.h | 184 class Repr { // A byte-string. 191 Repr() : data_(nullptr), size_(0), capacity_(0), ours_(true) {} in Repr() function 192 Repr& operator=(Repr&& src); 193 ~Repr() { in ~Repr() 206 Repr& operator=(const Repr&); 207 Repr(const Repr& other); 210 Repr repr_;
|
D | unicodetext.cc | 31 UnicodeText::Repr& UnicodeText::Repr::operator=(Repr&& src) { in operator =() 41 void UnicodeText::Repr::PointTo(const char* data, int size) { in PointTo() 49 void UnicodeText::Repr::Copy(const char* data, int size) { in Copy() 54 void UnicodeText::Repr::resize(int new_size) { in resize() 66 void UnicodeText::Repr::reserve(int new_capacity) { in reserve() 84 void UnicodeText::Repr::append(const char* bytes, int byte_length) { in append() 90 void UnicodeText::Repr::clear() { in clear()
|
/external/libchrome/mojo/public/tools/bindings/pylib/mojom/generate/ |
D | module.py | 20 def Repr(obj, as_ref=True): function 36 return obj.Repr(as_ref=as_ref) 43 return ('[\n%s\n]' % (',\n'.join(' %s' % Repr(elem, as_ref).replace( 50 Repr(key, as_ref).replace('\n', '\n '), 51 Repr(val, as_ref).replace('\n', '\n ')) 70 return ' %s=%s' % (name, Repr(getattr(obj, name), as_ref).replace( 93 def Repr(self, as_ref=True): member in Kind 98 return self.Repr() 116 def Repr(self, as_ref=True): member in ReferenceKind 291 def Repr(self, as_ref=True): member in Field [all …]
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCVSXSwapRemoval.cpp | 638 int Repr = EC->getLeaderValue(SwapVector[EntryIdx].VSEId); in recordUnoptimizableWebs() local 641 if (SwapVector[Repr].WebRejected) in recordUnoptimizableWebs() 651 SwapVector[Repr].WebRejected = 1; in recordUnoptimizableWebs() 655 "swap[pable]\n", Repr)); in recordUnoptimizableWebs() 677 SwapVector[Repr].WebRejected = 1; in recordUnoptimizableWebs() 680 format("Web %d rejected for load not feeding swap\n", Repr)); in recordUnoptimizableWebs() 701 SwapVector[Repr].WebRejected = 1; in recordUnoptimizableWebs() 704 format("Web %d rejected for store not fed by swap\n", Repr)); in recordUnoptimizableWebs() 718 SwapVector[Repr].WebRejected = 1; in recordUnoptimizableWebs() 722 Repr)); in recordUnoptimizableWebs() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/ |
D | PPCVSXSwapRemoval.cpp | 646 int Repr = EC->getLeaderValue(SwapVector[EntryIdx].VSEId); in recordUnoptimizableWebs() local 649 if (SwapVector[Repr].WebRejected) in recordUnoptimizableWebs() 659 SwapVector[Repr].WebRejected = 1; in recordUnoptimizableWebs() 664 Repr)); in recordUnoptimizableWebs() 686 SwapVector[Repr].WebRejected = 1; in recordUnoptimizableWebs() 689 "Web %d rejected for load not feeding swap\n", Repr)); in recordUnoptimizableWebs() 710 SwapVector[Repr].WebRejected = 1; in recordUnoptimizableWebs() 713 "Web %d rejected for store not fed by swap\n", Repr)); in recordUnoptimizableWebs() 727 SwapVector[Repr].WebRejected = 1; in recordUnoptimizableWebs() 731 "Web %d rejected for swap not feeding only stores\n", Repr)); in recordUnoptimizableWebs() [all …]
|
/external/swiftshader/third_party/LLVM/utils/TableGen/ |
D | FastISelEmitter.cpp | 74 char Repr; member in __anonc8589b870111::OperandsSignature::OpKind 77 OpKind() : Repr(OK_Invalid) {} in OpKind() 79 bool operator<(OpKind RHS) const { return Repr < RHS.Repr; } in operator <() 80 bool operator==(OpKind RHS) const { return Repr == RHS.Repr; } in operator ==() 82 static OpKind getReg() { OpKind K; K.Repr = OK_Reg; return K; } in getReg() 83 static OpKind getFP() { OpKind K; K.Repr = OK_FP; return K; } in getFP() 87 OpKind K; K.Repr = OK_Imm+V; return K; in getImm() 90 bool isReg() const { return Repr == OK_Reg; } in isReg() 91 bool isFP() const { return Repr == OK_FP; } in isFP() 92 bool isImm() const { return Repr >= OK_Imm; } in isImm() [all …]
|
/external/llvm/utils/TableGen/ |
D | FastISelEmitter.cpp | 80 char Repr; member in __anon817e0e5b0311::OperandsSignature::OpKind 83 OpKind() : Repr(OK_Invalid) {} in OpKind() 85 bool operator<(OpKind RHS) const { return Repr < RHS.Repr; } in operator <() 86 bool operator==(OpKind RHS) const { return Repr == RHS.Repr; } in operator ==() 88 static OpKind getReg() { OpKind K; K.Repr = OK_Reg; return K; } in getReg() 89 static OpKind getFP() { OpKind K; K.Repr = OK_FP; return K; } in getFP() 93 OpKind K; K.Repr = OK_Imm+V; return K; in getImm() 96 bool isReg() const { return Repr == OK_Reg; } in isReg() 97 bool isFP() const { return Repr == OK_FP; } in isFP() 98 bool isImm() const { return Repr >= OK_Imm; } in isImm() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/ |
D | FastISelEmitter.cpp | 90 char Repr; member in __anone2c787b30311::OperandsSignature::OpKind 93 OpKind() : Repr(OK_Invalid) {} in OpKind() 95 bool operator<(OpKind RHS) const { return Repr < RHS.Repr; } in operator <() 96 bool operator==(OpKind RHS) const { return Repr == RHS.Repr; } in operator ==() 98 static OpKind getReg() { OpKind K; K.Repr = OK_Reg; return K; } in getReg() 99 static OpKind getFP() { OpKind K; K.Repr = OK_FP; return K; } in getFP() 103 OpKind K; K.Repr = OK_Imm+V; return K; in getImm() 106 bool isReg() const { return Repr == OK_Reg; } in isReg() 107 bool isFP() const { return Repr == OK_FP; } in isFP() 108 bool isImm() const { return Repr >= OK_Imm; } in isImm() [all …]
|
D | SearchableTableEmitter.cpp | 346 std::string Repr = in emitLookupFunction() local 349 Repr = StringRef(Repr).upper(); in emitLookupFunction() 350 OS << Repr; in emitLookupFunction()
|
/external/syzkaller/vendor/google.golang.org/appengine/datastore/ |
D | metadata.go | 67 Repr []string `datastore:"property_representation"` 75 propMap[keys[i].StringID()] = p.Repr
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/CodeGen/ |
D | LowLevelTypeTest.cpp | 23 std::string Repr; in operator <<() local 24 raw_string_ostream SS{Repr}; in operator <<()
|
/external/python/cpython2/Lib/idlelib/ |
D | ObjectBrowser.py | 16 from repr import Repr 18 myrepr = Repr()
|
/external/python/cpython3/Lib/idlelib/ |
D | debugobj.py | 11 from reprlib import Repr 15 myrepr = Repr()
|
/external/python/cpython2/Lib/ |
D | repr.py | 8 class Repr: class 131 aRepr = Repr()
|
D | pydoc.py | 57 from repr import Repr 407 class HTMLRepr(Repr): 410 Repr.__init__(self) 419 return Repr.repr(self, object) 996 class TextRepr(Repr): 999 Repr.__init__(self)
|
/external/python/cpython3/Lib/ |
D | reprlib.py | 36 class Repr: class 160 aRepr = Repr()
|
D | pydoc.py | 74 from reprlib import Repr 431 class HTMLRepr(Repr): 434 Repr.__init__(self) 443 return Repr.repr(self, object) 1040 class TextRepr(Repr): 1043 Repr.__init__(self)
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/CodeGen/GlobalISel/ |
D | LegalizerInfoTest.cpp | 39 std::string Repr; in operator <<() local 40 raw_string_ostream SS{Repr}; in operator <<()
|
/external/python/cpython2/Lib/test/ |
D | test_repr.py | 13 from repr import Repr 45 r2 = Repr()
|
/external/python/cpython3/Lib/test/ |
D | test_reprlib.py | 15 from reprlib import Repr 48 r2 = Repr()
|
/external/python/cpython2/Parser/ |
D | Python.asdl | 71 | Repr(expr value)
|
/external/python/cpython2/Include/ |
D | Python-ast.h | 273 } Repr; member 490 #define Repr(a0, a1, a2, a3) _Py_Repr(a0, a1, a2, a3) macro
|
/external/swiftshader/third_party/llvm-7.0/configs/common/lib/Target/AArch64/ |
D | AArch64GenSystemOperands.inc | 1286 const ExactFPImm *lookupExactFPImmByRepr(StringRef Repr); 1314 const ExactFPImm *lookupExactFPImmByRepr(StringRef Repr) { 1316 const char * Repr; 1327 std::string Repr; 1329 KeyType Key = { Repr.upper() }; 1333 int CmpRepr = StringRef(LHS.Repr).compare(RHS.Repr); 1340 Key.Repr != Idx->Repr)
|