Home
last modified time | relevance | path

Searched refs:nullopt (Results 1 – 25 of 133) sorted by relevance

123456

/external/tensorflow/tensorflow/compiler/xla/service/
Dwhile_loop_analysis.cc26 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/
Djson_parser.cc87 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/
Dprocess_table_unittest.cc66 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 …]
Djson_trace_utils.cc44 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()
Dprocess_tracker_unittest.cc48 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()
Dspan_join_operator_table.cc81 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 …]
Dthread_table_unittest.cc84 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/
Dgreater_equal.pass.cpp22 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()
Dequal.pass.cpp22 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()
Dnot_equal.pass.cpp22 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()
Dgreater.pass.cpp22 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()
Dless_than.pass.cpp22 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()
Dless_equal.pass.cpp23 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/
Dnullopt_t.pass.cpp24 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/
Dhistogram_enum_reader.cc79 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/
Dtest_usdt_args.cc23 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/
Dnullopt_t.pass.cpp23 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/
Doptional_unittest.cc550 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/
Doptional_unittest.cc566 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_handle63 __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/
Dcudnn_fused_conv_rewriter.cc65 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/
Dnullopt_t.pass.cpp24 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/
Delf_reader_linux.cc53 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/
Dcpu_layout_assignment.cc38 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/
Doptional.h30 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);

123456