HomeSort by relevance Sort by last modified time
    Searched refs:n1 (Results 276 - 300 of 657) sorted by null

<<11121314151617181920>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.modifiers/string_replace/
size_size_pointer.pass.cpp 13 // replace(size_type pos, size_type n1, const charT* s);
26 test(S s, typename S::size_type pos, typename S::size_type n1,
33 s.replace(pos, n1, str);
37 typename S::size_type xlen = std::min(n1, old_size - pos);
size_size_size_char.pass.cpp 13 // replace(size_type pos, size_type n1, size_type n2, charT c);
24 test(S s, typename S::size_type pos, typename S::size_type n1,
32 s.replace(pos, n1, n2, c);
36 typename S::size_type xlen = std::min(n1, old_size - pos);
size_size_string.pass.cpp 13 // replace(size_type pos1, size_type n1, const basic_string<charT,traits,Allocator>& str);
24 test(S s, typename S::size_type pos1, typename S::size_type n1, S str, S expected)
30 s.replace(pos1, n1, str);
34 typename S::size_type xlen = std::min(n1, old_size - pos1);
iter_iter_pointer.pass.cpp 25 test(S s, typename S::size_type pos1, typename S::size_type n1, const typename S::value_type* str, S expected)
29 typename S::const_iterator last = s.begin() + pos1 + n1;
iter_iter_size_char.pass.cpp 25 test(S s, typename S::size_type pos1, typename S::size_type n1, typename S::size_type n2,
30 typename S::const_iterator last = s.begin() + pos1 + n1;
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_ast.py 312 n1 = ast.Num(1)
315 x = ast.BinOp(n1, addop, n3)
316 self.assertEqual(x.left, n1)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_ast.py 312 n1 = ast.Num(1)
315 x = ast.BinOp(n1, addop, n3)
316 self.assertEqual(x.left, n1)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_ast.py 312 n1 = ast.Num(1)
315 x = ast.BinOp(n1, addop, n3)
316 self.assertEqual(x.left, n1)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_ast.py 312 n1 = ast.Num(1)
315 x = ast.BinOp(n1, addop, n3)
316 self.assertEqual(x.left, n1)
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/notifications/
NotificationListenerVerifierActivity.java 109 Notification n1 = new Notification.Builder(mContext) local
118 mNm.notify(mTag1, mId1, n1);
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
query.py 79 n1 = dns.inet.inet_pton(af, a1[0])
81 return n1 == n2 and a1[1:] == a2[1:]
  /external/libcxx/test/std/strings/basic.string/string.modifiers/string_replace/
iter_iter_pointer.pass.cpp 25 test(S s, typename S::size_type pos1, typename S::size_type n1, const typename S::value_type* str, S expected)
29 typename S::const_iterator last = s.begin() + pos1 + n1;
iter_iter_size_char.pass.cpp 25 test(S s, typename S::size_type pos1, typename S::size_type n1, typename S::size_type n2,
30 typename S::const_iterator last = s.begin() + pos1 + n1;
  /external/opencv/cv/src/
mycvHaarDetectObjects.cpp 460 unsigned int n1 = NEXT(n, number); local
462 while(abs(n1 - n) > 1) {
463 n = n1;
464 n1 = NEXT(n, number);
466 while((n1*n1) > number) {
467 n1 -= 1;
469 return n1;
    [all...]
  /external/selinux/libsepol/cil/src/
cil_find.c 117 struct cil_tree_node *n1 = s1->nodes->head->data; local
118 if (n1->flavor != CIL_TYPEATTRIBUTE) {
  /external/valgrind/massif/
ms_main.c 110 n1: 5 (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
111 n1: 5 0x27F6E0: _nl_normalize_codeset (in /lib/libc-2.3.5.so)
112 n1: 5 0x279DE6: _nl_load_locale_from_archive (in /lib/libc-2.3.5.so)
113 n1: 5 0x278E97: _nl_find_locale (in /lib/libc-2.3.5.so)
114 n1: 5 0x278871: setlocale (in /lib/libc-2.3.5.so)
115 n1: 5 0x8049821: (within /bin/date)
629 static Int SXPt_revcmp_szB(const void* n1, const void* n2)
631 const SXPt* sxpt1 = *(const SXPt *const *)n1;
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
bind.hpp 393 typedef mpl::arg<1> n1;
426 typedef typename r0::next n1;
  /external/icu/android_icu4j/src/main/java/android/icu/text/
AlphabeticIndex.java 796 String n1 = nfkdNormalizer.normalize(one); local
798 int result = n1.codePointCount(0, n1.length()) - n2.codePointCount(0, n2.length());
802 result = binaryCmp.compare(n1, n2);
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
AlphabeticIndex.java 824 String n1 = nfkdNormalizer.normalize(one); local
826 int result = n1.codePointCount(0, n1.length()) - n2.codePointCount(0, n2.length());
830 result = binaryCmp.compare(n1, n2);
    [all...]
  /external/libcxx/test/std/experimental/string.view/string.view.ops/
compare.size_size_sv_pointer_size.pass.cpp 13 // constexpr int compare(size_type pos1, size_type n1,
24 void test1 ( std::experimental::basic_string_view<CharT> sv1, size_t pos1, size_t n1,
30 assert ( sign( sv1.compare(pos1, n1, s2, n2)) == sign(expected));
38 void test ( const CharT *s1, size_t pos1, size_t n1,
44 test1 (sv1, pos1, n1, s2, n2, expected);
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionDispatch/
btBoxBoxDetector.cpp 331 // normal (n1,n2,n3) is relative to box 1.
333 #define TST(expr1,expr2,n1,n2,n3,cc) \
336 l = btSqrt((n1)*(n1) + (n2)*(n2) + (n3)*(n3)); \
342 normalC[0] = (n1)/l; normalC[1] = (n2)/l; normalC[2] = (n3)/l; \
  /external/lzma/C/
Ppmd7.c 610 unsigned n0, n1; local
628 n1 = (p->MinContext->NumStats + 1) >> 1;
629 if (n0 != n1)
630 p->MinContext->Stats = STATS_REF(ShrinkUnits(p, stats, n0, n1));
  /external/opencv3/modules/cudaoptflow/src/cuda/
tvl1flow.cu 290 const float n1 = (u1OldVal - u1NewVal) * (u1OldVal - u1NewVal);
292 error(y, x) = n1 + n2;
  /external/opencv3/modules/video/src/opencl/
optical_flow_tvl1.cl 373 float n1 = (u1OldVal - u1NewVal) * (u1OldVal - u1NewVal);
375 error[y * I1wx_step + x] = n1 + n2;
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ScriptGroup.java 858 for (Node n1 : mNodes) {
859 n1.mSeen = false;
866 public int compare(Node n1, Node n2) {
867 return n1.mOrder - n2.mOrder;
    [all...]

Completed in 1396 milliseconds

<<11121314151617181920>>