HomeSort by relevance Sort by last modified time
    Searched refs:AstValue (Results 1 - 11 of 11) sorted by null

  /external/v8/src/ast/
ast-value-factory.cc 171 bool AstValue::IsPropertyName() const {
180 bool AstValue::BooleanValue() const {
209 void AstValue::Internalize(Isolate* isolate) {
308 for (AstValue* current = values_; current != nullptr;) {
309 AstValue* next = current->next();
318 const AstValue* AstValueFactory::NewString(const AstRawString* string) {
319 AstValue* value = new (zone_) AstValue(string);
324 const AstValue* AstValueFactory::NewSymbol(AstSymbol symbol) {
325 AstValue* value = new (zone_) AstValue(symbol)
    [all...]
ast-value-factory.h 38 // AstString, AstValue and AstValueFactory are for storing strings and values
159 // AstValue is either a string, a symbol, a number, a string array, a boolean,
161 class AstValue : public ZoneObject {
238 AstValue* next() const { return next_; }
239 void set_next(AstValue* next) { next_ = next; }
258 explicit AstValue(const AstRawString* s) : type_(STRING), next_(nullptr) {
262 explicit AstValue(AstSymbol symbol) : type_(SYMBOL), next_(nullptr) {
266 explicit AstValue(double n, bool with_dot) : next_(nullptr) {
277 AstValue(Type t, int i) : type_(t), next_(nullptr) {
282 explicit AstValue(bool b) : type_(BOOLEAN), next_(nullptr) { bool_ = b;
    [all...]
ast.cc 569 const AstValue* key = property->key()->AsLiteral()->raw_value();
    [all...]
ast.h     [all...]
  /external/v8/src/interpreter/
constant-array-builder.h 18 class AstValue;
62 size_t Insert(const AstValue* heap_number);
99 explicit Entry(const AstValue* heap_number)
127 const AstValue* heap_number_;
bytecode-array-builder.h 82 BytecodeArrayBuilder& LoadLiteral(const AstValue* ast_value);
367 size_t GetConstantPoolEntry(const AstValue* heap_number);
constant-array-builder.cc 187 size_t ConstantArrayBuilder::Insert(const AstValue* heap_number) {
bytecode-array-builder.cc 407 const AstValue* ast_value) {
    [all...]
bytecode-generator.cc     [all...]
  /external/guice/extensions/struts2/lib/
jsp-2.1.jar 
  /external/v8/src/parsing/
parser.cc 320 const AstValue* literal = expression->AsLiteral()->raw_value();
    [all...]

Completed in 473 milliseconds