Home
last modified time | relevance | path

Searched refs:AstValue (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/ast/
Dast-value-factory.cc139 bool AstValue::IsPropertyName() const { in IsPropertyName()
148 bool AstValue::BooleanValue() const { in BooleanValue()
177 void AstValue::Internalize(Isolate* isolate) { in Internalize()
305 for (AstValue* current = values_; current != nullptr;) { in Internalize()
306 AstValue* next = current->next(); in Internalize()
315 const AstValue* AstValueFactory::NewString(const AstRawString* string) { in NewString()
316 AstValue* value = new (zone_) AstValue(string); in NewString()
322 const AstValue* AstValueFactory::NewSymbol(const char* name) { in NewSymbol()
323 AstValue* value = new (zone_) AstValue(name); in NewSymbol()
328 const AstValue* AstValueFactory::NewNumber(double number, bool with_dot) { in NewNumber()
[all …]
Dast-value-factory.h155 class AstValue : public ZoneObject {
214 AstValue* next() const { return next_; } in next()
215 void set_next(AstValue* next) { next_ = next; } in set_next()
234 explicit AstValue(const AstRawString* s) : type_(STRING), next_(nullptr) { in AstValue() function
238 explicit AstValue(const char* name) : type_(SYMBOL), next_(nullptr) { in AstValue() function
242 explicit AstValue(double n, bool with_dot) : next_(nullptr) { in AstValue() function
253 AstValue(Type t, int i) : type_(t), next_(nullptr) { in AstValue() function
258 explicit AstValue(bool b) : type_(BOOLEAN), next_(nullptr) { bool_ = b; } in AstValue() function
260 explicit AstValue(Type t) : type_(t), next_(nullptr) { in AstValue() function
270 AstValue* next_; // if !internalized
[all …]
Dast.cc949 const AstValue* x = static_cast<Literal*>(literal1)->raw_value(); in Match()
950 const AstValue* y = static_cast<Literal*>(literal2)->raw_value(); in Match()
Dast.h1254 const AstValue* raw_value() const { return value_; } in raw_value()
1269 Literal(const AstValue* value, int position) in Literal()
1275 const AstValue* value_;
/external/guice/extensions/struts2/lib/
Djsp-2.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...
/external/v8/src/interpreter/
Dbytecode-generator.cc1544 const AstValue* raw_value = expr->raw_value(); in VisitLiteral()
/external/v8/src/parsing/
Dparser.cc390 const AstValue* literal = expression->AsLiteral()->raw_value(); in BuildUnaryExpression()