Home
last modified time | relevance | path

Searched refs:IsGlobal (Results 1 – 13 of 13) sorted by relevance

/third_party/node/deps/v8/src/asmjs/
Dasm-scanner.h80 bool IsGlobal() const { return IsGlobal(Token()); } in IsGlobal() function
82 static bool IsGlobal(token_t token) { return token >= kGlobalsStart; } in IsGlobal() function
90 DCHECK(IsGlobal(token)); in GlobalIndex()
Dasm-parser.cc201 const bool is_global = AsmJsScanner::IsGlobal(token); in GetVarInfo()
391 if (!scanner_.IsGlobal()) { in ValidateModuleParameters()
397 if (!scanner_.IsGlobal()) { in ValidateModuleParameters()
406 if (!scanner_.IsGlobal()) { in ValidateModuleParameters()
442 if (!scanner_.IsGlobal()) { in ValidateModuleVar()
489 } else if (scanner_.IsGlobal()) { in ValidateModuleVar()
637 if (!scanner_.IsGlobal() && !scanner_.IsLocal()) { in ValidateExport()
642 if (!scanner_.IsGlobal()) { in ValidateExport()
659 if (!scanner_.IsGlobal()) { in ValidateExport()
674 if (!scanner_.IsGlobal()) { in ValidateFunctionTable()
[all …]
/third_party/cef/tests/ceftests/
Drequest_context_unittest.cc17 EXPECT_TRUE(context1->IsGlobal()); in TEST()
23 EXPECT_TRUE(context2->IsGlobal()); in TEST()
49 EXPECT_FALSE(context1->IsGlobal()); in TEST()
57 EXPECT_FALSE(context2->IsGlobal()); in TEST()
85 EXPECT_FALSE(context1->IsGlobal()); in TEST()
93 EXPECT_FALSE(context2->IsGlobal()); in TEST()
120 EXPECT_TRUE(context1->IsGlobal()); in TEST()
128 EXPECT_TRUE(context2->IsGlobal()); in TEST()
148 EXPECT_FALSE(context1->IsGlobal()); in TEST()
155 EXPECT_FALSE(context2->IsGlobal()); in TEST()
[all …]
/third_party/cef/libcef_dll/ctocpp/
Drequest_context_ctocpp.h45 bool IsGlobal() override;
Drequest_context_ctocpp.cc123 NO_SANITIZE("cfi-icall") bool CefRequestContextCToCpp::IsGlobal() { in IsGlobal() function in CefRequestContextCToCpp
/third_party/cef/include/
Dcef_request_context.h132 virtual bool IsGlobal() = 0;
/third_party/cef/libcef/browser/
Drequest_context_impl.h64 bool IsGlobal() override;
Drequest_context_impl.cc324 bool CefRequestContextImpl::IsGlobal() { in IsGlobal() function in CefRequestContextImpl
581 (config.other && config.other->IsGlobal() && !config.handler)) { in GetOrCreateRequestContext()
/third_party/cef/libcef_dll/cpptoc/
Drequest_context_cpptoc.cc138 bool _retval = CefRequestContextCppToC::Get(self)->IsGlobal(); in request_context_is_global()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/
DItaniumDemangle.h1740 bool IsGlobal; // ::operator new ? variable
1746 IsGlobal(IsGlobal_), IsArray(IsArray_) {} in NewExpr()
1749 F(ExprList, Type, InitList, IsGlobal, IsArray); in match()
1753 if (IsGlobal) in printLeft()
1776 bool IsGlobal; variable
1781 : Node(KDeleteExpr), Op(Op_), IsGlobal(IsGlobal_), IsArray(IsArray_) {} in DeleteExpr()
1783 template<typename Fn> void match(Fn F) const { F(Op, IsGlobal, IsArray); } in match()
1786 if (IsGlobal) in printLeft()
/third_party/node/deps/v8/src/builtins/
Dregexp-replace.tq223 // if (IsGlobal(receiver)) {
/third_party/node/deps/v8/src/regexp/
Dregexp.cc986 if (IsGlobal(flags)) { in Compile()
1051 DCHECK(IsGlobal(JSRegExp::AsRegExpFlags(regexp->flags()))); in RegExpGlobalCache()
Dregexp-compiler.cc3945 } else if (IsUnicode(flags) && (IsGlobal(flags) || IsSticky(flags))) { in PreprocessRegExp()