Lines Matching refs:name
429 #define FIELD_ACCESSOR(type, name) \
430 inline void set_##name(type v) { name##_ = v; } \
431 inline type name() const { return name##_; }
520 #define THREAD_LOCAL_TOP_ACCESSOR(type, name) \
521 inline void set_##name(type v) { thread_local_top()->name##_ = v; } \
522 inline type name() const { return thread_local_top()->name##_; }
524 #define THREAD_LOCAL_TOP_ADDRESS(type, name) \
525 type* name##_address() { return &thread_local_top()->name##_; }
922 // Walks the JS stack to find the first frame with a script name or
1063 #define GLOBAL_ACCESSOR(type, name, initialvalue) \
1064 inline type name() const { \
1065 DCHECK(OFFSET_OF(Isolate, name##_) == name##_debug_offset_); \
1066 return name##_; \
1068 inline void set_##name(type value) { \
1069 DCHECK(OFFSET_OF(Isolate, name##_) == name##_debug_offset_); \
1070 name##_ = value; \
1086 #define GLOBAL_ARRAY_ACCESSOR(type, name, length) \
1087 inline type* name() { \
1088 DCHECK(OFFSET_OF(Isolate, name##_) == name##_debug_offset_); \
1089 return &(name##_)[0]; \
1094 #define NATIVE_CONTEXT_FIELD_ACCESSOR(index, type, name) \
1095 inline Handle<type> name(); \
1096 inline bool is_##name(type value);
1585 Handle<Symbol> SymbolFor(RootIndex dictionary_index, Handle<String> name,
2244 #define GLOBAL_BACKING_STORE(type, name, initialvalue) type name##_;
2248 #define GLOBAL_ARRAY_BACKING_STORE(type, name, length) type name##_[length];
2256 #define ISOLATE_FIELD_OFFSET(type, name, ignored) \
2257 static const intptr_t name##_debug_offset_;