• Home
  • Raw
  • Download

Lines Matching full:bool

66 using QuickFixQueryCallBack = bool (*)(std::string, std::string &, void **, size_t);
112 inline bool IsEmpty() const in IsEmpty()
117 inline bool IsNull() const in IsNull()
214 inline bool IsEmpty() const in IsEmpty()
223 bool IsWeak() const;
309 inline bool IsEmpty() const in IsEmpty()
320 bool IsWeak() const;
366 bool alreadyEscape_ = false;
379 bool is_revert_ = false;
389 bool BooleaValue();
400 bool IsUndefined();
401 bool IsNull();
402 bool IsHole();
403 bool IsTrue();
404 bool IsFalse();
405 bool IsNumber();
406 bool IsBigInt();
407 bool IsInt();
408 bool WithinInt32();
409 bool IsBoolean();
410 bool IsString();
411 bool IsSymbol();
412 bool IsObject();
413 bool IsArray(const EcmaVM *vm);
414 bool IsConstructor();
415 bool IsFunction();
416 bool IsProxy();
417 bool IsPromise();
418 bool IsDataView();
419 bool IsTypedArray();
420 bool IsNativePointer();
421 bool IsDate();
422 bool IsError();
423 bool IsMap();
424 bool IsSet();
425 bool IsWeakRef();
426 bool IsWeakMap();
427 bool IsWeakSet();
428 bool IsRegExp();
429 bool IsArrayIterator();
430 bool IsStringIterator();
431 bool IsSetIterator();
432 bool IsMapIterator();
433 bool IsArrayBuffer();
434 bool IsUint8Array();
435 bool IsInt8Array();
436 bool IsUint8ClampedArray();
437 bool IsInt16Array();
438 bool IsUint16Array();
439 bool IsInt32Array();
440 bool IsUint32Array();
441 bool IsFloat32Array();
442 bool IsFloat64Array();
443 bool IsBigInt64Array();
444 bool IsBigUint64Array();
445 bool IsJSPrimitiveRef();
446 bool IsJSPrimitiveNumber();
447 bool IsJSPrimitiveInt();
448 bool IsJSPrimitiveBoolean();
449 bool IsJSPrimitiveString();
451 bool IsGeneratorObject();
452 bool IsJSPrimitiveSymbol();
454 bool IsArgumentsObject();
455 bool IsGeneratorFunction();
456 bool IsAsyncFunction();
457 bool IsJSLocale();
458 bool IsJSDateTimeFormat();
459 bool IsJSRelativeTimeFormat();
460 bool IsJSIntl();
461 bool IsJSNumberFormat();
462 bool IsJSCollator();
463 bool IsJSPluralRules();
464 bool IsJSListFormat();
465 bool IsAsyncGeneratorFunction();
466 bool IsAsyncGeneratorObject();
468 bool IsModuleNamespaceObject();
469 bool IsSharedArrayBuffer();
471 bool IsStrictEquals(const EcmaVM *vm, Local<JSValueRef> value);
473 bool InstanceOf(const EcmaVM *vm, Local<JSValueRef> value);
510 …static Local<JSValueRef> CreateBigWords(const EcmaVM *vm, bool sign, uint32_t size, const uint64_t…
511 void BigIntToInt64(const EcmaVM *vm, int64_t *cValue, bool *lossless);
512 void BigIntToUint64(const EcmaVM *vm, uint64_t *cValue, bool *lossless);
513 void GetWordsArray(bool* signBit, size_t wordCount, uint64_t* words);
519 static Local<BooleanRef> New(const EcmaVM *vm, bool input);
520 bool Value();
561 PropertyAttribute(Local<JSValueRef> value, bool w, bool e, bool c) in PropertyAttribute()
572 bool IsWritable() const in IsWritable()
576 void SetWritable(bool flag) in SetWritable()
581 bool IsEnumerable() const in IsEnumerable()
585 void SetEnumerable(bool flag) in SetEnumerable()
590 bool IsConfigurable() const in IsConfigurable()
594 void SetConfigurable(bool flag) in SetConfigurable()
599 bool HasWritable() const in HasWritable()
603 bool HasConfigurable() const in HasConfigurable()
607 bool HasEnumerable() const in HasEnumerable()
622 inline bool HasValue() const in HasValue()
637 bool HasGetter() const in HasGetter()
652 bool HasSetter() const in HasSetter()
661 bool writable_ = false;
662 bool enumerable_ = false;
663 bool configurable_ = false;
664 bool hasWritable_ = false;
665 bool hasEnumerable_ = false;
666 bool hasConfigurable_ = false;
678 bool Set(const EcmaVM *vm, void *attach, void *detach);
679 bool Set(const EcmaVM *vm, Local<JSValueRef> key, Local<JSValueRef> value);
680 bool Set(const EcmaVM *vm, uint32_t key, Local<JSValueRef> value);
681 bool SetAccessorProperty(const EcmaVM *vm, Local<JSValueRef> key, Local<FunctionRef> getter,
686 bool GetOwnProperty(const EcmaVM *vm, Local<JSValueRef> key, PropertyAttribute &property);
691 bool DefineProperty(const EcmaVM *vm, Local<JSValueRef> key, PropertyAttribute attribute);
693 bool Has(const EcmaVM *vm, Local<JSValueRef> key);
694 bool Has(const EcmaVM *vm, uint32_t key);
696 bool Delete(const EcmaVM *vm, Local<JSValueRef> key);
697 bool Delete(const EcmaVM *vm, uint32_t key);
712 void *data = nullptr, bool callNapi = false, size_t nativeBindingsize = 0);
714 void *data, bool callNapi = false, size_t nativeBindingsize = 0);
722 bool Inherit(const EcmaVM *vm, Local<FunctionRef> parent);
726 bool IsNative(const EcmaVM *vm);
733 …static bool SetValueAt(const EcmaVM *vm, Local<JSValueRef> obj, uint32_t index, Local<JSValueRef> …
748 bool Resolve(const EcmaVM *vm, Local<JSValueRef> value);
749 bool Reject(const EcmaVM *vm, Local<JSValueRef> reason);
893 bool IsGenerator();
974 void SetEnableArkTools(bool value) { in SetEnableArkTools()
978 void SetEnableCpuprofiler(bool value) { in SetEnableCpuprofiler()
1000 void SetEnableAsmInterpreter(bool value) in SetEnableAsmInterpreter()
1015 bool GetIsWorker() const in GetIsWorker()
1025 void SetEnableAOT(bool value) in SetEnableAOT()
1035 void SetEnableProfile(bool value) in SetEnableProfile()
1104 bool GetEnableArkTools() const in GetEnableArkTools()
1109 bool GetEnableCpuprofiler() const in GetEnableCpuprofiler()
1134 bool GetEnableAsmInterpreter() const in GetEnableAsmInterpreter()
1149 bool GetEnableAOT() const in GetEnableAOT()
1159 bool GetEnableProfile() const in GetEnableProfile()
1174 bool enableArkTools_ {false};
1175 bool enableCpuprofiler_ {false};
1180 bool enableAsmInterpreter_ {true};
1181 bool isWorker_ {false};
1184 bool enableAOT_ {false};
1186 bool enableProfile_ {false};
1224 …static bool Execute(EcmaVM *vm, const std::string &fileName, const std::string &entry, bool needUp…
1225 static bool Execute(EcmaVM *vm, const uint8_t *data, int32_t size, const std::string &entry,
1226 const std::string &filename = "", bool needUpdate = false);
1228 …static bool ExecuteModuleBuffer(EcmaVM *vm, const uint8_t *data, int32_t size, const std::string &…
1229 bool needUpdate = false);
1230 …static bool ExecuteModuleFromBuffer(EcmaVM *vm, const void *data, int32_t size, const std::string …
1245 static bool HasPendingException(const EcmaVM *vm);
1248 …static bool StartDebugger(const char *libraryPath, EcmaVM *vm, bool isDebugMode, int32_t instanceI…
1251 static bool StartDebugger(EcmaVM *vm, bool isDebugMode, int32_t instanceId = 0,
1254 static bool StopDebugger(EcmaVM *vm);
1255 static bool IsMixedDebugEnabled(const EcmaVM *vm);
1276 static bool DeleteWorker(EcmaVM *hostVm, EcmaVM *workerVm);
1278 …static bool LoadPatch(EcmaVM *vm, const std::string &patchFileName, const std::string &baseFileNam…
1279 …static bool LoadPatch(EcmaVM *vm, const std::string &patchFileName, const void *patchBuffer, size_…
1281 static bool UnloadPatch(EcmaVM *vm, const std::string &patchFileName);
1283 …static bool IsQuickFixCausedException(EcmaVM *vm, Local<ObjectRef> exception, const std::string &p…
1286 static bool IsBundle(EcmaVM *vm);
1287 static void SetBundle(EcmaVM *vm, bool value);
1295 static bool InitForConcurrentFunction(EcmaVM *vm, Local<JSValueRef> func);
1296 static bool InitForConcurrentThread(EcmaVM *vm, ConcurrentCallback cb, void *data);
1300 static bool initialize_;
1301 static bool CreateRuntime(const RuntimeOption &option);
1302 static bool DestroyRuntime();
1310 static bool IsWeak(const EcmaVM *vm, uintptr_t localAddress);
1480 bool CopyableGlobal<T>::IsWeak() const in IsWeak()
1524 bool Global<T>::IsWeak() const in IsWeak()