Home
last modified time | relevance | path

Searched refs:aValue (Results 1 – 25 of 37) sorted by relevance

12

/external/hamcrest/hamcrest-library/src/test/java/org/hamcrest/beans/
DSamePropertyValuesAsTest.java10 private static final Value aValue = new Value("expected"); field in SamePropertyValuesAsTest
11 private static final ExampleBean expectedBean = new ExampleBean("same", 1, aValue);
12 private static final ExampleBean actualBean = new ExampleBean("same", 1, aValue);
26 samePropertyValuesAs((Object)aValue), actualBean); in testReportsMismatchWhenActualTypeIsNotAssignableToExpectedType()
31 samePropertyValuesAs(expectedBean), new ExampleBean("different", 1, aValue)); in testReportsMismatchOnFirstPropertyDifference()
33 samePropertyValuesAs(expectedBean), new ExampleBean("same", 2, aValue)); in testReportsMismatchOnFirstPropertyDifference()
40 samePropertyValuesAs(expectedBean), new SubBeanWithNoExtraProperties("same", 1, aValue)); in testMatchesBeansWithInheritanceButNoExtraProperties()
45 samePropertyValuesAs(expectedBean), new SubBeanWithExtraProperty("same", 1, aValue)); in testRejectsSubTypeThatHasExtraProperties()
/external/clang/test/SemaTemplate/
Dattributes.cpp47 inline T WBCFRetain(T aValue) { return aValue ? (T)CFRetain(aValue) : (T)0; } in WBCFRetain() argument
53 inline void WBCFRelease(__attribute__((cf_consumed)) T aValue) { if(aValue) CFRelease(aValue); } in WBCFRelease() argument
/external/llvm-project/clang/test/SemaTemplate/
Dattributes.cpp48 inline T WBCFRetain(T aValue) { return aValue ? (T)CFRetain(aValue) : (T)0; } in WBCFRetain() argument
54 inline void WBCFRelease(__attribute__((cf_consumed)) T aValue) { if(aValue) CFRelease(aValue); } in WBCFRelease() argument
/external/antlr/runtime/ObjC/Framework/
DEntry.m12 + (id) newEntry:(int)aHash key:(NSString *)aKey value:(id)aValue next:(HTEntry *)aNext
14 return [[HTEntry alloc] init:aHash key:aKey value:aValue next:aNext];
17 - (id) init:(int)aHash key:(NSString *)aKey value:(id)aValue next:(HTEntry *)aNext
23 value = aValue;
48 - (void) setValue:(id)aValue
50 if (aValue == nil)
53 value = aValue;
DIntArray.m133 - (void)push:(NSInteger)aValue
135 [self addInteger:aValue];
149 - (void)insertInteger:(NSInteger)aValue AtIndex:(NSUInteger)anIndex
151 [self replaceInteger:aValue AtIndex:anIndex];
167 - (void)replaceInteger:(NSInteger)aValue AtIndex:(NSUInteger)anIndex
175 intBuffer[anIndex] = aValue;
DLinkedHashMap.m15 - (id) newEntry:(NSInteger)aHash key:(NSString *)aKey value:(id)aValue next:(LHMEntry *)aNext
17 return [[LHMEntry alloc] init:aHash key:aKey value:aValue next:aNext];
20 - (id) init:(NSInteger)aHash key:(NSString *)aKey value:(id)aValue next:(LHMEntry *)aNext
22 self = [super init:aHash key:aKey value:aValue next:aNext];
439 - (void) addEntry:(NSInteger)aHash key:(NSString *)aKey value:(id)aValue bucketIndex:(NSInteger)aBu…
441 [self createEntry:aHash key:aKey value:aValue bucketIndex:aBucketIndex];
457 - (void) createEntry:(NSInteger)aHash key:(NSString *)aKey value:(id)aValue bucketIndex:(NSInteger)…
460 LHMEntry *e = [[[LHMEntry alloc] init:aHash key:aKey value:aValue next:old] retain];
DIntArray.h60 - (void)replaceInteger:(NSInteger)aValue AtIndex:(NSUInteger)anIndex;
/external/protobuf/objectivec/
DGPBDictionary.m728 //% ENUM_TYPE##VHELPER(VALUE_TYPE)##aValue = _dictionary[aKey];
729 //% VALUE_TYPE unwrapped = UNWRAP##VALUE_NAME(aValue);
1514 NSNumber *aValue = internal[aKey];
1515 block([aKey unsignedIntValue], [aValue unsignedIntValue], &stop);
1535 NSNumber *aValue = internal[aKey];
1537 …msgSize += ComputeDictUInt32FieldSize([aValue unsignedIntValue], kMapValueFieldNumber, valueDataTy…
1554 NSNumber *aValue = internal[aKey];
1558 uint32_t unwrappedValue = [aValue unsignedIntValue];
1697 NSNumber *aValue = internal[aKey];
1698 block([aKey unsignedIntValue], [aValue intValue], &stop);
[all …]
/external/protobuf/objectivec/Tests/
DGPBDictionaryTests+Bool.m58 [dict enumerateKeysAndUInt32sUsingBlock:^(BOOL aKey, uint32_t aValue, BOOL *stop) {
59 #pragma unused(aKey, aValue, stop)
75 [dict enumerateKeysAndUInt32sUsingBlock:^(BOOL aKey, uint32_t aValue, BOOL *stop) {
77 XCTAssertEqual(aValue, 100U);
103 [dict enumerateKeysAndUInt32sUsingBlock:^(BOOL aKey, uint32_t aValue, BOOL *stop) {
106 seenValues[idx] = aValue;
125 [dict enumerateKeysAndUInt32sUsingBlock:^(BOOL aKey, uint32_t aValue, BOOL *stop) {
126 #pragma unused(aKey, aValue)
363 [dict enumerateKeysAndInt32sUsingBlock:^(BOOL aKey, int32_t aValue, BOOL *stop) {
364 #pragma unused(aKey, aValue, stop)
[all …]
DGPBDictionaryTests+Int32.m89 [dict enumerateKeysAndUInt32sUsingBlock:^(int32_t aKey, uint32_t aValue, BOOL *stop) {
90 #pragma unused(aKey, aValue, stop)
106 [dict enumerateKeysAndUInt32sUsingBlock:^(int32_t aKey, uint32_t aValue, BOOL *stop) {
108 XCTAssertEqual(aValue, 100U);
138 [dict enumerateKeysAndUInt32sUsingBlock:^(int32_t aKey, uint32_t aValue, BOOL *stop) {
141 seenValues[idx] = aValue;
160 [dict enumerateKeysAndUInt32sUsingBlock:^(int32_t aKey, uint32_t aValue, BOOL *stop) {
161 #pragma unused(aKey, aValue)
450 [dict enumerateKeysAndInt32sUsingBlock:^(int32_t aKey, int32_t aValue, BOOL *stop) {
451 #pragma unused(aKey, aValue, stop)
[all …]
DGPBDictionaryTests+String.m89 [dict enumerateKeysAndUInt32sUsingBlock:^(NSString *aKey, uint32_t aValue, BOOL *stop) {
90 #pragma unused(aKey, aValue, stop)
106 [dict enumerateKeysAndUInt32sUsingBlock:^(NSString *aKey, uint32_t aValue, BOOL *stop) {
108 XCTAssertEqual(aValue, 100U);
138 [dict enumerateKeysAndUInt32sUsingBlock:^(NSString *aKey, uint32_t aValue, BOOL *stop) {
141 seenValues[idx] = aValue;
160 [dict enumerateKeysAndUInt32sUsingBlock:^(NSString *aKey, uint32_t aValue, BOOL *stop) {
161 #pragma unused(aKey, aValue)
450 [dict enumerateKeysAndInt32sUsingBlock:^(NSString *aKey, int32_t aValue, BOOL *stop) {
451 #pragma unused(aKey, aValue, stop)
[all …]
DGPBDictionaryTests+UInt32.m89 [dict enumerateKeysAndUInt32sUsingBlock:^(uint32_t aKey, uint32_t aValue, BOOL *stop) {
90 #pragma unused(aKey, aValue, stop)
106 [dict enumerateKeysAndUInt32sUsingBlock:^(uint32_t aKey, uint32_t aValue, BOOL *stop) {
108 XCTAssertEqual(aValue, 100U);
138 [dict enumerateKeysAndUInt32sUsingBlock:^(uint32_t aKey, uint32_t aValue, BOOL *stop) {
141 seenValues[idx] = aValue;
160 [dict enumerateKeysAndUInt32sUsingBlock:^(uint32_t aKey, uint32_t aValue, BOOL *stop) {
161 #pragma unused(aKey, aValue)
450 [dict enumerateKeysAndInt32sUsingBlock:^(uint32_t aKey, int32_t aValue, BOOL *stop) {
451 #pragma unused(aKey, aValue, stop)
[all …]
DGPBDictionaryTests+UInt64.m89 [dict enumerateKeysAndUInt32sUsingBlock:^(uint64_t aKey, uint32_t aValue, BOOL *stop) {
90 #pragma unused(aKey, aValue, stop)
106 [dict enumerateKeysAndUInt32sUsingBlock:^(uint64_t aKey, uint32_t aValue, BOOL *stop) {
108 XCTAssertEqual(aValue, 100U);
138 [dict enumerateKeysAndUInt32sUsingBlock:^(uint64_t aKey, uint32_t aValue, BOOL *stop) {
141 seenValues[idx] = aValue;
160 [dict enumerateKeysAndUInt32sUsingBlock:^(uint64_t aKey, uint32_t aValue, BOOL *stop) {
161 #pragma unused(aKey, aValue)
450 [dict enumerateKeysAndInt32sUsingBlock:^(uint64_t aKey, int32_t aValue, BOOL *stop) {
451 #pragma unused(aKey, aValue, stop)
[all …]
DGPBDictionaryTests+Int64.m89 [dict enumerateKeysAndUInt32sUsingBlock:^(int64_t aKey, uint32_t aValue, BOOL *stop) {
90 #pragma unused(aKey, aValue, stop)
106 [dict enumerateKeysAndUInt32sUsingBlock:^(int64_t aKey, uint32_t aValue, BOOL *stop) {
108 XCTAssertEqual(aValue, 100U);
138 [dict enumerateKeysAndUInt32sUsingBlock:^(int64_t aKey, uint32_t aValue, BOOL *stop) {
141 seenValues[idx] = aValue;
160 [dict enumerateKeysAndUInt32sUsingBlock:^(int64_t aKey, uint32_t aValue, BOOL *stop) {
161 #pragma unused(aKey, aValue)
450 [dict enumerateKeysAndInt32sUsingBlock:^(int64_t aKey, int32_t aValue, BOOL *stop) {
451 #pragma unused(aKey, aValue, stop)
[all …]
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DBooleanValueImpl.java34 BooleanValueImpl(VirtualMachine aVm,boolean aValue) { in BooleanValueImpl() argument
37 value = aValue; in BooleanValueImpl()
DByteValueImpl.java34 ByteValueImpl(VirtualMachine aVm,byte aValue) { in ByteValueImpl() argument
37 value = aValue; in ByteValueImpl()
DCharValueImpl.java34 CharValueImpl(VirtualMachine aVm,char aValue) { in CharValueImpl() argument
37 value = aValue; in CharValueImpl()
DShortValueImpl.java34 ShortValueImpl(VirtualMachine aVm,short aValue) { in ShortValueImpl() argument
37 value = aValue; in ShortValueImpl()
DIntegerValueImpl.java34 IntegerValueImpl(VirtualMachine aVm,int aValue) { in IntegerValueImpl() argument
37 value = aValue; in IntegerValueImpl()
DLongValueImpl.java34 LongValueImpl(VirtualMachine aVm,long aValue) { in LongValueImpl() argument
37 value = aValue; in LongValueImpl()
DFloatValueImpl.java34 FloatValueImpl(VirtualMachine aVm,float aValue) { in FloatValueImpl() argument
37 value = aValue; in FloatValueImpl()
DDoubleValueImpl.java34 DoubleValueImpl(VirtualMachine aVm,double aValue) { in DoubleValueImpl() argument
37 value = aValue; in DoubleValueImpl()
/external/llvm-project/lldb/test/API/functionalities/data-formatter/nsarraysynth/
Dmain.m18 NSValue *aValue = [NSNumber numberWithInt:5];
21 NSArray *other_arr = [NSArray arrayWithObjects:aDate, aValue, aString, arr, nil];
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/
DNullHandlingTest.java66 public String aValue; field in NullHandlingTest.TypeA
69 this.aValue = a; in TypeA()
194 assertEquals("No value for aValue!?", "This works!", ((TypeA) typeAData.proxy).aValue); in testPolymorphicDataNull()
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
DST.stg153 - (STAttrMap *) setObject:(id)aValue forKey:(NS*)String attrName
239 - (STAttrMap *) setObject:(id)aValue forKey:(NSString *)aAttrName
241 [super setObject:aValue forKey:aAttrName];
245 - (STAttrMap *) setObjectWithInt:(NSInteger)aValue forKey:(NSString *)aAttrName
247 [super setObject:[NSNumber numberWithInteger:aValue] forKey:aAttrName];

12