Searched refs:isGlobal (Results 1 - 7 of 7) sorted by relevance
/arkcompiler/runtime_core/static_core/abc2program/ |
H A D | abc_file_utils.cpp | 28 bool isGlobal = typeName == g_globalTypeName; in IsSystemTypeName() local 30 return isArrayType || isGlobal; in IsSystemTypeName()
|
H A D | abc2program_key_data.cpp | 77 bool isGlobal = typeName == "_GLOBAL"; in IsSystemType() local 79 return isArrayType || isGlobal; in IsSystemType()
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_regexp.cpp | 618 bool isGlobal = GetFlag(thread, regexp, RegExpParser::FLAG_GLOBAL, isFastPath); in RegExpMatch() local 621 if (!isGlobal) { in RegExpMatch() 1022 bool isGlobal = false; in ReplaceInternal() local 1026 isGlobal = GetOriginalFlag(thread, thisObj, RegExpParser::FLAG_GLOBAL); in ReplaceInternal() 1028 if (isGlobal) { in ReplaceInternal() 1034 isGlobal = GetFlag(thread, thisObj, RegExpParser::FLAG_GLOBAL, isFastPath); in ReplaceInternal() 1037 if (isGlobal) { in ReplaceInternal() 1053 if (isGlobal && !functionalReplace && EcmaStringAccessor(replaceValueHandle).GetLength() == 0) { in ReplaceInternal() 1119 if (!isGlobal) { in ReplaceInternal()
|
H A D | builtins_string.cpp | 663 bool isGlobal = BuiltinsRegExp::GetOriginalFlag(thread, regexp, RegExpParser::FLAG_GLOBAL); in MatchAll() local 664 if (!isGlobal) { in MatchAll()
|
/arkcompiler/ets_frontend/ets2panda/parser/ |
H A D | TypedParser.cpp | 240 bool isGlobal = false; in ParseAmbientExternalModuleDeclaration() local 244 isGlobal = true; in ParseAmbientExternalModuleDeclaration() 270 Allocator(), name, body, ir::TSModuleDeclaration::ConstructorFlags {InAmbientContext(), isGlobal, true}); in ParseAmbientExternalModuleDeclaration()
|
/arkcompiler/runtime_core/static_core/disassembler/ |
H A D | disassembler.cpp | 316 bool isGlobal = typeName == "_GLOBAL"; in IsSystemType() local 318 return isArrayType || isGlobal; in IsSystemType()
|
/arkcompiler/ets_frontend/es2panda/parser/ |
H A D | statementParser.cpp | 367 bool isGlobal = false; in ParseTsAmbientExternalModuleDeclaration() local 371 isGlobal = true; in ParseTsAmbientExternalModuleDeclaration() 399 auto *moduleDecl = AllocNode<ir::TSModuleDeclaration>(localCtx.GetScope(), name, body, isDeclare, isGlobal); in ParseTsAmbientExternalModuleDeclaration()
|
Completed in 23 milliseconds