Home
last modified time | relevance | path

Searched refs:STAssertEquals (Results 1 – 6 of 6) sorted by relevance

/external/antlr/antlr-3.4/runtime/ObjC/Framework/test/runtime/token/
DANTLRCommonTokenTest.m26STAssertEquals(token.type, (NSInteger)ANTLRTokenTypeEOF, @"Token was not of type ANTLRTokenTypeEOF…
35 STAssertEquals(token.type, (NSInteger)ANTLRTokenTypeUP, @"Token was not of type ANTLRTokenTypeUP");
45 STAssertEquals(token.type, (NSInteger)ANTLRTokenTypeUP, @"Token was not of type ANTLRTokenTypeUP");
56STAssertEquals(token.type, (NSInteger)555, @"Token was not of type 555"); // Nice random type numb…
68STAssertEquals(token.type, (NSInteger)555, @"Token was not of type 555"); // Nice random type numb…
74STAssertEquals(newToken.type, token.type, @"Tokens types do not match %d:%d!", newToken.type, toke…
75 STAssertEquals(newToken.line, token.line, @"Token lines do not match!");
76 STAssertEquals(newToken.index, token.index, @"Token indexes do not match");
77 STAssertEquals(newToken.channel, token.channel, @"Token channels are not the same");
78STAssertEquals(newToken.charPositionInLine, token.charPositionInLine, @"Token char positions in li…
[all …]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/test/runtime/tree/
DANTLRCommonTreeTest.m32STAssertEquals([tree getType], (NSInteger)ANTLRTokenTypeInvalid, @"Tree should have an invalid tok…
48STAssertEquals((NSUInteger) tree.token.line, (NSUInteger)1, [NSString stringWithFormat:@"Tree shou…
49STAssertEquals((NSUInteger) tree.token.charPositionInLine, (NSUInteger)4, [NSString stringWithForm…
62STAssertEquals(tree.token.type, (NSInteger)ANTLRTokenTypeInvalid, @"Tree Token type was not ANTLRT…
77 STAssertEquals(newTree.token, tree.token, @"Tokens did not match");
78STAssertEquals(newTree.startIndex, tree.startIndex, @"Token start index did not match %d:%d", newT…
79STAssertEquals(newTree.stopIndex, tree.stopIndex, @"Token stop index did not match %d:%d", newTree…
96 // STAssertEquals(newTree.token, tree.token, @"Tokens did not match");
97 STAssertEquals(newTree.stopIndex, tree.stopIndex, @"Token stop index did not match");
98 STAssertEquals(newTree.startIndex, tree.startIndex, @"Token start index did not match");
[all …]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/test/runtime/sets/
DANTLRBitSetTest.m23STAssertEquals(actual, expected, @"There should be three bits set in bitvector. But I have %d", ac…
45STAssertEquals(actual, expected, @"There should be four bits set in bitvector. But I have %d", act…
58STAssertEquals(actual, expected, @"There should be three bits set in bitvector. But I have %d", ac…
83STAssertEquals(actual, (CFIndex)[bitSet numBits], @"There should be three bits set in bitvector. B…
/external/google-breakpad/src/client/mac/tests/
DBreakpadFramework_Test.mm198 STAssertEquals(last_exception_type_, kNoLastExceptionType,
200 STAssertEquals(last_exception_code_, kNoLastExceptionCode,
202 STAssertEquals(last_exception_thread_, kNoLastExceptionThread,
208 STAssertEquals(last_exception_type_, 0,
210 STAssertEquals(last_exception_code_, 0,
212 STAssertEquals(last_exception_thread_, mach_thread_self(),
/external/antlr/antlr-3.4/runtime/ObjC/Framework/test/runtime/misc/
DANTLRFastQueueTest.m29 STAssertEquals([queue objectAtIndex:0], @"My String", @"Object at index zero is invalid");
62 STAssertEquals(head, @"Item 1", @"Object returned was not first item in");
/external/google-breakpad/src/common/mac/testing/
DGTMSenTestCase.h584 #define STAssertEquals(a1, a2, description, ...) \ macro