HomeSort by relevance Sort by last modified time
    Searched defs:maybe (Results 26 - 50 of 58) sorted by null

12 3

  /external/v8/src/runtime/
runtime-scopes.cc 71 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); local
72 if (!maybe.IsJust()) return isolate->heap()->exception();
75 PropertyAttributes old_attributes = maybe.FromJust();
687 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); local
688 if (!maybe.IsJust()) return isolate->heap()->exception();
689 if ((maybe.FromJust() & DONT_DELETE) != 0) {
835 Maybe<bool> result = JSReceiver::DeleteProperty(object, name);
    [all...]
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/test/
QueryTransactionTest.java 65 import io.reactivex.Maybe;
159 public void maybe() { method in class:QueryTransactionTest
164 Maybe<List<Entity1>> listMaybe = mDao.maybe();
271 private <T> TestObserver<T> observe(final Maybe<T> maybe) {
273 maybe.observeOn(Schedulers.from(ArchTaskExecutor.getMainThreadExecutor()))
350 Maybe<List<Entity1>> maybe(); method in interface:QueryTransactionTest.Entity1Dao
385 Maybe<List<Entity1>> maybe() method in interface:QueryTransactionTest.EntityDao
425 Maybe<List<Entity1>> maybe(); method in interface:QueryTransactionTest.TransactionDao
    [all...]
  /external/turbine/java/com/google/turbine/parse/
Parser.java 198 } while (maybe(Token.COMMA));
241 } while (maybe(Token.COMMA));
282 maybe(Token.COMMA);
334 } while (maybe(Token.COMMA));
736 while (maybe(Token.LBRACK)) {
759 while (maybe(Token.COMMA)) {
785 if (maybe(Token.ELLIPSIS)) {
882 } while (maybe(Token.AND));
907 } while (maybe(Token.DOT));
965 } while (maybe(Token.COMMA))
1172 private boolean maybe(Token kind) { method in class:Parser
    [all...]
  /external/v8/src/
api-natives.cc 102 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); local
103 DCHECK(maybe.IsJust());
contexts.cc 171 static Maybe<bool> UnscopableLookup(LookupIterator* it) {
174 Maybe<bool> found = JSReceiver::HasProperty(it);
263 Maybe<PropertyAttributes> maybe = Nothing<PropertyAttributes>(); local
266 maybe = JSReceiver::GetOwnPropertyAttributes(object, name);
276 maybe = Just(ABSENT);
279 Maybe<bool> found = UnscopableLookup(&it);
281 maybe = Nothing<PropertyAttributes>();
283 // Luckily, consumers of |maybe| only care whether the property
286 maybe = Just(found.FromJust() ? NONE : ABSENT)
    [all...]
api.cc 2210 auto maybe = CompileUnboundInternal(isolate, source, options); local
2233 auto maybe = CompileUnboundInternal(isolate, source, kNoCompileOptions); local
2643 Maybe<bool> maybe = i::JSReceiver::HasProperty(obj, name); local
3074 auto maybe = source->IsSeqOneByteString() local
3089 auto maybe = source->IsSeqOneByteString() local
3111 i::Handle<i::Object> maybe; local
4639 Maybe<bool> maybe = Nothing<bool>(); local
4687 auto maybe = i::JSReceiver::HasElement(self, index); local
    [all...]
objects.cc 452 // TODO(bmeurer): Maybe we should introduce a marker interface Number,
488 Maybe<ComparisonResult> Object::Compare(Handle<Object> x, Handle<Object> y) {
508 Maybe<bool> Object::Equals(Handle<Object> x, Handle<Object> y) {
794 Maybe<bool> result = JSReceiver::HasInPrototypeChain(
842 Maybe<bool> Object::IsArray(Handle<Object> object) {
5352 Maybe<PropertyAttributes> maybe = GetPropertyAttributes(&it); local
6115 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); local
7014 Maybe<PropertyAttributes> maybe = JSObject::GetPropertyAttributes(it); local
    [all...]
  /external/v8/src/builtins/
builtins-object.cc 118 Maybe<PropertyAttributes> maybe = local
120 if (!maybe.IsJust()) return isolate->heap()->exception();
121 if (maybe.FromJust() == ABSENT) return isolate->heap()->false_value();
122 return isolate->heap()->ToBoolean((maybe.FromJust() & DONT_ENUM) == 0);
453 Maybe<bool> success = JSReceiver::DefineOwnProperty(
490 Maybe<bool> found = JSProxy::GetOwnPropertyDescriptor(
687 Maybe<bool> found =
737 Maybe<bool> result =
749 Maybe<bool> result = object->IsJSReceiver(
    [all...]
  /external/v8/src/wasm/
wasm-js.cc 44 Maybe<bool> has_brand = i::JSObject::HasOwnProperty(object, sym);
382 v8::MaybeLocal<v8::Value> maybe = object->Get(context, property); local
384 if (maybe.ToLocal(&value)) {
419 v8::MaybeLocal<v8::Value> maybe = local
422 if (!maybe.ToLocal(&value)) return;
442 Maybe<bool> has_maximum = descriptor->Has(context, maximum_key);
480 Maybe<bool> has_maximum = descriptor->Has(context, maximum_key);
    [all...]
  /external/wpa_supplicant_8/src/utils/
os_unix.c 587 int maybe = 0; local
593 maybe = 1;
602 if (maybe && next) {
659 int maybe = 0; local
665 maybe = 1;
674 if (maybe && next) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/
pydoc.py 721 def maybe(self): member in class:.docclass.HorizontalRule
730 hr.maybe()
740 hr.maybe()
751 hr.maybe()
760 hr.maybe()
1152 def maybe(self): member in class:TextDoc.docclass.HorizontalRule
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/
pydoc.py 772 def maybe(self): member in class:.docclass.HorizontalRule
781 hr.maybe()
791 hr.maybe()
1215 def maybe(self): member in class:TextDoc.docclass.HorizontalRule
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
pydoc.py 721 def maybe(self): member in class:.docclass.HorizontalRule
730 hr.maybe()
740 hr.maybe()
751 hr.maybe()
760 hr.maybe()
1152 def maybe(self): member in class:TextDoc.docclass.HorizontalRule
    [all...]
  /external/python/cpython2/Lib/
pydoc.py 760 def maybe(self): member in class:.docclass.HorizontalRule
769 hr.maybe()
779 hr.maybe()
797 hr.maybe()
806 hr.maybe()
1203 def maybe(self): member in class:TextDoc.docclass.HorizontalRule
    [all...]
  /external/python/cpython3/Lib/
pydoc.py 782 def maybe(self): member in class:.docclass.HorizontalRule
791 hr.maybe()
801 hr.maybe()
1232 def maybe(self): member in class:TextDoc.docclass.HorizontalRule
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
pydoc.py 721 def maybe(self): member in class:.docclass.HorizontalRule
730 hr.maybe()
740 hr.maybe()
758 hr.maybe()
767 hr.maybe()
1164 def maybe(self): member in class:TextDoc.docclass.HorizontalRule
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
pydoc.py 721 def maybe(self): member in class:.docclass.HorizontalRule
730 hr.maybe()
740 hr.maybe()
758 hr.maybe()
767 hr.maybe()
1164 def maybe(self): member in class:TextDoc.docclass.HorizontalRule
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pydoc.py 721 def maybe(self): member in class:.docclass.HorizontalRule
730 hr.maybe()
740 hr.maybe()
758 hr.maybe()
767 hr.maybe()
1164 def maybe(self): member in class:TextDoc.docclass.HorizontalRule
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pydoc.py 721 def maybe(self): member in class:.docclass.HorizontalRule
730 hr.maybe()
740 hr.maybe()
758 hr.maybe()
767 hr.maybe()
1164 def maybe(self): member in class:TextDoc.docclass.HorizontalRule
    [all...]
  /prebuilts/tools/common/m2/repository/io/reactivex/rxjava2/rxjava/2.0.6/
rxjava-2.0.6.jar 
  /external/valgrind/VEX/priv/
host_arm64_isel.c 1207 ARM64RIL* maybe = NULL; local
    [all...]
  /external/v8/src/debug/
debug.cc 1918 Maybe<bool> maybe = JSReceiver::HasProperty(&it); local
    [all...]
  /external/annotation-tools/annotation-file-utilities/lib/
plume-core.jar 
  /external/annotation-tools/asmx/
javassist.jar 
  /external/guice/extensions/persist/lib/
javassist.jar 

Completed in 835 milliseconds

12 3