HomeSort by relevance Sort by last modified time
    Searched full:pos2 (Results 126 - 150 of 230) sorted by null

1 2 3 4 56 7 8 910

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
zipfile.py     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringRefactoring.java 782 int pos2 = mTokenString.indexOf('\/'); local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
MeasureFormat.java 432 // FieldPosition pos2 = new FieldPosition(0);
433 // currencyFormat.format(currencyHigh, buffer2, pos2);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
MeasureFormat.java 449 // FieldPosition pos2 = new FieldPosition(0);
450 // currencyFormat.format(currencyHigh, buffer2, pos2);
    [all...]
  /external/javassist/src/main/javassist/bytecode/
CodeIterator.java 1242 int pos2 = dest + gapLength; local
    [all...]
  /external/libcxx/include/experimental/
string_view 127 basic_string_view s, size_type pos2, size_type n2) const;
    [all...]
  /external/opencv3/modules/viz/test/
tests_simple.cpp 330 viz.showWidget("pos2", WCameraPosition(Vec2d(0.78, 0.78), lena, 2.2, Color::green()), poses[0]);
  /external/freetype/src/autofit/
aflatin2.c 1000 FT_Pos pos2 = seg2->pos; local
1001 FT_Pos dist = pos2 - pos1;
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
NumberRegression.java 881 ParsePosition pos1 = new ParsePosition(0), pos2 = new ParsePosition(0); local
890 num = df.parse("$", pos2);
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
NumberRegression.java 877 ParsePosition pos1 = new ParsePosition(0), pos2 = new ParsePosition(0); local
886 num = df.parse("$", pos2);
    [all...]
  /external/icu/icu4c/source/test/intltest/
numrgts.cpp     [all...]
  /external/llvm/docs/
CommandLine.rst     [all...]
  /external/libcxx/test/std/strings/basic.string/string.modifiers/string_replace/
size_size_string_size_size.pass.cpp 14 // size_type pos2, size_type n2=npos);
27 S str, typename S::size_type pos2, typename S::size_type n2,
34 s.replace(pos1, n1, str, pos2, n2);
36 assert(pos1 <= old_size && pos2 <= str.size());
39 typename S::size_type rlen = std::min(n2, str.size() - pos2);
44 assert(pos1 > old_size || pos2 > str.size());
52 S str, typename S::size_type pos2,
59 s.replace(pos1, n1, str, pos2);
61 assert(pos1 <= old_size && pos2 <= str.size());
64 typename S::size_type rlen = std::min(S::npos, str.size() - pos2);
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.modifiers/string_replace/
size_size_string_size_size.pass.cpp 14 // size_type pos2, size_type n2=npos);
27 S str, typename S::size_type pos2, typename S::size_type n2,
34 s.replace(pos1, n1, str, pos2, n2);
36 assert(pos1 <= old_size && pos2 <= str.size());
39 typename S::size_type rlen = std::min(n2, str.size() - pos2);
44 assert(pos1 > old_size || pos2 > str.size());
52 S str, typename S::size_type pos2,
59 s.replace(pos1, n1, str, pos2);
61 assert(pos1 <= old_size && pos2 <= str.size());
64 typename S::size_type rlen = std::min(S::npos, str.size() - pos2);
    [all...]
  /external/libcxx/include/
string 191 size_type pos2, size_type n);
207 size_type pos2, size_type n2=npos); // C++14
264 size_type pos2, size_type n2=npos) const; // C++14
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
string 191 size_type pos2, size_type n);
207 size_type pos2, size_type n2=npos); // C++14
264 size_type pos2, size_type n2=npos) const; // C++14
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_io.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_io.py     [all...]
  /prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/
string 191 size_type pos2, size_type n);
207 size_type pos2, size_type n2=npos); // C++14
264 size_type pos2, size_type n2=npos) const; // C++14
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_io.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_io.py     [all...]
  /external/libcxx/test/std/strings/basic.string/string.ops/string_compare/
size_size_string_size_size.pass.cpp 13 // size_type pos2, size_type n2=npos) const;
34 const S& str, typename S::size_type pos2, typename S::size_type n2, int x)
38 assert(sign(s.compare(pos1, n1, str, pos2, n2)) == sign(x));
40 assert(pos2 <= str.size());
44 assert(pos1 > s.size() || pos2 > str.size());
51 const S& str, typename S::size_type pos2, int x)
55 assert(sign(s.compare(pos1, n1, str, pos2)) == sign(x));
57 assert(pos2 <= str.size());
61 assert(pos1 > s.size() || pos2 > str.size());
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_compare/
size_size_string_size_size.pass.cpp 13 // size_type pos2, size_type n2=npos) const;
34 const S& str, typename S::size_type pos2, typename S::size_type n2, int x)
38 assert(sign(s.compare(pos1, n1, str, pos2, n2)) == sign(x));
40 assert(pos2 <= str.size());
44 assert(pos1 > s.size() || pos2 > str.size());
51 const S& str, typename S::size_type pos2, int x)
55 assert(sign(s.compare(pos1, n1, str, pos2)) == sign(x));
57 assert(pos2 <= str.size());
61 assert(pos1 > s.size() || pos2 > str.size());
    [all...]
  /external/protobuf/python/google/protobuf/internal/
reflection_test.py     [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/de/pdark/decentxml/1.3/
decentxml-1.3.jar 

Completed in 1211 milliseconds

1 2 3 4 56 7 8 910