/external/tensorflow/tensorflow/compiler/xla/service/ |
D | while_loop_analysis.cc | 26 using absl::nullopt; 61 return nullopt; in GetGTEOperandIndex() 75 return nullopt; in GetGTEOperandIndex() 118 return nullopt; in GetLoopInductionVarTupleIdx() 133 return nullopt; in GetLoopInductionVarTupleIdx() 144 return nullopt; in GetLoopInductionVarTupleIdx() 151 return nullopt; in GetLoopInductionVarTupleIdx() 159 return nullopt; in GetLoopInductionVarTupleIdx() 173 return nullopt; in LiteralAsScalarInt64() 194 return nullopt; in LiteralAsScalarInt64() [all …]
|
/external/libchrome/base/json/ |
D | json_parser.cc | 87 return nullopt; in Parse() 98 return nullopt; in Parse() 103 return nullopt; in Parse() 170 return nullopt; in PeekChars() 180 return nullopt; in PeekChar() 194 return nullopt; in ConsumeChar() 324 return nullopt; in ParseToken() 331 return nullopt; in ConsumeDictionary() 337 return nullopt; in ConsumeDictionary() 346 return nullopt; in ConsumeDictionary() [all …]
|
/external/perfetto/src/trace_processor/ |
D | process_table_unittest.cc | 66 context_.process_tracker->UpdateProcess(1, base::nullopt, kCommProc1); in TEST_F() 67 context_.process_tracker->UpdateProcess(2, base::nullopt, kCommProc2); in TEST_F() 88 context_.process_tracker->UpdateProcess(1, base::nullopt, kCommProc1); in TEST_F() 89 context_.process_tracker->UpdateProcess(2, base::nullopt, kCommProc2); in TEST_F() 103 context_.process_tracker->UpdateProcess(1, base::nullopt, kCommProc1); in TEST_F() 104 context_.process_tracker->UpdateProcess(2, base::nullopt, kCommProc2); in TEST_F() 125 context_.process_tracker->UpdateProcess(1, base::nullopt, kCommProc1); in TEST_F() 126 context_.process_tracker->UpdateProcess(2, base::nullopt, kCommProc2); in TEST_F() 140 context_.process_tracker->UpdateProcess(1, base::nullopt, kCommProc1); in TEST_F() 141 context_.process_tracker->UpdateProcess(2, base::nullopt, kCommProc2); in TEST_F() [all …]
|
D | json_trace_utils.cc | 44 return base::nullopt; in CoerceToNs() 48 return base::nullopt; in CoerceToNs() 63 return base::nullopt; in CoerceToInt64() 67 return base::nullopt; in CoerceToInt64() 74 return base::nullopt; in CoerceToUint32() 77 return base::nullopt; in CoerceToUint32()
|
D | process_tracker_unittest.cc | 48 context.process_tracker->UpdateProcess(1, base::nullopt, "test"); in TEST_F() 67 context.process_tracker->UpdateProcess(1, base::nullopt, "test"); in TEST_F() 68 context.process_tracker->UpdateProcess(1, base::nullopt, "test"); in TEST_F() 75 context.process_tracker->UpdateProcess(1, base::nullopt, "test"); in TEST_F() 76 context.process_tracker->UpdateProcess(3, base::nullopt, "test"); in TEST_F() 84 context.process_tracker->UpdateProcess(1, base::nullopt, "test"); in TEST_F() 104 context.process_tracker->UpdateProcess(2, base::nullopt, "test"); in TEST_F()
|
D | span_join_operator_table.cc | 81 return base::nullopt; in Init() 87 return base::nullopt; in Init() 93 return base::nullopt; in Init() 102 return base::nullopt; in Init() 107 return base::nullopt; in Init() 111 return base::nullopt; in Init() 118 return base::nullopt; in Init() 124 return base::nullopt; in Init() 139 return base::nullopt; in Init() 213 return base::nullopt; in CreateTableDefinition() [all …]
|
D | thread_table_unittest.cc | 84 context_.process_tracker->UpdateProcess(2, base::nullopt, "test"); in TEST_F() 115 context_.process_tracker->UpdateProcess(2, base::nullopt, "test"); in TEST_F() 146 context_.process_tracker->UpdateProcess(7, base::nullopt, "pid7"); in TEST_F() 148 context_.process_tracker->UpdateProcess(2, base::nullopt, "pid2"); in TEST_F()
|
/external/libcxx/test/std/utilities/optional/optional.nullops/ |
D | greater_equal.pass.cpp | 22 using std::nullopt; in main() 31 static_assert ( (nullopt >= o1), "" ); in main() 32 static_assert ( !(nullopt >= o2), "" ); in main() 33 static_assert ( (o1 >= nullopt), "" ); in main() 34 static_assert ( (o2 >= nullopt), "" ); in main() 36 static_assert (noexcept(nullopt >= o1), ""); in main() 37 static_assert (noexcept(o1 >= nullopt), ""); in main()
|
D | equal.pass.cpp | 22 using std::nullopt; in main() 31 static_assert ( (nullopt == o1), "" ); in main() 32 static_assert ( !(nullopt == o2), "" ); in main() 33 static_assert ( (o1 == nullopt), "" ); in main() 34 static_assert ( !(o2 == nullopt), "" ); in main() 36 static_assert (noexcept(nullopt == o1), ""); in main() 37 static_assert (noexcept(o1 == nullopt), ""); in main()
|
D | not_equal.pass.cpp | 22 using std::nullopt; in main() 31 static_assert ( !(nullopt != o1), "" ); in main() 32 static_assert ( (nullopt != o2), "" ); in main() 33 static_assert ( !(o1 != nullopt), "" ); in main() 34 static_assert ( (o2 != nullopt), "" ); in main() 36 static_assert (noexcept(nullopt != o1), ""); in main() 37 static_assert (noexcept(o1 != nullopt), ""); in main()
|
D | greater.pass.cpp | 22 using std::nullopt; in main() 31 static_assert ( !(nullopt > o1), "" ); in main() 32 static_assert ( !(nullopt > o2), "" ); in main() 33 static_assert ( !(o1 > nullopt), "" ); in main() 34 static_assert ( (o2 > nullopt), "" ); in main() 36 static_assert (noexcept(nullopt > o1), ""); in main() 37 static_assert (noexcept(o1 > nullopt), ""); in main()
|
D | less_than.pass.cpp | 22 using std::nullopt; in main() 31 static_assert ( !(nullopt < o1), "" ); in main() 32 static_assert ( (nullopt < o2), "" ); in main() 33 static_assert ( !(o1 < nullopt), "" ); in main() 34 static_assert ( !(o2 < nullopt), "" ); in main() 36 static_assert (noexcept(nullopt < o1), ""); in main() 37 static_assert (noexcept(o1 < nullopt), ""); in main()
|
D | less_equal.pass.cpp | 23 using std::nullopt; in main() 32 static_assert ( (nullopt <= o1), "" ); in main() 33 static_assert ( (nullopt <= o2), "" ); in main() 34 static_assert ( (o1 <= nullopt), "" ); in main() 35 static_assert ( !(o2 <= nullopt), "" ); in main() 37 static_assert (noexcept(nullopt <= o1), ""); in main() 38 static_assert (noexcept(o1 <= nullopt), ""); in main()
|
/external/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/ |
D | nullopt_t.pass.cpp | 24 using std::nullopt; 30 static_assert(noexcept(opt = nullopt) == true, ""); in main() 31 opt = nullopt; in main() 36 opt = nullopt; in main() 43 static_assert(noexcept(opt = nullopt) == true, ""); in main() 45 opt = nullopt; in main() 58 opt = nullopt; in main()
|
/external/libchrome/base/test/metrics/ |
D | histogram_enum_reader.cc | 79 return nullopt; in ParseEnumFromHistogramsXml() 89 return nullopt; in ReadEnumFromEnumsXml() 98 return nullopt; in ReadEnumFromEnumsXml() 104 return nullopt; in ReadEnumFromEnumsXml() 118 return nullopt; in ReadEnumFromEnumsXml() 125 return nullopt; in ReadEnumFromEnumsXml() 132 return nullopt; in ReadEnumFromEnumsXml()
|
/external/bcc/tests/cc/ |
D | test_usdt_args.cc | 23 using std::experimental::nullopt; 37 optional<int> deref_offset = nullopt, in verify_register() 38 optional<std::string> deref_ident = nullopt, in verify_register() 39 optional<std::string> index_regname = nullopt, in verify_register() 40 optional<int> scale = nullopt) { in verify_register() 152 verify_register(parser, 8, "ax", 0, nullopt, std::string("dx"), 8); 153 verify_register(parser, 4, "bx", 0, nullopt, std::string("cx"));
|
/external/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/ |
D | nullopt_t.pass.cpp | 23 using std::nullopt; 33 constexpr Opt opt(nullopt); in test_constexpr() 51 Opt opt(nullopt); in test() 55 const Opt opt(nullopt); in test()
|
/external/libchrome/base/ |
D | optional_unittest.cc | 550 constexpr Optional<int> a(base::nullopt); in TEST() 791 a = base::nullopt; in TEST() 792 b = base::nullopt; in TEST() 799 a = base::nullopt; in TEST() 800 b = base::nullopt; in TEST() 807 a = base::nullopt; in TEST() 808 b = base::nullopt; in TEST() 1040 a = base::nullopt; in TEST() 1063 a = base::nullopt; in TEST() 1074 a = base::nullopt; in TEST() [all …]
|
/external/perfetto/src/base/ |
D | optional_unittest.cc | 566 constexpr Optional<int> a(base::nullopt); in TEST() 807 a = base::nullopt; in TEST() 808 b = base::nullopt; in TEST() 815 a = base::nullopt; in TEST() 816 b = base::nullopt; in TEST() 823 a = base::nullopt; in TEST() 824 b = base::nullopt; in TEST() 1054 a = base::nullopt; in TEST() 1077 a = base::nullopt; in TEST() 1088 a = base::nullopt; in TEST() [all …]
|
/external/libcxx/include/ |
D | __node_handle | 63 __alloc_ = _VSTD::nullopt; 97 __other.__alloc_ = _VSTD::nullopt; 104 __alloc_ == _VSTD::nullopt || 114 __alloc_ == _VSTD::nullopt) 118 __other.__alloc_ = _VSTD::nullopt; 140 __alloc_ == _VSTD::nullopt || __other.__alloc_ == _VSTD::nullopt)
|
/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
D | cudnn_fused_conv_rewriter.cc | 65 return absl::nullopt; in FindConvWithRelu() 127 return absl::nullopt; in FindConvWithRelu() 134 return absl::nullopt; in FindConvWithRelu() 140 return absl::nullopt; in FindConvWithRelu() 149 return absl::nullopt; in FindConvWithRelu() 155 return absl::nullopt; in FindConvWithRelu() 159 return absl::nullopt; in FindConvWithRelu()
|
/external/libcxx/test/std/utilities/optional/optional.nullopt/ |
D | nullopt_t.pass.cpp | 24 using std::nullopt; 28 nullopt_t foo{nullopt}; in test() 38 static_assert(std::is_same_v<const nullopt_t, decltype(nullopt)>); in main()
|
/external/libchrome/base/debug/ |
D | elf_reader_linux.cc | 53 return nullopt; in ElfSegmentBuildIDNoteAsString() 93 return nullopt; in ReadElfBuildId() 101 return nullopt; in ReadElfBuildId() 107 return nullopt; in ReadElfLibraryName() 128 return nullopt; in ReadElfLibraryName()
|
/external/tensorflow/tensorflow/compiler/xla/service/cpu/ |
D | cpu_layout_assignment.cc | 38 using absl::nullopt; 61 return nullopt; in ShouldMakeOperandColumnMajor() 66 return nullopt; in ShouldMakeOperandColumnMajor() 77 return it->second ? operand_idx : nullopt; in ShouldMakeOperandColumnMajor()
|
/external/pdfium/third_party/base/ |
D | optional.h | 30 constexpr nullopt_t nullopt(0); 335 return !!lhs != !!rhs ? false : lhs == nullopt || (*lhs == *rhs); 345 return rhs == nullopt ? false : (lhs == nullopt ? true : *lhs < *rhs); 425 return opt != nullopt ? *opt == value : false; 445 return opt != nullopt ? *opt < value : true; 450 return opt != nullopt ? value < *opt : false; 500 return opt == pdfium::nullopt ? 0 : std::hash<T>()(*opt);
|