Home
last modified time | relevance | path

Searched refs:maybe_value (Results 1 – 25 of 144) sorted by relevance

123456

/dports/net/measurement-kit/measurement-kit-0.10.14/test/ooni/
H A Dbouncer.cpp59 auto maybe_value = reply->get_collector(); variable
60 REQUIRE(!maybe_value);
65 auto maybe_value = reply->get_collector_alternate("xx"); variable
66 REQUIRE(!maybe_value);
71 auto maybe_value = reply->get_name(); variable
72 REQUIRE(!maybe_value);
77 auto maybe_value = reply->get_test_helper("xx"); variable
78 REQUIRE(!maybe_value);
84 REQUIRE(!maybe_value);
89 auto maybe_value = reply->get_version(); variable
[all …]
/dports/biology/sra-tools/sra-tools-2.11.0/tools/driver-tool/
H A Dopt_string.hpp42 std::string maybe_value; member in opt_string
54 : maybe_value(other) in opt_string()
60 : maybe_value(other.maybe_value) // safe for std::string in opt_string()
68 maybe_value = other.maybe_value; in operator =()
85 return maybe_value; in operator std::string()
91 return maybe_value; in value()
97 return is_set ? maybe_value : alt; in value_or()
/dports/math/spot/spot-2.10.2/spot/misc/
H A Dtrival.hh39 enum value_t : repr_t { no_value = -1, maybe_value = 0, yes_value = 1 }; enumerator
44 : val_(maybe_value) in trival()
75 return val_ != maybe_value; in is_known()
80 return val_ == maybe_value; in is_maybe()
111 maybe_value); in operator !()
139 : (a.val() == trival::maybe_value || b.val() == trival::maybe_value) in operator &&()
159 : (a.val() == trival::maybe_value || b.val() == trival::maybe_value) in operator ||()
177 : (v.val() == trival::maybe_value) ? "maybe" in operator <<()
/dports/math/py-spot/spot-2.10.2/spot/misc/
H A Dtrival.hh39 enum value_t : repr_t { no_value = -1, maybe_value = 0, yes_value = 1 }; enumerator
44 : val_(maybe_value) in trival()
75 return val_ != maybe_value; in is_known()
80 return val_ == maybe_value; in is_maybe()
111 maybe_value); in operator !()
139 : (a.val() == trival::maybe_value || b.val() == trival::maybe_value) in operator &&()
159 : (a.val() == trival::maybe_value || b.val() == trival::maybe_value) in operator ||()
177 : (v.val() == trival::maybe_value) ? "maybe" in operator <<()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/services/network/trust_tokens/
H A Dtrust_token_key_commitment_parser.cc99 base::Optional<base::Value> maybe_value = in Parse() local
101 if (!maybe_value) in Parse()
104 if (!maybe_value->is_dict()) in Parse()
110 if (maybe_value->FindKey(kTrustTokenKeyCommitmentBatchsizeField) && in Parse()
111 !maybe_value->FindIntKey(kTrustTokenKeyCommitmentBatchsizeField)) { in Parse()
115 maybe_value->FindIntKey(kTrustTokenKeyCommitmentBatchsizeField)) { in Parse()
122 maybe_value->FindStringKey(kTrustTokenKeyCommitmentSrrkeyField); in Parse()
132 for (const auto& kv : maybe_value->DictItems()) { in Parse()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/ui/accessibility/platform/
H A Dcompute_attributes.cc102 base::Optional<int32_t> maybe_value = base::nullopt; in ComputeAttribute() local
105 maybe_value = GetCellAttribute(delegate, attribute); in ComputeAttribute()
107 maybe_value = GetRowAttribute(delegate, attribute); in ComputeAttribute()
109 maybe_value = GetTableAttribute(delegate, attribute); in ComputeAttribute()
112 maybe_value = GetOrderedSetItemAttribute(delegate, attribute); in ComputeAttribute()
114 maybe_value = GetOrderedSetAttribute(delegate, attribute); in ComputeAttribute()
116 if (!maybe_value.has_value()) { in ComputeAttribute()
119 return maybe_value; in ComputeAttribute()
/dports/www/chromium-legacy/chromium-88.0.4324.182/ui/accessibility/platform/
H A Dcompute_attributes.cc102 base::Optional<int32_t> maybe_value = base::nullopt; in ComputeAttribute() local
105 maybe_value = GetCellAttribute(delegate, attribute); in ComputeAttribute()
107 maybe_value = GetRowAttribute(delegate, attribute); in ComputeAttribute()
109 maybe_value = GetTableAttribute(delegate, attribute); in ComputeAttribute()
112 maybe_value = GetOrderedSetItemAttribute(delegate, attribute); in ComputeAttribute()
114 maybe_value = GetOrderedSetAttribute(delegate, attribute); in ComputeAttribute()
116 if (!maybe_value.has_value()) { in ComputeAttribute()
119 return maybe_value; in ComputeAttribute()
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/rust/arrow/src/json/
H A Dwriter.rs78 .map(|maybe_value| match maybe_value { in primitive_array_to_json()
116 .map(|maybe_value| match maybe_value { in array_to_json_array()
124 .map(|maybe_value| match maybe_value { in array_to_json_array()
141 .map(|maybe_value| match maybe_value { in array_to_json_array()
148 .map(|maybe_value| match maybe_value { in array_to_json_array()
171 |(row, maybe_value)| {
172 if let Some(v) = maybe_value {
191 .for_each(|(row, maybe_value)| { in set_column_by_primitive_type()
260 .for_each(|(row, maybe_value)| { in set_column_for_json_rows()
261 if let Some(v) = maybe_value { in set_column_for_json_rows()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/pdfium/fxjs/
H A Djs_define.cpp33 v8::MaybeLocal<v8::Value> maybe_value = in JS_DateParse() local
37 if (!maybe_value.ToLocal(&value) || !value->IsObject()) in JS_DateParse()
41 maybe_value = obj->Get(context, fxv8::NewStringHelper(pIsolate, "parse")); in JS_DateParse()
42 if (!maybe_value.ToLocal(&value) || !value->IsFunction()) in JS_DateParse()
50 maybe_value = func->Call(context, context->Global(), argc, argv); in JS_DateParse()
51 if (!maybe_value.ToLocal(&value) || !value->IsNumber()) in JS_DateParse()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/bindings/core/v8/
H A Dv8_iterator_result_value.cc25 v8::MaybeLocal<v8::Value> maybe_value = in V8UnpackIteratorResult() local
28 if (maybe_value.IsEmpty()) in V8UnpackIteratorResult()
29 return maybe_value; in V8UnpackIteratorResult()
38 return maybe_value; in V8UnpackIteratorResult()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/bindings/core/v8/
H A Dv8_iterator_result_value.cc25 v8::MaybeLocal<v8::Value> maybe_value = in V8UnpackIteratorResult() local
28 if (maybe_value.IsEmpty()) in V8UnpackIteratorResult()
29 return maybe_value; in V8UnpackIteratorResult()
38 return maybe_value; in V8UnpackIteratorResult()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/test/chromedriver/
H A Dwebauthn_commands.cc51 base::Value* maybe_value = params->FindKey(key); in ConvertBase64UrlToBase64() local
52 if (!maybe_value) in ConvertBase64UrlToBase64()
55 if (!maybe_value->is_string()) in ConvertBase64UrlToBase64()
58 std::string& value = maybe_value->GetString(); in ConvertBase64UrlToBase64()
75 std::string* maybe_value = params->FindStringKey(key); in ConvertBase64ToBase64Url() local
76 if (!maybe_value) in ConvertBase64ToBase64Url()
80 bool result = base::Base64Decode(*maybe_value, &temp); in ConvertBase64ToBase64Url()
84 maybe_value); in ConvertBase64ToBase64Url()
/dports/databases/arrow/apache-arrow-6.0.1/cpp/src/arrow/testing/
H A Dmatchers.h98 bool MatchAndExplain(const Res& maybe_value, in MatchAndExplain()
100 if (!maybe_value.status().ok()) { in MatchAndExplain()
102 << testing::PrintToString(maybe_value.status().ToString()) in MatchAndExplain()
106 const ValueType& value = maybe_value.ValueOrDie(); in MatchAndExplain()
154 bool MatchAndExplain(const Res& maybe_value, in MatchAndExplain()
156 const Status& status = internal::GenericToStatus(maybe_value); in MatchAndExplain()
192 bool MatchAndExplain(const Res& maybe_value, in MatchAndExplain()
194 const Status& status = internal::GenericToStatus(maybe_value); in MatchAndExplain()
/dports/www/chromium-legacy/chromium-88.0.4324.182/services/network/trust_tokens/
H A Dtrust_token_key_commitment_parser.cc272 base::Optional<base::Value> maybe_value = in Parse() local
274 if (!maybe_value) in Parse()
277 return ParseSingleIssuer(std::move(*maybe_value)); in Parse()
284 base::Optional<base::Value> maybe_value = in ParseMultipleIssuers() local
286 if (!maybe_value) in ParseMultipleIssuers()
289 if (!maybe_value->is_dict()) in ParseMultipleIssuers()
301 for (const auto& kv : maybe_value->DictItems()) { in ParseMultipleIssuers()
/dports/www/chromium-legacy/chromium-88.0.4324.182/services/network/first_party_sets/
H A Dfirst_party_set_parser.cc129 base::Optional<base::Value> maybe_value = base::JSONReader::Read( in ParsePreloadedSets() local
131 if (!maybe_value.has_value()) in ParsePreloadedSets()
133 if (!maybe_value->is_list()) in ParsePreloadedSets()
139 for (const auto& value : maybe_value->GetList()) { in ParsePreloadedSets()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/compiler/
H A Djs-context-specialization.cc161 base::Optional<ObjectRef> maybe_value; in ReduceJSLoadContext() local
162 maybe_value = concrete.get(static_cast<int>(access.index())); in ReduceJSLoadContext()
164 if (!maybe_value.has_value()) { in ReduceJSLoadContext()
171 if (!maybe_value->IsSmi()) { in ReduceJSLoadContext()
177 OddballType oddball_type = maybe_value->AsHeapObject().map().oddball_type(); in ReduceJSLoadContext()
185 Node* constant = jsgraph_->Constant(*maybe_value); in ReduceJSLoadContext()
/dports/devel/sol2/sol2-4.0.0-alpha/examples/source/tutorials/quick_n_dirty/
H A Drunning_lua_code_safely.cpp35 sol::optional<int> maybe_value = lua.safe_script("return 54", sol::script_pass_on_error); in main() local
36 sol_c_assert(maybe_value.has_value()); in main()
37 sol_c_assert(*maybe_value == 54); in main()
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/testsuite/g++.dg/cpp2a/
H A Dconcepts-alias5.C32 template <typename, typename = void> struct maybe_value { int value; }; struct
35 struct maybe_value<cn, typename cn::sfinae>;
41 maybe_value<select_algorithm<algorithm_t, int>>::value)>
/dports/devel/avr-gcc/gcc-10.2.0/gcc/testsuite/g++.dg/cpp2a/
H A Dconcepts-alias5.C32 template <typename, typename = void> struct maybe_value { int value; }; struct
35 struct maybe_value<cn, typename cn::sfinae>;
41 maybe_value<select_algorithm<algorithm_t, int>>::value)>
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/testsuite/g++.dg/cpp2a/
H A Dconcepts-alias5.C32 template <typename, typename = void> struct maybe_value { int value; }; struct
35 struct maybe_value<cn, typename cn::sfinae>;
41 maybe_value<select_algorithm<algorithm_t, int>>::value)>
/dports/misc/cxx_atomics_pic/gcc-11.2.0/gcc/testsuite/g++.dg/cpp2a/
H A Dconcepts-alias5.C32 template <typename, typename = void> struct maybe_value { int value; }; argument
35 struct maybe_value<cn, typename cn::sfinae>;
41 maybe_value<select_algorithm<algorithm_t, int>>::value)>
/dports/lang/gcc10/gcc-10.3.0/gcc/testsuite/g++.dg/cpp2a/
H A Dconcepts-alias5.C32 template <typename, typename = void> struct maybe_value { int value; }; argument
35 struct maybe_value<cn, typename cn::sfinae>;
41 maybe_value<select_algorithm<algorithm_t, int>>::value)>
/dports/lang/gcc11/gcc-11.2.0/gcc/testsuite/g++.dg/cpp2a/
H A Dconcepts-alias5.C32 template <typename, typename = void> struct maybe_value { int value; }; argument
35 struct maybe_value<cn, typename cn::sfinae>;
41 maybe_value<select_algorithm<algorithm_t, int>>::value)>
/dports/lang/gcc10-devel/gcc-10-20211008/gcc/testsuite/g++.dg/cpp2a/
H A Dconcepts-alias5.C32 template <typename, typename = void> struct maybe_value { int value; }; argument
35 struct maybe_value<cn, typename cn::sfinae>;
41 maybe_value<select_algorithm<algorithm_t, int>>::value)>
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/cbor/
H A Ddiagnostic_writer_unittest.cc67 base::Optional<cbor::Value> maybe_value = in TEST() local
70 ASSERT_TRUE(maybe_value); in TEST()
71 EXPECT_EQ("s'E280'", DiagnosticWriter::Write(*maybe_value)); in TEST()

123456