HomeSort by relevance Sort by last modified time
    Searched refs:s2 (Results 126 - 150 of 1922) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestIntervalSet.java 70 IntervalSet s2 = IntervalSet.of(13,15); local
72 String result = (s.and(s2)).toString();
78 IntervalSet s2 = IntervalSet.of('d'); local
80 String result = (s.and(s2)).toString();
86 IntervalSet s2 = IntervalSet.of('0','9'); local
88 String result = (s.and(s2)).toString();
94 IntervalSet s2 = IntervalSet.of('d'); local
96 String result = (s.and(s2)).toString();
150 IntervalSet s2 = IntervalSet.of(12,15); local
152 String result = (s.subtract(s2)).toString()
158 IntervalSet s2 = IntervalSet.of(5,11); local
171 IntervalSet s2 = IntervalSet.of(15,25); local
184 IntervalSet s2 = IntervalSet.of(1,25); local
194 IntervalSet s2 = IntervalSet.of(5,55); \/\/ covers one and touches 2nd range local
211 IntervalSet s2 = IntervalSet.of(0,115); local
220 IntervalSet s2 = IntervalSet.of(10,20); local
235 IntervalSet s2 = IntervalSet.of(10,20); local
251 IntervalSet s2 = IntervalSet.of(1,5); local
273 IntervalSet s2 = IntervalSet.of(2,2); local
283 IntervalSet s2 = IntervalSet.of(2,2); local
294 IntervalSet s2 = IntervalSet.of(100,102); local
302 IntervalSet s2 = IntervalSet.of(100,102); local
384 IntervalSet s2 = IntervalSet.of(0,'q'); local
    [all...]
  /dalvik/vm/mterp/c/
OP_GOTO_16.cpp 3 s4 offset = (s2) FETCH(1); /* sign-extend next code unit */
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
PemHeader.java 51 private boolean isEqual(String s1, String s2)
53 if (s1 == s2)
58 if (s1 == null || s2 == null)
63 return s1.equals(s2);
  /external/chromium/chrome/common/extensions/
extension_error_utils.cc 20 const std::string& s2) {
23 ReplaceFirstSubstringAfterOffset(&ret_val, 0, "*", s2);
30 const std::string& s2,
34 ReplaceFirstSubstringAfterOffset(&ret_val, 0, "*", s2);
  /external/chromium_org/extensions/common/
error_utils.h 22 const std::string& s2);
26 const std::string& s2,
34 const std::string& s2);
38 const std::string& s2,
  /external/clang/test/CodeGen/
sanitize-init-order.cpp 12 PODWithDtor s2; variable
stack-protector.c 12 char *strcpy(char *s1, const char *s2);
  /external/clang/test/Misc/
verify.c 7 struct s s2; // expected-error {{tentative definition has type}} variable in typeref:struct:s
  /external/libpng/contrib/pngminim/decoder/
pngusr.h 22 #define png_warning(s1,s2) ""
23 #define png_chunk_warning(s1,s2) ""
25 #define png_error(s1,s2) png_err(s1)
26 #define png_chunk_error(s1,s2) png_err(s1)
  /external/libpng/contrib/pngminim/encoder/
pngusr.h 20 #define png_warning(s1,s2) ""
21 #define png_chunk_warning(s1,s2) ""
23 #define png_error(s1,s2) png_err(s1)
24 #define png_chunk_error(s1,s2) png_err(s1)
  /external/libpng/contrib/pngminim/preader/
pngusr.h 18 #define png_warning(s1,s2) ""
19 #define png_chunk_warning(s1,s2) ""
21 #define png_error(s1,s2) png_err(s1)
22 #define png_chunk_error(s1,s2) png_err(s1)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.access/
index.pass.cpp 32 const S s2 = S(); local
33 assert(s2[0] == '\0');
46 const S s2 = S(); local
47 assert(s2[0] == '\0');
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/
move_convert02.fail.cpp 49 boost::unique_ptr<A[], Deleter<A> > s2; local
50 s2 = s;
51 assert(s2.get() == p);
55 assert(s2.get_deleter().state() == 5);
move_convert03.fail.cpp 51 boost::unique_ptr<A[], Deleter<A>&> s2(new A, da);
52 s2 = s;
53 assert(s2.get() == p);
57 assert(s2.get_deleter().state() == 5);
move_convert05.fail.cpp 49 boost::unique_ptr<A[], Deleter<A> > s2; local
50 s2 = s;
51 assert(s2.get() == p);
55 assert(s2.get_deleter().state() == 5);
move_convert06.fail.cpp 51 boost::unique_ptr<A[], Deleter<A>&> s2(new A, da);
52 s2 = s;
53 assert(s2.get() == p);
57 assert(s2.get_deleter().state() == 5);
move_convert08.fail.cpp 47 boost::unique_ptr<A[], Deleter<A> > s2(new A);
49 s2 = (boost::move(s));
50 assert(s2.get() == p);
54 assert(s2.get_deleter().state() == 5);
move_convert09.fail.cpp 51 boost::unique_ptr<A[], Deleter<A>&> s2(new A, da);
52 s2 = boost::move(s);
53 assert(s2.get() == p);
57 assert(s2.get_deleter().state() == 5);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.asgn/
move_convert02.fail.cpp 49 std::unique_ptr<A, Deleter<A> > s2; local
50 s2 = s;
51 assert(s2.get() == p);
55 assert(s2.get_deleter().state() == 5);
move_convert02.pass.cpp 47 std::unique_ptr<A, Deleter<A> > s2(new A);
49 s2 = std::move(s);
50 assert(s2.get() == p);
54 assert(s2.get_deleter().state() == 5);
move_convert03.fail.cpp 51 std::unique_ptr<A, Deleter<A>&> s2(new A, da);
52 s2 = s;
53 assert(s2.get() == p);
57 assert(s2.get_deleter().state() == 5);
move_convert05.fail.cpp 49 std::unique_ptr<A, Deleter<A> > s2; local
50 s2 = s;
51 assert(s2.get() == p);
55 assert(s2.get_deleter().state() == 5);
move_convert06.fail.cpp 51 std::unique_ptr<A, Deleter<A>&> s2(new A, da);
52 s2 = s;
53 assert(s2.get() == p);
57 assert(s2.get_deleter().state() == 5);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
move_convert13.fail.cpp 33 std::unique_ptr<A, Deleter> s2(std::move(s));
  /bionic/libc/bionic/
memcmp.c 30 int memcmp(const void *s1, const void *s2, size_t n)
34 const unsigned char* p2 = s2;

Completed in 957 milliseconds

1 2 3 4 56 7 8 91011>>