Lines Matching defs:extension
44 /// Gets the value of the specified extension
46 TValue GetExtension<TValue>(Extension<T, TValue> extension);
49 /// Gets the value of the specified repeated extension or null if the extension isn't registered in this set.
52 RepeatedField<TValue> GetExtension<TValue>(RepeatedExtension<T, TValue> extension);
55 /// Gets the value of the specified repeated extension, registering it if it hasn't already been registered.
57 RepeatedField<TValue> GetOrInitializeExtension<TValue>(RepeatedExtension<T, TValue> extension);
60 /// Sets the value of the specified extension
62 void SetExtension<TValue>(Extension<T, TValue> extension, TValue value);
65 /// Gets whether the value of the specified extension is set
67 bool HasExtension<TValue>(Extension<T, TValue> extension);
70 /// Clears the value of the specified extension
72 void ClearExtension<TValue>(Extension<T, TValue> extension);
75 /// Clears the value of the specified repeated extension
77 void ClearExtension<TValue>(RepeatedExtension<T, TValue> extension);