/external/antlr/antlr-3.4/runtime/C/doxygen/ |
runtime.dox | 28 /// find "Base Recognizer Implementation", which documents the actual functions that are installed 32 /// the actual source code, but please don't email the author directly, use the ANTLR Interest
|
/external/ceres-solver/internal/ceres/ |
incomplete_lq_factorization_test.cc | 43 const CompressedRowSparseMatrix& actual, 45 EXPECT_EQ(expected.num_rows(), actual.num_rows()); 46 EXPECT_EQ(expected.num_cols(), actual.num_cols()); 48 EXPECT_EQ(expected.rows()[i], actual.rows()[i]); 51 for (int i = 0; i < actual.num_nonzeros(); ++i) { 52 EXPECT_EQ(expected.cols()[i], actual.cols()[i]); 53 EXPECT_NEAR(expected.values()[i], actual.values()[i], tolerance); 117 << "\actual: \n" << actual_l_matrix;
|
/external/icu/icu4c/source/i18n/unicode/ |
uldnames.h | 128 * @return the actual buffer size needed for the display name. If it's 148 * @return the actual buffer size needed for the display name. If it's 166 * @return the actual buffer size needed for the display name. If it's 184 * @return the actual buffer size needed for the display name. If it's 202 * @return the actual buffer size needed for the display name. If it's 220 * @return the actual buffer size needed for the display name. If it's 238 * @return the actual buffer size needed for the display name. If it's 257 * @return the actual buffer size needed for the display name. If it's
|
/external/icu/icu4c/source/test/intltest/ |
regextst.h | 59 virtual void assertUText(const char *expected, UText *actual, const char *file, int line); 60 virtual void assertUTextInvariant(const char *invariant, UText *actual, const char *file, int line);
|
/external/libdrm/tests/ |
name_from_fd.c | 36 * This tests that we can get the actual version out, and that setting invalid 37 * major/minor numbers fails appropriately. It does not check the actual
|
/external/mockito/src/org/mockito/internal/matchers/ |
Equals.java | 23 public boolean matches(Object actual) { 24 return Equality.areEqual(this.wanted, actual);
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
AccountTest.java | 45 Account actual = Account.CREATOR.createFromParcel(p); local 46 assertThat(expected, equalTo(actual));
|
/external/skia/gyp/ |
android_deps.gyp | 13 # shim here that includes the android_deps.gypi file. The actual dependencies 18 # edit the includes below to specify the actual location of the android.gypi.
|
/external/skia/src/pipe/utils/ |
SamplePipeControllers.h | 21 void* requestBlock(size_t minRequest, size_t* actual) override; 60 void* requestBlock(size_t minRequest, size_t* actual) override;
|
/external/skia/tools/ |
reformat-json.py | 13 (only the actual checksum differences will show up as diffs, not obscured 27 # that directory. That script allows us to parse the actual-results.json file
|
/external/v8/test/mjsunit/ |
not.js | 31 var actual = !x; 32 assertEquals(expected, actual, "x: " + x);
|
/external/v8/test/mjsunit/regress/ |
regress-mul-canoverflow.js | 44 var actual = boom(big_int) 45 assertEquals(expected, actual);
|
regress-mul-canoverflowb.js | 44 var actual = boom(big_int) 45 assertEquals(expected, actual);
|
/frameworks/compile/libbcc/include/bcinfo/Wrap/ |
in_memory_wrapper_input.h | 33 // actual number of bytes read. 44 // The actual in-memory buffer
|
/libcore/luni/src/main/java/libcore/io/ |
DeleteOnExit.java | 26 * Implements the actual DeleteOnExit mechanism. Is registered as a shutdown 71 * Does the actual work. Note we (a) first sort the files lexicographically
|
/system/media/audio_utils/include/audio_utils/ |
sndfile.h | 64 // Read interleaved frames and return actual number of frames read 69 // Write interleaved frames and return actual number of frames written
|
/art/test/004-UnsafeTest/src/ |
Main.java | 25 private static void check(int actual, int expected, String msg) { 26 if (actual != expected) { 27 System.out.println(msg + " : " + actual + " != " + expected); 32 private static void check(long actual, long expected, String msg) { 33 if (actual != expected) { 34 System.out.println(msg + " : " + actual + " != " + expected);
|
/cts/tests/tests/telecom/src/android/telecom/cts/ |
BaseTelecomTestWithMockServices.java | 494 public Object actual() { 510 public Object actual() { 527 public Object actual() { 545 public Object actual() { 564 public Object actual() { 583 public Object actual() { 602 public Object actual() { 621 public Object actual() { 639 public Object actual() { 657 public Object actual() { 860 Object actual(); method in interface:BaseTelecomTestWithMockServices.Condition [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/ |
ITreeNodeStreamFixture.cs | 63 string actual = GetStringOfEntireStreamContentsWithNodeTypesOnly(stream); 64 Assert.AreEqual(expected, actual); 67 actual = stream.ToString(); 68 Assert.AreEqual(expected, actual); 84 string actual = GetStringOfEntireStreamContentsWithNodeTypesOnly(stream); 85 Assert.AreEqual(expected, actual); 88 actual = stream.ToString(); 89 Assert.AreEqual(expected, actual); 109 string actual = GetStringOfEntireStreamContentsWithNodeTypesOnly(stream); 110 Assert.AreEqual(expected, actual); [all...] |
/external/owasp/sanitizer/src/tests/org/owasp/html/ |
HtmlLexerTest.java | 50 StringBuilder actual = new StringBuilder(); local 51 lex(input, actual); 59 assertEquals(golden, actual.toString()); 150 List<String> actual = Lists.newArrayList(); local 153 actual.add(t.type + ": " + markup.substring(t.start, t.end)); 155 assertEquals(Arrays.asList(golden), actual); local
|
/external/protobuf/java/src/test/java/com/google/protobuf/ |
LiteTest.java | 57 // need to make sure it runs before any actual tests. 139 TestAllTypesLite actual = (TestAllTypesLite) in.readObject(); local 140 assertEquals(expected.getOptionalInt32(), actual.getOptionalInt32()); 142 actual.getRepeatedStringCount()); 144 actual.getRepeatedString(0)); 146 actual.getOptionalNestedMessage().getBb());
|
/frameworks/av/media/libcpustats/ |
ThreadCpuUsage.cpp | 178 ssize_t actual = read(fd, kernelMax, sizeof(kernelMax)); local 179 if (actual >= 2 && kernelMax[actual-1] == '\n') { 236 ssize_t actual = pread(fd, kHz, sizeof(kHz), (off_t) 0); local 238 if (actual >= 2 && kHz[actual-1] == '\n') {
|
/frameworks/base/core/tests/coretests/src/android/content/pm/ |
VerificationParamsTest.java | 55 VerificationParams actual = VerificationParams.CREATOR.createFromParcel(parcel); local 57 assertEquals(VERIFICATION_URI, actual.getVerificationURI()); 59 assertEquals(ORIGINATING_URI, actual.getOriginatingURI()); 61 assertEquals(REFERRER, actual.getReferrer()); 63 assertEquals(ORIGINATING_UID, actual.getOriginatingUid()); 65 assertEquals(MANIFEST_DIGEST, actual.getManifestDigest());
|
/packages/apps/Calendar/tests/src/com/android/calendar/widget/ |
CalendarAppWidgetServiceTest.java | 68 // CalendarAppWidgetModel actual = CalendarAppWidgetService.getAppWidgetModel( 71 // assertEquals(expected.toString(), actual.toString()); 120 CalendarAppWidgetModel actual = CalendarFactory.buildAppWidgetModel( local 123 assertEquals(expected.toString(), actual.toString()); 170 CalendarAppWidgetModel actual = CalendarAppWidgetService.CalendarFactory.buildAppWidgetModel( local 173 assertEquals(expected.toString(), actual.toString());
|
/art/cmdline/ |
cmdline_parser_test.cc | 29 bool UsuallyEquals(double expected, double actual); 46 bool UsuallyEquals(double expected, double actual) { 50 FloatingPoint act(actual); 57 bool UsuallyEquals(const T& expected, const T& actual, 60 return expected == actual; 71 bool UsuallyEquals(const T& expected, const T& actual, 76 return memcmp(std::addressof(expected), std::addressof(actual), sizeof(T)) == 0; 79 bool UsuallyEquals(const XGcOption& expected, const XGcOption& actual) { 80 return memcmp(std::addressof(expected), std::addressof(actual), sizeof(expected)) == 0; 83 bool UsuallyEquals(const char* expected, std::string actual) { 91 auto* actual = map.Get(key); local [all...] |