Lines Matching refs:value
43 * `NullValue` is a singleton enumeration to represent the null value for the
50 * Value used if any message's field encounters a value that is not defined
55 /** Null value. */
62 * Checks to see if the given value is defined by the enum or was not known at
65 BOOL GPBNullValue_IsValidValue(int32_t value);
89 * `Struct` represents a structured data value, consisting of fields
129 * `Value` represents a dynamically typed value which can be either
130 * null, a number, a string, a boolean, a recursive struct value, or a
131 * list of values. A producer of value is expected to set one of that
134 * The JSON representation for `Value` is JSON value.
138 /** The kind of value. */
141 /** Represents a null value. */
144 /** Represents a double value. */
147 /** Represents a string value. */
150 /** Represents a boolean value. */
153 /** Represents a structured value. */
162 * Fetches the raw value of a @c GPBValue's @c nullValue property, even
163 * if the value was not defined by the enum at the time the code was generated.
167 * Sets the raw value of an @c GPBValue's @c nullValue property, allowing
168 * it to be set to a value that was not defined by the enum at the time the code
171 void SetGPBValue_NullValue_RawValue(GPBValue *message, int32_t value);
174 * Clears whatever value was set for the oneof 'kind'.