/external/clang/test/Analysis/ |
D | uninit-sometimes.cpp | 4 bool maybe(); 34 if (maybe()) { in test_while_false() 64 if (maybe()) { in test_do_while_false() 100 if (maybe()) { in test_for_false() 164 maybe() // expected-warning {{whenever '?:' condition is false}} \ in test_conditional_false() 177 maybe() // expected-warning {{whenever '?:' condition is true}} \ in test_conditional_true() 189 maybe() // expected-warning {{whenever '&&' condition is false}} \ in test_logical_and_false() 201 maybe() // expected-warning {{whenever '&&' condition is true}} \ in test_logical_and_true() 215 maybe() // expected-warning {{whenever '||' condition is false}} \ in test_logical_or_false() 229 maybe() // expected-warning {{whenever '||' condition is true}} \ in test_logical_or_true() [all …]
|
/external/Reactive-Extensions/RxCpp/Ix/CPP/src/cpplinq/ |
D | util.hpp | 138 class maybe class 144 maybe() in maybe() function in cpplinq::util::maybe 149 maybe(T value) in maybe() function in cpplinq::util::maybe 156 maybe(const maybe& other) in maybe() function in cpplinq::util::maybe 164 maybe(maybe&& other) in maybe() function in cpplinq::util::maybe 174 ~maybe() in ~maybe() 209 maybe& operator=(const T& other) { in operator =() 212 maybe& operator=(const maybe& other) { in operator =()
|
/external/toybox/lib/ |
D | tty.c | 169 int maybe, i, j; in scan_key() local 177 maybe = 0; in scan_key() 191 } else for (i=0; i<6; i++) if (pos[i]==*scratch) maybe = 1; in scan_key() 198 maybe = 1; in scan_key() 208 if (!maybe) break; in scan_key() 214 if (maybe || timeout_ms != -1) in scan_key() 215 if (!xpoll(&pfd, 1, maybe ? 30 : timeout_ms)) break; in scan_key()
|
/external/v8/src/ |
D | contexts.cc | 243 Maybe<PropertyAttributes> maybe = Nothing<PropertyAttributes>(); in Lookup() local 246 maybe = JSReceiver::GetOwnPropertyAttributes(object, name); in Lookup() 256 maybe = Just(ABSENT); in Lookup() 261 maybe = Nothing<PropertyAttributes>(); in Lookup() 266 maybe = Just(found.FromJust() ? NONE : ABSENT); in Lookup() 270 maybe = JSReceiver::GetPropertyAttributes(object, name); in Lookup() 273 if (maybe.IsNothing()) return Handle<Object>(); in Lookup() 275 *attributes = maybe.FromJust(); in Lookup() 277 if (maybe.FromJust() != ABSENT) { in Lookup()
|
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/ |
D | rx-subscription.hpp | 198 static rxu::maybe<subscription> maybe_lock(weak_state_type w) { in maybe_lock() 201 return rxu::detail::maybe<subscription>{}; in maybe_lock() 203 return rxu::detail::maybe<subscription>{subscription{std::move(strong_subscription)}}; in maybe_lock() 307 rxu::maybe<subscription> maybe_subscription = subscription::maybe_lock(w); in remove() 562 , value(std::make_shared<rxu::detail::maybe<T>>()) in resource() 568 , value(std::make_shared<rxu::detail::maybe<T>>(rxu::detail::maybe<T>(std::move(t)))) in resource() 608 std::shared_ptr<rxu::detail::maybe<T>> value;
|
D | rx-util.hpp | 560 class maybe class 566 maybe() in maybe() function in rxcpp::util::detail::maybe 571 maybe(T value) in maybe() function in rxcpp::util::detail::maybe 578 maybe(const maybe& other) in maybe() function in rxcpp::util::detail::maybe 586 maybe(maybe&& other) in maybe() function in rxcpp::util::detail::maybe 596 ~maybe() in ~maybe() 670 maybe& operator=(const T& other) { in operator =() 674 maybe& operator=(const maybe& other) { in operator =() 685 using detail::maybe;
|
/external/turbine/java/com/google/turbine/parse/ |
D | Parser.java | 230 } while (maybe(Token.COMMA)); in interfaceDeclaration() 275 } while (maybe(Token.COMMA)); in enumDeclaration() 388 } while (maybe(Token.COMMA)); in moduleExports() 405 } while (maybe(Token.COMMA)); in moduleOpens() 428 } while (maybe(Token.COMMA)); in moduleProvides() 456 maybe(Token.COMMA); in enumMembers() 509 } while (maybe(Token.COMMA)); in classDeclaration() 918 while (maybe(Token.LBRACK)) { in extraDims() 941 while (maybe(Token.COMMA)) { in exceptions() 967 if (maybe(Token.ELLIPSIS)) { in formalParam() [all …]
|
/external/deqp-deps/glslang/Test/baseResults/ |
D | preprocessor.cpp_style___FILE__.vert.out | 35 #line 42 "this-is-a-quite-long-name-maybe-i-should-shorten-it" 36 "this-is-a-quite-long-name-maybe-i-should-shorten-it"
|
D | preprocessor.cpp_style_line_directive.vert.err | 12 ERROR: this-is-a-quite-long-name-maybe-i-should-shorten-it:42: '#error' : at this-is-a-quite-long-n…
|
/external/python/cpython3/Lib/ |
D | modulefinder.py | 471 missing, maybe = self.any_missing_maybe() 479 if maybe: 483 for name in maybe: 492 missing, maybe = self.any_missing_maybe() 493 return missing + maybe 505 maybe = [] 527 maybe.append(name) 538 maybe.sort() 539 return missing, maybe
|
/external/python/cpython2/Lib/ |
D | modulefinder.py | 516 missing, maybe = self.any_missing_maybe() 525 if maybe: 529 for name in maybe: 539 missing, maybe = self.any_missing_maybe() 540 return missing + maybe 552 maybe = [] 574 maybe.append(name) 585 maybe.sort() 586 return missing, maybe
|
/external/Reactive-Extensions/RxCpp/Rx/v2/test/sources/ |
D | scope.cpp | 9 rxu::detail::maybe<rx::test::testable_observable<int>> xs; 70 rxu::detail::maybe<rx::test::testable_observable<int>> xs; 134 rxu::detail::maybe<rx::test::testable_observable<int>> xs; 201 rxu::detail::maybe<rx::test::testable_observable<int>> xs; 266 rxu::detail::maybe<rx::test::testable_observable<int>> xs;
|
/external/deqp-deps/glslang/Test/ |
D | preprocessor.cpp_style_line_directive.vert | 35 #line 42 "this-is-a-quite-long-name-maybe-i-should-shorten-it" 36 #error at "this-is-a-quite-long-name-maybe-i-should-shorten-it:42"
|
/external/testng/src/main/java/org/testng/reporters/jq/ |
D | NavigatorPanel.java | 102 maybe(failed, "failed", ", "), in generateResult() 103 maybe(skipped, "skipped", ", "), in generateResult() 104 maybe(passed, "passed", "")); in generateResult() 156 private static String maybe(int count, String s, String sep) { in maybe() method in NavigatorPanel
|
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/ |
D | rx-reduce.hpp | 206 rxu::maybe<T> value; 208 rxu::detail::maybe<double> stage; 253 typedef rxu::maybe<T> seed_type; 274 typedef rxu::maybe<T> seed_type; 293 typedef rxu::maybe<T> seed_type; 312 using seed_type = rxu::maybe<T>; 331 using seed_type = rxu::maybe<T>;
|
/external/python/cpython2/Lib/plat-mac/ |
D | bundlebuilder.py | 688 missing, maybe = mf.any_missing_maybe() 691 maybe = [] 693 self.maybeMissingModules.extend(maybe) 699 maybe = self.maybeMissingModules 701 maybe = [name for name in missing if "." in name] 704 maybe.sort() 705 if maybe: 712 for name in maybe:
|
/external/v8/src/runtime/ |
D | runtime-object.cc | 338 Maybe<bool> maybe = JSReceiver::HasProperty(&it); in RUNTIME_FUNCTION() local 339 if (maybe.IsNothing()) return ReadOnlyRoots(isolate).exception(); in RUNTIME_FUNCTION() 341 if (maybe.FromJust()) return ReadOnlyRoots(isolate).true_value(); in RUNTIME_FUNCTION() 357 Maybe<bool> maybe = JSReceiver::HasProperty(&it); in RUNTIME_FUNCTION() local 358 if (maybe.IsNothing()) return ReadOnlyRoots(isolate).exception(); in RUNTIME_FUNCTION() 360 return isolate->heap()->ToBoolean(maybe.FromJust()); in RUNTIME_FUNCTION() 597 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); in RUNTIME_FUNCTION() local 598 if (maybe.IsNothing()) return ReadOnlyRoots(isolate).exception(); in RUNTIME_FUNCTION() 623 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); in RUNTIME_FUNCTION() local 624 if (maybe.IsNothing()) return ReadOnlyRoots(isolate).exception(); in RUNTIME_FUNCTION() [all …]
|
/external/wpa_supplicant_8/src/utils/ |
D | os_unix.c | 595 int maybe = 0; in testing_fail_alloc() local 601 maybe = 1; in testing_fail_alloc() 610 if (maybe && next) { in testing_fail_alloc() 667 int maybe = 0; in testing_test_fail() local 673 maybe = 1; in testing_test_fail() 682 if (maybe && next) { in testing_test_fail()
|
/external/python/cpython3/Misc/ |
D | coverity_model.c | 52 int maybe; in PyLong_FromLong() local 59 if (maybe) in PyLong_FromLong()
|
/external/virglrenderer/ |
D | git.mk | 313 all: $(srcdir)/.gitignore gitignore-recurse-maybe 316 gitignore-recurse-maybe: 332 .PHONY: gitignore-clean gitignore gitignore-recurse gitignore-recurse-maybe
|
/external/python/cpython2/Lib/test/ |
D | test_modulefinder.py | 252 bad, maybe = mf.any_missing_maybe() 254 self.assertEqual(maybe, maybe_missing)
|
D | test_sort.py | 31 maybe = raw[i] 32 if good is not maybe: 34 print "out of order at index", i, good, maybe
|
/external/harfbuzz_ng/ |
D | git.mk | 381 all: $(srcdir)/.gitignore gitignore-recurse-maybe 384 gitignore-recurse-maybe: 400 .PHONY: gitignore-clean gitignore gitignore-recurse gitignore-recurse-maybe
|
/external/python/cpython3/Lib/test/ |
D | test_modulefinder.py | 272 bad, maybe = mf.any_missing_maybe() 274 self.assertEqual(maybe, maybe_missing)
|
/external/cblas/ |
D | README.version | 2 Version: 3.5 (maybe)
|