OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RegExpAtom
(Results
1 - 4
of
4
) sorted by null
/external/v8/src/regexp/
regexp-ast.h
153
static TextElement Atom(
RegExpAtom
* atom);
164
RegExpAtom
* atom() const {
166
return reinterpret_cast<
RegExpAtom
*>(tree());
318
class
RegExpAtom
final : public RegExpTree {
320
explicit
RegExpAtom
(Vector<const uc16> data) : data_(data) {}
323
RegExpAtom
* AsAtom() override;
regexp-parser.cc
1031
RegExpTree* atom = new (zone())
RegExpAtom
(characters_->ToConstVector());
1070
RegExpAtom
* atom = new (zone())
RegExpAtom
(surrogate_pair.ToConstVector());
[
all
...]
regexp-ast.cc
220
void* RegExpUnparser::VisitAtom(
RegExpAtom
* that, void* data) {
jsregexp.cc
164
RegExpAtom
* atom = parse_result.tree->AsAtom();
[
all
...]
Completed in 61 milliseconds