/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | Optional.h | 35 Optional(NoneType) : hasVal(false) {} in Optional() argument 188 bool operator==(const Optional<T> &X, NoneType) { 193 bool operator==(NoneType, const Optional<T> &X) { 198 bool operator!=(const Optional<T> &X, NoneType) { 203 bool operator!=(NoneType, const Optional<T> &X) { 207 template <typename T> bool operator<(const Optional<T> &X, NoneType) { 211 template <typename T> bool operator<(NoneType, const Optional<T> &X) { 215 template <typename T> bool operator<=(const Optional<T> &X, NoneType) { 219 template <typename T> bool operator<=(NoneType, const Optional<T> &X) { 223 template <typename T> bool operator>(const Optional<T> &X, NoneType) { [all …]
|
D | None.h | 22 enum class NoneType { None }; enum 23 const NoneType None = None;
|
D | SmallSet.h | 80 std::pair<NoneType, bool> insert(const T &V) { in insert()
|
D | ArrayRef.h | 56 /*implicit*/ ArrayRef(NoneType) : Data(nullptr), Length(0) {} in ArrayRef() argument 293 /*implicit*/ MutableArrayRef(NoneType) : ArrayRef<T>() {} in MutableArrayRef() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | Optional.h | 222 constexpr Optional(NoneType) {} in Optional() argument 332 bool operator==(const Optional<T> &X, NoneType) { 337 bool operator==(NoneType, const Optional<T> &X) { 342 bool operator!=(const Optional<T> &X, NoneType) { 347 bool operator!=(NoneType, const Optional<T> &X) { 351 template <typename T> bool operator<(const Optional<T> &X, NoneType) { 355 template <typename T> bool operator<(NoneType, const Optional<T> &X) { 359 template <typename T> bool operator<=(const Optional<T> &X, NoneType) { 363 template <typename T> bool operator<=(NoneType, const Optional<T> &X) { 367 template <typename T> bool operator>(const Optional<T> &X, NoneType) { [all …]
|
D | None.h | 22 enum class NoneType { None = 1 }; enum 23 const NoneType None = NoneType::None;
|
D | StringSet.h | 27 class StringSet : public StringMap<NoneType, AllocatorTy> { 28 using base = StringMap<NoneType, AllocatorTy>;
|
D | StringMap.h | 145 class StringMapEntryStorage<NoneType> : public StringMapEntryBase { 147 explicit StringMapEntryStorage(size_t strLen, NoneType none = None) 151 NoneType getValue() const { return None; } in getValue()
|
D | ArrayRef.h | 63 /*implicit*/ ArrayRef(NoneType) {} in ArrayRef() argument 309 /*implicit*/ MutableArrayRef(NoneType) : ArrayRef<T>() {} in MutableArrayRef() argument
|
D | SmallSet.h | 180 std::pair<NoneType, bool> insert(const T &V) { in insert()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | ObjCARCAnalysisUtils.h | 270 ImpreciseReleaseMDKind = NoneType::None; in init() 271 CopyOnEscapeMDKind = NoneType::None; in init() 272 NoObjCARCExceptionsMDKind = NoneType::None; in init()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | Optional.cpp | 12 llvm::raw_ostream &llvm::operator<<(raw_ostream &OS, NoneType) { in operator <<() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | SMLoc.h | 54 SMRange(NoneType) {} in SMRange() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | SMLoc.h | 53 SMRange(NoneType) {} in SMRange() argument
|
/third_party/python/Tools/clinic/ |
D | clinic.py | 31 NoneType = type(None) variable 46 NoneType = type(None) variable 3070 elif accept == {int, NoneType}: 3097 def converter_init(self, *, accept={int, NoneType}): argument 3100 elif accept == {int, NoneType}: 3233 default_type = (str, Null, NoneType) 3253 if NoneType in accept and self.c_default == "Py_None": 3346 r('z', accept={str, NoneType}) 3347 r('z#', zeroes=True, accept={robuffer, str, NoneType}) 3387 default_type = (str, Null, NoneType) [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/FuzzMutate/ |
D | OpDescriptor.h | 61 SourcePred(PredT Pred, NoneType) : Pred(Pred) { in SourcePred() argument
|
/third_party/python/Lib/ |
D | types.py | 304 NoneType = type(None) variable
|
/third_party/python/Doc/library/ |
D | constants.rst | 25 ``None`` is the sole instance of the :data:`NoneType` type.
|
D | random.rst | 91 *NoneType*, :class:`int`, :class:`float`, :class:`str`, 383 :class:`NoneType`, :class:`int`, :class:`float`, :class:`str`,
|
D | multiprocessing.shared_memory.rst | 303 …[<class 'str'>, <class 'bytes'>, <class 'float'>, <class 'int'>, <class 'NoneType'>, <class 'bool'…
|
D | types.rst | 106 .. data:: NoneType
|
/third_party/python/Lib/test/ |
D | clinic.test | 1302 c: Py_ssize_t(accept={int, NoneType}) = 56 1384 c: slice_index(accept={int, NoneType}) = 56 1642 e: str(accept={str, NoneType}) = "gh" 1645 h: str(accept={robuffer, str, NoneType}, zeroes=True) = "mn" 1781 c: Py_UNICODE(accept={str, NoneType}) 1783 e: Py_UNICODE(accept={str, NoneType}, zeroes=True) 1855 d: Py_buffer(accept={str, buffer, NoneType})
|
/third_party/python/Doc/howto/ |
D | clinic.rst | 780 To accept ``None``, add ``NoneType`` to this set. 861 ``'Z'`` ``Py_UNICODE(accept={str, NoneType})`` 862 ``'Z#'`` ``Py_UNICODE(accept={str, NoneType}, zeroes=True)`` 863 ``'z'`` ``str(accept={str, NoneType})`` 864 ``'z#'`` ``str(accept={str, NoneType}, zeroes=True)`` 865 ``'z*'`` ``Py_buffer(accept={buffer, str, NoneType})`` 1076 (There's also an experimental ``NoneType`` converter, which lets you
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/MIRParser/ |
D | MILexer.cpp | 40 Cursor(NoneType) {} in Cursor() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | BasicBlockUtils.cpp | 391 NoneType(), in removeRedundantDbgInstrsUsingForwardScan()
|