/external/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
|
/external/llvm/include/llvm/ADT/ |
D | Optional.h | 35 Optional(NoneType) : hasVal(false) {} in Optional() argument 163 bool operator==(const Optional<T> &X, NoneType) { 168 bool operator==(NoneType, const Optional<T> &X) { 173 bool operator!=(const Optional<T> &X, NoneType) { 178 bool operator!=(NoneType, const Optional<T> &X) {
|
D | None.h | 22 enum class NoneType { None }; enum 23 const NoneType None = None;
|
D | SmallSet.h | 75 std::pair<NoneType, bool> insert(const T &V) { in insert()
|
D | ArrayRef.h | 54 /*implicit*/ ArrayRef(NoneType) : Data(nullptr), Length(0) {} in ArrayRef() argument 236 /*implicit*/ MutableArrayRef(NoneType) : ArrayRef<T>() {} in MutableArrayRef() argument
|
/external/llvm/include/llvm/Analysis/ |
D | ObjCARCAnalysisUtils.h | 258 ImpreciseReleaseMDKind = NoneType::None; in init() 259 CopyOnEscapeMDKind = NoneType::None; in init() 260 NoObjCARCExceptionsMDKind = NoneType::None; in init()
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | SMLoc.h | 54 SMRange(NoneType) {} in SMRange() argument
|
/external/python/cpython2/Lib/distutils/ |
D | unixccompiler.py | 19 from types import StringType, NoneType 163 if type(output_dir) not in (StringType, NoneType):
|
/external/python/cpython2/Lib/ |
D | types.py | 12 NoneType = type(None) variable
|
D | xmlrpclib.py | 666 dispatch[NoneType] = dump_nil
|
D | pickle.py | 434 dispatch[NoneType] = save_none
|
/external/clang/include/clang/Analysis/Analyses/ |
D | PostOrderCFGView.h | 50 std::pair<llvm::NoneType, bool> insert(const CFGBlock *Block) { in insert()
|
/external/python/cpython2/Doc/library/ |
D | constants.rst | 24 The sole value of :attr:`types.NoneType`. ``None`` is frequently used to
|
D | types.rst | 42 .. data:: NoneType
|
D | sqlite3.rst | 739 sqlite3 module's supported types for SQLite: one of NoneType, int, long, float,
|
D | re.rst | 1063 AttributeError: 'NoneType' object has no attribute 'group'
|
/external/swiftshader/third_party/LLVM/test/Scripts/ |
D | coff-dump.py | 385 elif format_type is types.NoneType:
|
/external/python/cpython2/Lib/test/ |
D | test_descr.py | 4070 class X(types.NoneType): 4073 class X(object, types.NoneType): 4076 class X(types.NoneType, object): 4081 class X(O, types.NoneType): 4084 class X(types.NoneType, O): 4090 X.__bases__ = types.NoneType, 4092 X.__bases__ = object, types.NoneType 4094 X.__bases__ = types.NoneType, object 4096 X.__bases__ = O, types.NoneType 4098 X.__bases__ = types.NoneType, O
|
/external/llvm/lib/CodeGen/MIRParser/ |
D | MILexer.cpp | 35 Cursor(NoneType) : Ptr(nullptr), End(nullptr) {} in Cursor() argument
|
/external/python/cpython2/Doc/howto/ |
D | argparse.rst | 552 TypeError: unorderable types: NoneType() >= int()
|
/external/python/cpython2/Lib/lib-tk/ |
D | Tkinter.py | 110 elif type(cnfs) in (NoneType, StringType):
|
/external/python/cpython2/Misc/ |
D | cheatsheet | 281 with type NoneType.
|