HomeSort by relevance Sort by last modified time
    Searched defs:sc (Results 1 - 25 of 208) sorted by null

1 2 3 4 5 6 7 8 9

  /external/chromium_org/third_party/libaddressinput/chromium/
string_compare_unittest.cc 13 i18n::addressinput::StringCompare sc; local
14 EXPECT_TRUE(sc.NaturalEquals("Texas", base::WideToUTF8(L"T\u00E9xas")));
18 i18n::addressinput::StringCompare sc; local
19 EXPECT_TRUE(sc.NaturalEquals("Texas", "teXas"));
23 i18n::addressinput::StringCompare sc; local
24 EXPECT_FALSE(sc.NaturalEquals("Texas", "California"));
  /bionic/libc/upstream-netbsd/lib/libc/string/
strcasestr.c 51 char c, sc; local
62 if ((sc = *s++) == 0)
64 } while ((char)tolower((unsigned char)sc) != c);
  /bionic/libc/upstream-openbsd/lib/libc/string/
strpbrk.c 40 int c, sc; local
43 for (scanp = s2; (sc = *scanp++) != 0;)
44 if (sc == c)
strstr.c 42 char c, sc; local
49 if ((sc = *s++) == 0)
51 } while (sc != c);
strcspn.c 43 char c, sc; local
53 if ((sc = *spanp++) == c)
55 } while (sc != 0);
strspn.c 40 char c, sc; local
47 for (spanp = s2; (sc = *spanp++) != 0;)
48 if (sc == c)
strsep.c 50 int c, sc; local
59 if ((sc = *spanp++) == c) {
67 } while (sc != 0);
strtok.c 44 int c, sc; local
56 for (spanp = (char *)delim; (sc = *spanp++) != 0;) {
57 if (c == sc)
75 if ((sc = *spanp++) == c) {
83 } while (sc != 0);
  /bionic/libc/upstream-freebsd/lib/libc/string/
wcstok.c 46 wchar_t c, sc; local
56 for (spanp = delim; (sc = *spanp++) != L'\0';) {
57 if (c == sc)
75 if ((sc = *spanp++) == c) {
83 } while (sc != L'\0');
  /external/fio/lib/
strsep.c 7 int c, sc; local
18 sc = *spanp++;
19 if (sc == c) {
27 } while (sc != 0);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_texture.c 52 /* Compute sc = +/-scale and tc = +/-scale.
57 const float sc = (2 * in_st[0] - 1) * scale; local
64 rz = -sc;
69 rz = sc;
72 rx = sc;
77 rx = sc;
82 rx = sc;
87 rx = -sc;
  /external/libcxx/test/algorithms/alg.modifying.operations/alg.reverse/
reverse.pass.cpp 40 const unsigned sc = sizeof(ic)/sizeof(ic[0]); local
41 std::reverse(Iter(ic), Iter(ic+sc));
reverse_copy.pass.cpp 43 const unsigned sc = sizeof(ic)/sizeof(ic[0]); local
44 int jc[sc] = {-1};
45 r = std::reverse_copy(InIter(ic), InIter(ic+sc), OutIter(jc));
46 assert(base(r) == jc+sc);
  /external/libcxx/test/algorithms/alg.nonmodifying/alg.search/
search_n.pass.cpp 60 const unsigned sc = sizeof(ic)/sizeof(ic[0]); local
61 assert(std::search_n(Iter(ic), Iter(ic+sc), 0, 0) == Iter(ic));
62 assert(std::search_n(Iter(ic), Iter(ic+sc), 1, 0) == Iter(ic));
63 assert(std::search_n(Iter(ic), Iter(ic+sc), 2, 0) == Iter(ic));
64 assert(std::search_n(Iter(ic), Iter(ic+sc), 3, 0) == Iter(ic));
65 assert(std::search_n(Iter(ic), Iter(ic+sc), 4, 0) == Iter(ic+sc));
search_n_pred.pass.cpp 125 const unsigned sc = sizeof(ic)/sizeof(ic[0]); local
126 assert(std::search_n(Iter(ic), Iter(ic+sc), 0, 0, count_equal()) == Iter(ic));
127 assert(count_equal::count <= sc);
129 assert(std::search_n(Iter(ic), Iter(ic+sc), 1, 0, count_equal()) == Iter(ic));
130 assert(count_equal::count <= sc);
132 assert(std::search_n(Iter(ic), Iter(ic+sc), 2, 0, count_equal()) == Iter(ic));
133 assert(count_equal::count <= sc);
135 assert(std::search_n(Iter(ic), Iter(ic+sc), 3, 0, count_equal()) == Iter(ic));
136 assert(count_equal::count <= sc);
138 assert(std::search_n(Iter(ic), Iter(ic+sc), 4, 0, count_equal()) == Iter(ic+sc))
    [all...]
  /external/libcxx/test/algorithms/alg.sorting/alg.set.operations/includes/
includes.pass.cpp 32 const unsigned sc = sizeof(ic)/sizeof(ic[0]); local
includes_comp.pass.cpp 33 const unsigned sc = sizeof(ic)/sizeof(ic[0]); local
  /external/libunwind/src/x86_64/
Gos-linux.c 142 struct sigcontext *sc = (struct sigcontext *) c->sigcontext_addr; local
145 (unsigned long long) c->dwarf.ip, sc);
149 :: "r"(sc), "i"(SYS_rt_sigreturn)
  /external/lldb/source/Target/
StackID.cpp 30 SymbolContext sc; local
32 m_symbol_scope->CalculateSymbolContext (&sc);
33 if (sc.block)
34 s->Printf(" (Block {0x%8.8" PRIx64 "})", sc.block->GetID());
35 else if (sc.symbol)
36 s->Printf(" (Symbol{0x%8.8x})", sc.symbol->GetID());
  /external/mesa3d/src/gallium/auxiliary/util/
u_texture.c 52 /* Compute sc = +/-scale and tc = +/-scale.
57 const float sc = (2 * in_st[0] - 1) * scale; local
64 rz = -sc;
69 rz = sc;
72 rx = sc;
77 rx = sc;
82 rx = sc;
87 rx = -sc;
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
OutputController.java 28 ServoController sc = new ServoController(mHostActivity, servoIndex); local
29 sc.attachToView((ViewGroup) findViewById(viewId));
  /art/test/004-SignalTest/
signaltest.cc 58 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); local
59 sc->arm_pc += 2; // Skip instruction causing segv.
62 struct sigcontext *sc = reinterpret_cast<struct sigcontext*>(&uc->uc_mcontext); local
63 sc->pc += 4; // Skip instruction causing segv.
  /external/clang/test/CodeGen/
Atomics.c 5 signed char sc; variable
16 (void) __sync_fetch_and_add (&sc, 1); // CHECK: atomicrmw add i8
25 (void) __sync_fetch_and_sub (&sc, 1); // CHECK: atomicrmw sub i8
34 (void) __sync_fetch_and_or (&sc, 1); // CHECK: atomicrmw or i8
43 (void) __sync_fetch_and_xor (&sc, 1); // CHECK: atomicrmw xor i8
52 (void) __sync_fetch_and_and (&sc, 1); // CHECK: atomicrmw and i8
65 sc = __sync_fetch_and_add (&sc, 11); // CHECK: atomicrmw add
74 sc = __sync_fetch_and_sub (&sc, 11); // CHECK: atomicrmw su
    [all...]
  /external/eigen/test/
corners.cpp 35 Index sc = internal::random<Index>(1,cols) - 1; local
36 Index nc = internal::random<Index>(1,cols-sc);
42 COMPARE_CORNER(middleCols(sc,nc), block(0,sc,rows,nc));
57 sc = SCols enumerator in enum:__anon592
79 VERIFY_IS_EQUAL((matrix.template middleCols<c>(sc)), (matrix.template block<rows,c>(0,sc)));
101 VERIFY_IS_EQUAL((const_matrix.template middleCols<c>(sc)), (const_matrix.template block<rows,c>(0,sc)));
  /external/libcxx/test/algorithms/alg.modifying.operations/alg.rotate/
rotate.pass.cpp 56 const unsigned sc = sizeof(ic)/sizeof(ic[0]); local
57 r = std::rotate(Iter(ic), Iter(ic), Iter(ic+sc));
58 assert(base(r) == ic+sc);
62 r = std::rotate(Iter(ic), Iter(ic+1), Iter(ic+sc));
67 r = std::rotate(Iter(ic), Iter(ic+2), Iter(ic+sc));
72 r = std::rotate(Iter(ic), Iter(ic+sc), Iter(ic+sc));
254 const unsigned sc = sizeof(ic)/sizeof(ic[0]); local
255 for (int i = 0; i < sc; ++i)
257 r = std::rotate(Iter(ic), Iter(ic), Iter(ic+sc));
    [all...]

Completed in 3575 milliseconds

1 2 3 4 5 6 7 8 9