Lines Matching defs:set
537 // A struct is a simple object a set of object-valued fields. Including an
582 // instance types. The high-order bit (bit 7) is set if the object is not a
588 // Bit 6 indicates that the object is an internalized string (if set) or not.
1097 V(kDefaultNaNModeNotSet, "Default NaN mode not set") \
1914 // Indicates whether a property should be set or (re)defined. Setting of a
2061 DECL_ACCESSORS(properties, FixedArray) // Get and set fast properties.
2069 // corrensponds to a set of object representations of elements that
2299 // otherwise returns the value set for the key.
2363 // Empty handle is returned if the element cannot be set to the given value.
2456 // map and the ElementsKind set.
2511 // Set the object's prototype (only JSReceiver and null are allowed values).
2729 // has a setter, invoke it and set '*done' to true. If it is found and is
2730 // read-only, reject and set '*done' to true. Otherwise, set '*done' to
2880 // Set the hidden property backing store to either a hash table or
2921 inline void set(int index, Object* value);
2925 inline void set(int index, Smi* value);
2927 inline void set(int index, Object* value, WriteBarrierMode mode);
2996 // Set operation on FixedArray without using write barriers. Can
3002 // Set operation on FixedArray without incremental write barrier. Can
3023 inline void set(int index, double value);
3092 inline void set(int index, Object* value);
3093 inline void set(int index, int64_t value);
3094 inline void set(int index, double value);
3095 inline void set(int index, int32_t value);
3097 // Set up initial state.
3216 set(kEnumCacheIndex, array->get(kEnumCacheIndex));
3276 inline void Set(int descriptor_number,
3279 inline void Set(int descriptor_number, Descriptor* desc);
3618 set(kNumberOfElementsIndex, Smi::FromInt(nof));
3623 set(kNumberOfDeletedElementsIndex, Smi::FromInt(nod));
3633 set(kCapacityIndex, Smi::FromInt(capacity));
3721 // pointer *s is set to the string found.
3807 // Set the value for entry.
3809 this->set(HashTable<Shape, Key>::EntryToIndex(entry) + 1, value);
3819 // Set the details for entry.
3821 this->set(HashTable<Shape, Key>::EntryToIndex(entry) + 2, value.AsSmi());
3854 this->set(kNextEnumerationIndexIndex, Smi::FromInt(index));
3993 // Set an existing entry or add a new one if needed.
3995 MUST_USE_RESULT static Handle<SeededNumberDictionary> Set(
4001 MUST_USE_RESULT MaybeObject* Set(uint32_t key,
4039 // Set an existing entry or add a new one if needed.
4041 MUST_USE_RESULT static Handle<UnseededNumberDictionary> Set(
4046 MUST_USE_RESULT MaybeObject* Set(uint32_t key, Object* value);
4072 // Looks up whether the given key is part of this hash set.
4085 // Adds the given key to this hash set.
4089 // Removes the given key from this hash set.
4172 set(EntryToIndex(i), value);
4173 set(EntryToValueIndex(i), value);
4343 // 1. A set of properties of the scope
4356 void Set##name(int value) { \
4357 set(k##name, Smi::FromInt(value)); \
4461 inline void set(int index, byte value);
4588 inline void set(int index, uint8_t value);
4611 inline void set(int index, int8_t value);
4638 inline void set(int index, uint8_t value);
4665 inline void set(int index, int16_t value);
4692 inline void set(int index, uint16_t value);
4719 inline void set(int index, int32_t value);
4746 inline void set(int index, uint32_t value);
4773 inline void set(int index, float value);
4800 inline void set(int index, double value);
4851 void Set##name(type* value) { \
4852 set(k##name##Index, value); \
4868 void Set##name(int i, type* value) { \
4869 set(IndexForEntry(i) + k##name##Offset, value); \
4928 set(index * 2, Smi::FromInt(id.ToInt()));
4932 void SetPcAndState(int index, Smi* offset) { set(1 + index * 2, offset); }
5181 // been compiled with IsOptimizing set to true.
5709 // property is set to a value that is not a JSObject, the prototype
5979 cache->set(kProtoTransitionNumberOfEntriesOffset, Smi::FromInt(value));
6149 // Set all map transitions from this map to dead maps to null. Also clear
6160 // If |mode| is set to CLEAR_INOBJECT_PROPERTIES, |other| is treated as if
6167 // |safe_to_add_transitions| is set to false if adding transitions is not
6237 // When you set the prototype of an object using the __proto__ accessor you
6241 // prototype is set, rather than creating a new map every time. The
6442 // [is_shared_cross_origin]: An opaque boolean set by the embedder via
6490 // on the object (the one the id is set for), and a label.
6600 // Set the formal parameter count so the function code will be
6830 // "anonymous". We don't set the name itself so that the system does not
6838 // Indicates that the function is anonymous (the name field can be set
6930 // Set max_length to -1 for unlimited length.
7001 // word is not set and thus this word cannot be treated as pointer
7325 // Get and set the prototype property on a JSFunction. If the
7326 // function has an initial map the prototype is set on the initial
7350 // set to 'value', but there is no guarantees on instances created
7771 // Set implementation data after the object has been prepared.
8419 // Get and set the hash field of the name.
8594 // Get and set the length of the string.
8615 // Get and set individual two byte chars in the string.
8616 inline void Set(int index, uint16_t value);
8847 // Compute and set the hash code.
9457 // that is read-only, throw. In all these cases set '*done' to true,
9458 // otherwise set it to false.
9577 // [set]: the backing hash set containing keys.
9845 // is set to a smi. This matches the set function on FixedArray.
9865 // Set the content of the array to the content of storage.
10083 // a new value is added to the local object when the property is set.
10111 // * the hole: an accessor which has not been set
10134 void set(AccessorComponent component, Object* value) {
10145 // Set both components, skipping arguments which are a JavaScript null.
10292 // If the bit is set, object instances created by this function
10419 // Set a break point.
10456 // The BreakPointInfo class holds information for break points set in a
10474 // Set a break point.
10618 static inline Smi* set(Smi* smi, int bit_position, bool v) {
10619 return Smi::FromInt(set(smi->value(), bit_position, v));
10622 static inline int set(int value, int bit_position, bool v) {