HomeSort by relevance Sort by last modified time
    Searched refs:Str1 (Results 1 - 2 of 2) sorted by null

  /external/clang/test/CXX/except/except.spec/
p5-pointers.cpp 75 struct Str1 { void f() throw(int); }; // expected-note {{previous declaration}}
76 void Str1::f() // expected-warning {{missing exception specification}}
82 void (Str1::*pfn1)() throw(int) = &Str1::f; // valid
83 void (Str1::*pfn2)() = &Str1::f; // valid
84 void (Str1::*pfn3)() throw() = &Str1::f; // expected-error {{not superset}}
  /external/llvm/lib/Transforms/Scalar/
SimplifyLibCalls.cpp 337 std::string Str1, Str2;
338 bool HasStr1 = GetConstantStringInfo(Str1P, Str1);
344 StringRef(Str1).compare(Str2));
346 if (HasStr1 && Str1.empty()) // strcmp("", x) -> -*x
400 std::string Str1, Str2;
401 bool HasStr1 = GetConstantStringInfo(Str1P, Str1);
406 StringRef SubStr1 = StringRef(Str1).substr(0, Length);
411 if (HasStr1 && Str1.empty()) // strncmp("", x, n) -> -*x
    [all...]

Completed in 2332 milliseconds