Lines Matching refs:u_

771   void SetBoolean(bool z) { u_.bool_val_ = z; }  in SetBoolean()
772 void SetByte(int8_t b) { u_.byte_val_ = b; } in SetByte()
773 void SetShort(int16_t s) { u_.short_val_ = s; } in SetShort()
774 void SetChar(uint16_t c) { u_.char_val_ = c; } in SetChar()
775 void SetInt(int32_t i) { u_.int_val_ = i; } in SetInt()
776 void SetLong(int64_t l) { u_.long_val_ = l; } in SetLong()
777 void SetFloat(float f) { u_.float_val_ = f; } in SetFloat()
778 void SetDouble(double d) { u_.double_val_ = d; } in SetDouble()
779 void SetStringId(StringId* string_id) { u_.string_val_ = string_id; } in SetStringId()
780 void SetTypeId(TypeId* type_id) { u_.type_val_ = type_id; } in SetTypeId()
781 void SetProtoId(ProtoId* proto_id) { u_.proto_val_ = proto_id; } in SetProtoId()
782 void SetFieldId(FieldId* field_id) { u_.field_val_ = field_id; } in SetFieldId()
783 void SetMethodId(MethodId* method_id) { u_.method_val_ = method_id; } in SetMethodId()
784 void SetMethodHandle(MethodHandleItem* method_handle) { u_.method_handle_val_ = method_handle; } in SetMethodHandle()
789 bool GetBoolean() const { return u_.bool_val_; } in GetBoolean()
790 int8_t GetByte() const { return u_.byte_val_; } in GetByte()
791 int16_t GetShort() const { return u_.short_val_; } in GetShort()
792 uint16_t GetChar() const { return u_.char_val_; } in GetChar()
793 int32_t GetInt() const { return u_.int_val_; } in GetInt()
794 int64_t GetLong() const { return u_.long_val_; } in GetLong()
795 float GetFloat() const { return u_.float_val_; } in GetFloat()
796 double GetDouble() const { return u_.double_val_; } in GetDouble()
797 StringId* GetStringId() const { return u_.string_val_; } in GetStringId()
798 TypeId* GetTypeId() const { return u_.type_val_; } in GetTypeId()
799 ProtoId* GetProtoId() const { return u_.proto_val_; } in GetProtoId()
800 FieldId* GetFieldId() const { return u_.field_val_; } in GetFieldId()
801 MethodId* GetMethodId() const { return u_.method_val_; } in GetMethodId()
802 MethodHandleItem* GetMethodHandle() const { return u_.method_handle_val_; } in GetMethodHandle()
825 } u_; variable