Home
last modified time | relevance | path

Searched refs:GPBStringBoolDictionary (Results 1 – 5 of 5) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/objectivec/Tests/
DGPBDictionaryTests+String.m1522 GPBStringBoolDictionary *dict = [[GPBStringBoolDictionary alloc] init];
1534 GPBStringBoolDictionary *dict = [GPBStringBoolDictionary dictionaryWithBool:YES forKey:@"foo"];
1552 GPBStringBoolDictionary *dict =
1553 [[GPBStringBoolDictionary alloc] initWithBools:kValues
1610 GPBStringBoolDictionary *dict1 =
1611 [[GPBStringBoolDictionary alloc] initWithBools:kValues1
1615 GPBStringBoolDictionary *dict1prime =
1616 [[GPBStringBoolDictionary alloc] initWithBools:kValues1
1620 GPBStringBoolDictionary *dict2 =
1621 [[GPBStringBoolDictionary alloc] initWithBools:kValues2
[all …]
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/objectivec/
DGPBDictionary_PackagePrivate.h425 @interface GPBStringBoolDictionary () <GPBDictionaryInternalsProtocol> { in GPBStringBoolDictionary() function
DGPBDictionary.h2024 @interface GPBStringBoolDictionary : NSObject <NSCopying>
2034 + (instancetype)dictionaryWithDictionary:(GPBStringBoolDictionary *)dictionary;
2040 - (instancetype)initWithDictionary:(GPBStringBoolDictionary *)dictionary;
2050 - (void)addEntriesFromDictionary:(GPBStringBoolDictionary *)otherDictionary;
DGPBDictionary.m10278 @implementation GPBStringBoolDictionary { implementation
10291 return [[(GPBStringBoolDictionary*)[self alloc] initWithBools:&value
10301 return [[(GPBStringBoolDictionary*)[self alloc] initWithBools:values
10306 + (instancetype)dictionaryWithDictionary:(GPBStringBoolDictionary *)dictionary {
10309 return [[(GPBStringBoolDictionary*)[self alloc] initWithDictionary:dictionary] autorelease]; argument
10339 - (instancetype)initWithDictionary:(GPBStringBoolDictionary *)dictionary { argument
10363 return [[GPBStringBoolDictionary allocWithZone:zone] initWithDictionary:self];
10370 if (![other isKindOfClass:[GPBStringBoolDictionary class]]) {
10373 GPBStringBoolDictionary *otherDictionary = other;
10461 - (void)addEntriesFromDictionary:(GPBStringBoolDictionary *)otherDictionary { argument
DGPBMessage.m477 result = [[GPBStringBoolDictionary alloc] init];