HomeSort by relevance Sort by last modified time
    Searched refs:cs2 (Results 1 - 25 of 25) sorted by null

  /external/eigen/test/
hessenberg.cpp 36 HessenbergDecomposition<MatrixType> cs2(A);
37 VERIFY_IS_EQUAL(cs1.matrixH().eval(), cs2.matrixH().eval());
39 MatrixType cs2Q = cs2.matrixQ();
schur_complex.cpp 44 ComplexSchur<MatrixType> cs2(A);
46 VERIFY_IS_EQUAL(cs2.info(), Success);
47 VERIFY_IS_EQUAL(cs1.matrixT(), cs2.matrixT());
48 VERIFY_IS_EQUAL(cs1.matrixU(), cs2.matrixU());
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
CodeSignerTest.java 135 CodeSigner cs2 = new CodeSigner(cpath, ts); local
138 assertTrue(cs1.hashCode() == cs2.hashCode());
139 assertTrue(cs2.hashCode() != cs3.hashCode());
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/generators/tests/
test_threshold.py 47 cs2=nxt.creation_sequence(deg, compact=True)
48 H2=nxt.threshold_graph(cs2)
49 assert_equal(cs2, [2, 1, 1])
50 assert_equal(''.join(nxt.uncompact(cs2)), 'ddid')
78 cs2=nxt.weights_to_creation_sequence(wseq)
79 assert_equal(cs, cs2)
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
Normalizer.java     [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
CharsetDecoder2Test.java 118 MockMalfunctionCharset cs2 = new MockMalfunctionCharset( local
121 cs2.decode(ByteBuffer.wrap(new byte[] { 0x00, 0x11 }));
CharsetTest.java 295 Charset cs2 = Charset.forName("UTF-8"); local
296 assertSame(cs1, cs2);
    [all...]
  /external/llvm/lib/Support/
regcomp.c 1154 cset *cs2; local
1158 for (cs2 = &p->g->sets[0]; cs2 < top; cs2++)
1159 if (cs2->hash == h && cs2 != cs) {
1162 if (!!CHIN(cs2, i) != !!CHIN(cs, i))
1168 if (cs2 < top) { /* found one */
1170 cs = cs2;
    [all...]
  /ndk/sources/host-tools/ndk-stack/regex/
regcomp.c 1108 cset *cs2; local
1112 for (cs2 = &p->g->sets[0]; cs2 < top; cs2++)
1113 if (cs2->hash == h && cs2 != cs) {
1116 if (!!CHIN(cs2, i) != !!CHIN(cs, i))
1122 if (cs2 < top) { /* found one */
1124 cs = cs2;
    [all...]
  /external/icu/icu4c/source/samples/ustring/
ustring.cpp 545 static char cs2[40]; local
547 u_UCharsToChars(us1, cs2, 33);
550 cs2);
  /external/icu/icu4c/source/test/intltest/
transrt.cpp 684 UnicodeString cs2; local
685 Normalizer::decompose(srcStr, FALSE, 0, cs2, status);
690 UnicodeString targ2 = cs2;
693 logNotCanonical("Source-Target", srcStr, targ,cs2, targ2);
732 UnicodeString cs2; local
733 Normalizer::decompose(srcStr, FALSE, 0, cs2, status);
738 UnicodeString targ2 = cs2;
741 logNotCanonical("Source-Target", srcStr, targ, cs2,targ2);
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/regex/
regcomp.c 1328 cset *cs2; local
    [all...]
  /external/compiler-rt/lib/dfsan/
dfsan_custom.cc 90 const char *cs1 = (const char *) s1, *cs2 = (const char *) s2; local
92 if (cs1[i] != cs2[i]) {
97 dfsan_read_label(cs2, i + 1));
99 return cs1[i] - cs2[i];
107 dfsan_read_label(cs2, n));
    [all...]
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
RoundTripTest.java 1400 String cs2 = Normalizer.normalize(cs, Normalizer.NFD); local
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
PKIXParametersTest.java 459 X509CertSelector cs2 = (X509CertSelector) p.getTargetCertConstraints(); local
461 assertNotSame("notTheSame", cs1, cs2);
464 assertFalse("stateNotChanged", testIssuer.equals(cs2.getIssuerAsString()));
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SelectionManager.java 877 SelectionItem cs2 = it2.next(); local
878 if (cs != cs2) {
879 CanvasViewInfo vi2 = cs2.getViewInfo();
    [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
earley-boyer.js 1050 function sc_isCharStringEqual(cs1, cs2) { return cs1.val === cs2.val; }
1051 function sc_isCharStringLess(cs1, cs2) { return cs1.val < cs2.val; }
1052 function sc_isCharStringGreater(cs1, cs2) { return cs1.val > cs2.val; }
1053 function sc_isCharStringLessEqual(cs1, cs2) { return cs1.val <= cs2.val; }
1054 function sc_isCharStringGreaterEqual(cs1, cs2) { return cs1.val >= cs2.val;
    [all...]
  /external/v8/benchmarks/
earley-boyer.js 1050 function sc_isCharStringEqual(cs1, cs2) { return cs1.val === cs2.val; }
1051 function sc_isCharStringLess(cs1, cs2) { return cs1.val < cs2.val; }
1052 function sc_isCharStringGreater(cs1, cs2) { return cs1.val > cs2.val; }
1053 function sc_isCharStringLessEqual(cs1, cs2) { return cs1.val <= cs2.val; }
1054 function sc_isCharStringGreaterEqual(cs1, cs2) { return cs1.val >= cs2.val;
    [all...]
  /external/icu/icu4j/main/tests/charset/src/com/ibm/icu/dev/test/charset/
TestCharset.java 46 Charset cs2 = icu.charsetForName("UTF-16LE"); local
47 CharsetEncoder e2 = cs2.newEncoder();
48 CharsetDecoder d2 = cs2.newDecoder();
137 Charset cs2 = icu.charsetForName("UTF-32LE"); local
138 CharsetEncoder e2 = cs2.newEncoder();
139 CharsetDecoder d2 = cs2.newDecoder();
2676 Charset cs2 = null; local
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-lang3/3.2.1/
commons-lang3-3.2.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-lang3/3.3/
commons-lang3-3.3.jar 
  /frameworks/data-binding/prebuilds/1.0-rc0/
databinding-studio-bundle.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/
icu4j-54.1.1.jar 
  /prebuilts/tools/common/m2/repository/net/sourceforge/saxon/saxon/9.1.0.8/
saxon-9.1.0.8.jar 

Completed in 1939 milliseconds