Home | History | Annotate | Download | only in objectivec

Lines Matching refs:extension

112 /// @param extensionRegistry The extension registry to use to look up extensions.
130 /// @param extensionRegistry The extension registry to use to look up extensions.
150 /// @param extensionRegistry The extension registry to use to look up extensions.
182 /// @param extensionRegistry The extension registry to use to look up extensions.
199 /// @param extensionRegistry The extension registry to use to look up extensions.
261 /// Test to see if the given extension is set on the message.
262 - (BOOL)hasExtension:(GPBExtensionDescriptor *)extension;
264 /// Fetches the given extension's value for this message.
267 /// repeated fields. If the extension is a Message one will be auto created for you
269 - (nullable id)getExtension:(GPBExtensionDescriptor *)extension;
271 /// Sets the given extension's value for this message. This is only for single
275 - (void)setExtension:(GPBExtensionDescriptor *)extension value:(nullable id)value;
277 /// Adds the given value to the extension for this message. This is only for
280 - (void)addExtension:(GPBExtensionDescriptor *)extension value:(id)value;
282 /// Replaces the given value at an index for the extension on this message. This
285 - (void)setExtension:(GPBExtensionDescriptor *)extension
289 /// Clears the given extension for this message.
290 - (void)clearExtension:(GPBExtensionDescriptor *)extension;