Searched defs:n2 (Results 1 - 25 of 191) sorted by relevance

12345678

/external/clang/test/SemaCXX/
H A Dpr18284-crash-on-invalid.cpp15 namespace n2 { namespace
24 } // namespace n2
/external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.guard/
H A Dvariadic_mutex.fail.cpp30 M n0, n1, n2; local
46 test_conversion<LG>({n0, n1, n2}); // expected-error{{no matching function for call}}
/external/testng/src/test/java/test/tmp/
H A DTest_TestListenerAppender.java15 public void verifyData1(String n1, Integer n2) { argument
16 System.out.println(n1 + " " + n2);
/external/clang/test/Sema/
H A Dattr-section.c14 __attribute__((section("NEAR,x"))) static int n2; // ok. local
/external/libmojo/mojo/public/cpp/bindings/tests/
H A Dstring_unittest.cc74 String n2; local
76 EXPECT_FALSE(n1 != n2);
77 EXPECT_TRUE(n1 == n2);
78 EXPECT_FALSE(n1 != n2);
/external/libutf/
H A Dutfutf.c29 long f, n1, n2; local
37 n2 = strlen(s2);
39 if(strncmp(p, s2, n2) == 0)
/external/testng/src/test/java/test/dataprovider/
H A DParallelDataProviderTest.java33 public void verifyData1(ITestContext testContext, String n1, Integer n2) { argument
/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/
H A Dp5.cpp4 alignas(1) alignas(2) int n2; // expected-error {{less than minimum alignment}} variable
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
H A Dp3-0x.cpp44 int n2 = f(0); member in namespace:std_example
/external/clang/test/FixIt/
H A Dfixit-vexing-parse.cpp84 int n2, // expected-note {{change this ',' to a ';' to call 'F1'}} local
/external/dtc/tests/
H A Dpath-references.c69 int n1, n2; local
77 n2 = fdt_path_offset(fdt, "/node2");
78 if (n2 < 0)
79 FAIL("fdt_path_offset(/node2): %s", fdt_strerror(n2));
82 check_ref(fdt, n2, "/node1");
H A Dreferences.c79 int n1, n2, n3, n4, n5; local
88 n2 = fdt_path_offset(fdt, "/node2");
89 if (n2 < 0)
90 FAIL("fdt_path_offset(/node2): %s", fdt_strerror(n2));
102 h2 = fdt_get_phandle(fdt, n2);
121 check_ref(fdt, n2, h1);
/external/icu/icu4c/source/common/unicode/
H A Dnormalizer2.h453 * @param n2 wrapped Normalizer2 instance
457 FilteredNormalizer2(const Normalizer2 &n2, const UnicodeSet &filterSet) : argument
458 norm2(n2), set(filterSet) {}
/external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
H A DNodeComparator.java81 public int compare(final ICoverageNode n1, final ICoverageNode n2) { argument
83 final ICounter c2 = n2.getCounter(entity);
/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/
H A Dpointer.pass.cpp71 int n2; local
72 os2 << &n2; local
/external/libcxx/test/std/strings/basic.string/string.modifiers/string_replace/
H A Dsize_size_size_char.pass.cpp13 // replace(size_type pos, size_type n1, size_type n2, charT c);
26 typename S::size_type n2, typename S::value_type c,
33 s.replace(pos, n1, n2, c);
37 typename S::size_type rlen = n2;
45 s.replace(pos, n1, n2, c);
25 test(S s, typename S::size_type pos, typename S::size_type n1, typename S::size_type n2, typename S::value_type c, S expected) argument
H A Diter_iter_size_char.pass.cpp24 test(S s, typename S::size_type pos1, typename S::size_type n1, typename S::size_type n2, argument
31 s.replace(first, last, n2, c);
34 typename S::size_type rlen = n2;
/external/llvm/test/MC/Mips/
H A Dsection-size.s45 n2: .word 1 label
/external/testng/src/test/java/test/factory/
H A DFactoryDataProviderTest.java37 private void runTest(Class<?> cls, int n1, int n2) { argument
47 // Assert.assertTrue(t1.getN() == n1 || t1.getN() == n2);
48 // Assert.assertTrue(t2.getN() == n1 || t2.getN() == n2);
51 Assert.assertEquals(t2.getN(), n2);
/external/clang/test/CodeGenCXX/
H A Dmangle-ms-templates-memptrs-2.cpp20 K<N> n2; variable
21 // CHECK-DAG: @"\01?n2@@3U?$K@UN@@$0?0@@A"
/external/clang/test/Modules/
H A Dmacros2.c78 int n2 = TOP_OTHER_REDEF2; // ok variable
/external/guava/guava-tests/benchmark/com/google/common/math/
H A DBigIntegerMathBenchmark.java68 * Returns the product of {@code n1} exclusive through {@code n2} inclusive.
70 private static BigInteger oldSlowFactorial(int n1, int n2) { argument
71 assert n1 <= n2;
72 if (IntMath.log2(n2, CEILING) * (n2 - n1) < Long.SIZE - 1) {
75 for (int i = n1 + 1; i <= n2; i++) {
85 int mid = (n1 + n2) >>> 1;
86 return oldSlowFactorial(n1, mid).multiply(oldSlowFactorial(mid, n2));
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DNormalizationTransliterator.java76 private NormalizationTransliterator(String id, Normalizer2 n2) { argument
78 norm2 = n2;
/external/toybox/toys/other/
H A Dxxd.c105 int n1, n2; local
108 if ((n1 = n2 = dehex(fgetc(fp))) < 0 || (n2 = dehex(fgetc(fp))) < 0) {
110 if (n1 == -2 || n2 == -2) continue;
115 fputc((n1 << 4) | (n2 & 0xf), stdout);
/external/webrtc/webrtc/system_wrappers/include/
H A Dntp_time.h55 inline bool operator==(const NtpTime& n1, const NtpTime& n2) { argument
56 return n1.seconds() == n2.seconds() && n1.fractions() == n2.fractions();
58 inline bool operator!=(const NtpTime& n1, const NtpTime& n2) { argument
59 return !(n1 == n2);

Completed in 714 milliseconds

12345678