Home
last modified time | relevance | path

Searched refs:DELIM (Results 1 - 6 of 6) sorted by relevance

/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/call/
H A Dcall.h49 template <char DELIM = '.', typename F>
52 for (const char *p = name.data(); *p == DELIM;) { in WalkQualifiedName()
55 while (*e != '\0' && *e != DELIM) { in WalkQualifiedName()
/arkcompiler/runtime_core/assembler/
H A Dlexer.cpp26 static const std::unordered_map<char, Token::Type> DELIM = {{',', Token::Type::DEL_COMMA}, in FindDelim() local
38 auto iter = DELIM.find(c); in FindDelim()
40 if (iter == DELIM.end()) { in FindDelim()
44 return DELIM.at(c); in FindDelim()
/arkcompiler/runtime_core/static_core/verification/util/tests/
H A Denvironment.cpp39 static const auto DELIM = Par::OfString(";"); // NOLINT(readability-static-accessed-through-instance) in EnvOptions() local
94 static const auto KV_PAIR = ~WS >> NAME >> ~WS >> EQ >> ~WS >> VALUE >> ~WS >> DELIM |= KV_PAIR_HANDLER; in EnvOptions()
/arkcompiler/runtime_core/static_core/assembler/
H A Dlexer.cpp26 static const std::unordered_map<char, Token::Type> DELIM = {{',', Token::Type::DEL_COMMA}, in FindDelim() local
38 auto iter = DELIM.find(c); in FindDelim()
39 if (iter == DELIM.end()) { in FindDelim()
43 return DELIM.at(c); in FindDelim()
/arkcompiler/runtime_core/libark_defect_scan_aux/include/
H A Dabc_file.h94 static constexpr char DELIM = '.'; member in panda::defect_scan_aux::final
/arkcompiler/runtime_core/libark_defect_scan_aux/
H A Dabc_file.cpp810 size_t first_delim_idx = ret_sym.find_first_of(DELIM);
811 size_t last_delim_idx = ret_sym.find_last_of(DELIM);
1366 size_t first_delim_idx = ret_sym.find_first_of(DELIM);
1367 size_t last_delim_idx = ret_sym.find_last_of(DELIM);

Completed in 4 milliseconds