HomeSort by relevance Sort by last modified time
    Searched full:cases (Results 151 - 175 of 6052) sorted by null

1 2 3 4 5 67 8 91011>>

  /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
AttributesImplTest.java 81 // Ordinary cases
94 // Ordinary cases
107 // Ordinary cases
120 // Ordinary cases
133 // Ordinary cases
146 // Ordinary cases
154 // null cases
160 // Ordinary cases
174 // Ordinary cases
182 // null cases
    [all...]
  /libcore/luni/src/main/java/java/lang/
Math.java 49 * Special cases:
62 * Special cases:
91 * Special cases:
109 * Special cases:
127 * Special cases:
148 * Special cases:
186 * Special cases:
205 * Special cases:
222 * Special cases:
240 * Special cases
    [all...]
StrictMath.java 58 * Special cases:
73 * Special cases:
109 * Special cases:
126 * Special cases:
143 * Special cases:
163 * Special cases:
201 * Special cases:
220 * Special cases:
237 * Special cases:
253 * Special cases
    [all...]
  /cts/tools/utils/
DescriptionGenerator.java 54 * Input: The source files of the test cases. It will be represented
253 * information of all the test package, test suite and test cases.
411 * @param cases A collection of test cases included by the test suite class.
413 void appendTestCases(Node elem, Collection<TestMethod> cases) {
414 if (cases.isEmpty()) {
418 for (TestMethod caze : cases) {
502 * @param cases The test cases included in this test suite.
504 TestClass(String name, Collection<TestMethod> cases) {
528 ArrayList<TestMethod> cases = new ArrayList<TestMethod>(); local
    [all...]
  /docs/source.android.com/src/compatibility/
cts-intro.jd 31 <p>Individual test cases are executed on attached mobile devices or on an
32 emulator. The test cases are written in Java as JUnit tests and packaged as
93 <h2 id="types-of-test-cases">Types of test cases</h2>
94 <p>The CTS includes the following types of test cases:</p>
106 <p>Future versions of the CTS will include the following types of test cases:</p>
116 <p>The unit test cases cover the following areas to ensure compatibility:</p>
  /external/chromium/crypto/
hmac_unittest.cc 63 // Test cases from RFC 2202 section 3
71 } cases[] = { local
123 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(cases); ++i) {
125 ASSERT_TRUE(hmac.Init(reinterpret_cast<const unsigned char*>(cases[i].key),
126 cases[i].key_len));
127 std::string data_string(cases[i].data, cases[i].data_len);
130 EXPECT_EQ(0, memcmp(cases[i].digest, digest, kSHA1DigestSize));
218 } cases[] = { local
230 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(cases); ++i)
    [all...]
  /external/eigen/doc/
I01_TopicLazyEvaluation.dox 6 It will handle aliasing automatically in most cases, for example with matrix products. The automatic behavior can be overridden
13 Eigen determines automatically, for each sub-expression, whether to evaluate it into a temporary variable. Indeed, in certain cases it is better to evaluate immediately a sub-expression into a temporary variable, while in other cases it is better to avoid that.
21 Expression-templates-based libraries can avoid evaluating sub-expressions into temporaries, which in many cases results in large speed improvements. This is called <i>lazy evaluation</i> as an expression is getting evaluated as late as possible, instead of immediately. However, most other expression-templates-based libraries <i>always</i> choose lazy evaluation. There are two problems with that: first, lazy evaluation is not always a good choice for performance; second, lazy evaluation can be very dangerous, for example with matrix products: doing <tt>matrix = matrix*matrix</tt> gives a wrong result if the matrix product is lazy-evaluated, because of the way matrix product works.
57 <b>The third circumstance</b> in which Eigen chooses immediate evaluation, is when its cost model shows that the total cost of an operation is reduced if a sub-expression gets evaluated into a temporary. Indeed, in certain cases, an intermediate result is sufficiently costly to compute and is reused sufficiently many times, that is worth "caching". Here is an example:
  /external/webkit/LayoutTests/fast/url/script-tests/
relative.js 3 cases = [
83 for (var i = 0; i < cases.length; ++i) {
84 baseURL = cases[i][0];
85 relativeURL = cases[i][1];
86 expectedURL = cases[i][2];
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_csqrtf.c 39 * gcc generates is acceptable, since the special cases have already been
50 /* Handle special cases. */
78 * provide correct rounding in nearly all cases.
  /cts/tests/tests/net/src/android/net/cts/
SSLCertificateSocketFactoryTest.java 94 * b/2807618 Make sure that hostname verifcation in cases were it
110 * b/2807618 Make sure that hostname verifcation in cases were it
128 * b/2807618 Make sure that hostname verifcation in cases were it
  /external/chromium/chrome/browser/password_manager/
encryptor_unittest.cc 36 // Test borderline cases (empty strings).
82 // Test borderline cases (empty strings).
105 // Test borderline cases (empty strings).
  /external/skia/gm/
rrects.cpp 73 // simple cases
105 // Radii for the various test cases. Order is UL, UR, LR, LL
110 // odd ball cases
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/TypeConversion/
9.3.1-2.js 26 see 9.3.1 for cases for converting strings to numbers.
27 special cases:
35 This tests special cases of ToNumber(string) that are
9.3.js 26 see 9.3.1 for cases for converting strings to numbers.
27 special cases:
69 // special cases here
  /external/clang/test/Analysis/
NSWindow.m 4 // on Mac OS X. The test cases are below.
45 // Test cases.
  /external/clang/test/CXX/temp/temp.spec/temp.inst/
p1.cpp 7 // FIXME: Many omitted cases
58 // And it cases the implicit instantiations of the definitions of:
  /external/clang/test/SemaCXX/
cxx11-gnu-attrs.cpp 3 // Error cases.
12 // Valid cases.
  /external/compiler-rt/lib/interception/
interception_type_test.cc 31 // The following are the cases when pread (and friends) is used instead of
32 // pread64. In those cases we need OFF_T to match off_t. We don't care about the
  /external/e2fsprogs/tests/progs/test_data/
test.icount 8 # First let's test the boundary cases for illegal arguments
21 # OK, now let's test fetch and store. We also test the boundary cases
  /external/icu4c/tools/ctestfw/
testdata.cpp 76 fCases = ures_getByKey(data, "Cases", NULL, &status);
107 // reset the cases iterator
  /external/llvm/test/Transforms/InstCombine/
memcpy_chk-1.ll 16 ; Check cases where dstlen >= len.
38 ; Check cases where dstlen < len.
memmove_chk-1.ll 16 ; Check cases where dstlen >= len.
38 ; Check cases where dstlen < len.
memset_chk-1.ll 12 ; Check cases where dstlen >= len.
41 ; Check cases where dstlen < len.
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
VersionGLSL.cpp 20 // TODO(alokp): The following two cases of invariant decalaration get lost
22 // Handle these cases:
  /external/webkit/Source/WebCore/storage/
DatabaseAuthorizer.cpp 141 // well disallow SQLITE_CREATE_TEMP_TABLE in these cases
160 // well disallow SQLITE_DROP_TEMP_TABLE in these cases
189 // so we might as well disallow SQLITE_CREATE_TEMP_INDEX in these cases
208 // as well disallow SQLITE_DROP_TEMP_INDEX in these cases
228 // well disallow SQLITE_CREATE_TEMP_TRIGGER in these cases
247 // well disallow SQLITE_DROP_TEMP_TRIGGER in these cases
263 // well disallow SQLITE_CREATE_TEMP_VIEW in these cases
280 // well disallow SQLITE_DROP_TEMP_VIEW in these cases

Completed in 697 milliseconds

1 2 3 4 5 67 8 91011>>