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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/lib/Frontend/Rewrite/
RewriteTest.cpp 20 SourceManager &SM = PP.getSourceManager();
23 TokenRewriter Rewriter(SM.getMainFileID(), SM, LangOpts);
  /external/libcxx/test/std/re/re.submatch/re.submatch.members/
default.pass.cpp 24 typedef std::sub_match<const CharT*> SM;
25 SM sm; local
26 assert(sm.matched == false);
30 typedef std::sub_match<const CharT*> SM;
31 SM sm; local
32 assert(sm.matched == false);
compare_value_type_ptr.pass.cpp 24 typedef std::sub_match<const CharT*> SM;
25 SM sm = SM(); local
26 assert(sm.compare("") == 0);
28 sm.first = s;
29 sm.second = s + 3;
30 sm.matched = true;
31 assert(sm.compare("") > 0);
32 assert(sm.compare("123") == 0)
37 SM sm = SM(); local
    [all...]
length.pass.cpp 24 typedef std::sub_match<const CharT*> SM;
25 SM sm = SM(); local
26 assert(sm.length() == 0);
28 sm.first = s;
29 sm.second = s + 3;
30 sm.matched = true;
31 assert(sm.length() == 3);
35 typedef std::sub_match<const CharT*> SM;
36 SM sm = SM(); local
    [all...]
compare_string_type.pass.cpp 24 typedef std::sub_match<const CharT*> SM;
25 typedef SM::string_type string;
26 SM sm = SM(); local
27 assert(sm.compare(string()) == 0);
29 sm.first = s;
30 sm.second = s + 3;
31 sm.matched = true;
32 assert(sm.compare(string()) > 0)
39 SM sm = SM(); local
    [all...]
compare_sub_match.pass.cpp 24 typedef std::sub_match<const CharT*> SM;
25 SM sm = SM(); local
26 SM sm2 = SM();
27 assert(sm.compare(sm2) == 0);
29 sm.first = s;
30 sm.second = s + 3;
31 sm.matched = true
41 SM sm = SM(); local
    [all...]
operator_string.pass.cpp 24 typedef std::sub_match<const CharT*> SM;
25 SM sm = SM(); local
26 SM::string_type str = sm;
29 sm.first = s;
30 sm.second = s + 3;
31 sm.matched = true;
32 str = sm;
38 SM sm = SM(); local
    [all...]
str.pass.cpp 24 typedef std::sub_match<const CharT*> SM;
25 SM sm = SM(); local
26 SM::string_type str = sm.str();
29 sm.first = s;
30 sm.second = s + 3;
31 sm.matched = true;
32 str = sm.str()
38 SM sm = SM(); local
    [all...]
  /external/libcxx/test/std/re/re.submatch/
types.pass.cpp 34 typedef std::sub_match<char*> SM;
35 static_assert((std::is_same<SM::iterator, char*>::value), "");
36 static_assert((std::is_same<SM::value_type, char>::value), "");
37 static_assert((std::is_same<SM::difference_type, std::ptrdiff_t>::value), "");
38 static_assert((std::is_same<SM::string_type, std::string>::value), "");
39 static_assert((std::is_convertible<SM*, std::pair<char*, char*>*>::value), "");
41 SM sm; local
42 sm.first = nullptr;
43 sm.second = nullptr
54 SM sm; local
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.submatch/re.submatch.members/
default.pass.cpp 23 typedef std::sub_match<const CharT*> SM;
24 SM sm; local
25 assert(sm.matched == false);
29 typedef std::sub_match<const CharT*> SM;
30 SM sm; local
31 assert(sm.matched == false);
length.pass.cpp 23 typedef std::sub_match<const CharT*> SM;
24 SM sm = SM(); local
25 assert(sm.length() == 0);
27 sm.first = s;
28 sm.second = s + 3;
29 sm.matched = true;
30 assert(sm.length() == 3);
34 typedef std::sub_match<const CharT*> SM;
35 SM sm = SM(); local
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.submatch/
types.pass.cpp 33 typedef std::sub_match<char*> SM;
34 static_assert((std::is_same<SM::iterator, char*>::value), "");
35 static_assert((std::is_same<SM::value_type, char>::value), "");
36 static_assert((std::is_same<SM::difference_type, std::ptrdiff_t>::value), "");
37 static_assert((std::is_same<SM::string_type, std::string>::value), "");
38 static_assert((std::is_convertible<SM*, std::pair<char*, char*>*>::value), "");
40 SM sm; local
41 sm.first = nullptr;
42 sm.second = nullptr
53 SM sm; local
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/re/re.submatch/re.submatch.members/
default.pass.cpp 24 typedef std::sub_match<const CharT*> SM;
25 SM sm; local
26 assert(sm.matched == false);
30 typedef std::sub_match<const CharT*> SM;
31 SM sm; local
32 assert(sm.matched == false);
length.pass.cpp 24 typedef std::sub_match<const CharT*> SM;
25 SM sm = SM(); local
26 assert(sm.length() == 0);
28 sm.first = s;
29 sm.second = s + 3;
30 sm.matched = true;
31 assert(sm.length() == 3);
35 typedef std::sub_match<const CharT*> SM;
36 SM sm = SM(); local
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/re/re.submatch/
types.pass.cpp 34 typedef std::sub_match<char*> SM;
35 static_assert((std::is_same<SM::iterator, char*>::value), "");
36 static_assert((std::is_same<SM::value_type, char>::value), "");
37 static_assert((std::is_same<SM::difference_type, std::ptrdiff_t>::value), "");
38 static_assert((std::is_same<SM::string_type, std::string>::value), "");
39 static_assert((std::is_convertible<SM*, std::pair<char*, char*>*>::value), "");
41 SM sm; local
42 sm.first = nullptr;
43 sm.second = nullptr
54 SM sm; local
    [all...]
  /external/clang/include/clang/Basic/
SanitizerBlacklist.h 28 SourceManager &SM;
32 SourceManager &SM);
PrettyStackTrace.h 28 SourceManager &SM;
32 PrettyStackTraceLoc(SourceManager &sm, SourceLocation L, const char *Msg)
33 : SM(sm), Loc(L), Message(Msg) {}
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Basic/
SanitizerBlacklist.h 28 SourceManager &SM;
32 SourceManager &SM);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Basic/
SanitizerBlacklist.h 28 SourceManager &SM;
32 SourceManager &SM);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Basic/
SanitizerBlacklist.h 28 SourceManager &SM;
32 SourceManager &SM);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
SanitizerBlacklist.h 28 SourceManager &SM;
32 SourceManager &SM);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Basic/
SanitizerBlacklist.h 28 SourceManager &SM;
32 SourceManager &SM);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Basic/
SanitizerBlacklist.h 28 SourceManager &SM;
32 SourceManager &SM);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Basic/
SanitizerBlacklist.h 28 SourceManager &SM;
32 SourceManager &SM);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
SanitizerBlacklist.h 28 SourceManager &SM;
32 SourceManager &SM);

Completed in 370 milliseconds

1 2 3 4 5 6 7 8 91011>>