HomeSort by relevance Sort by last modified time
    Searched refs:Str1 (Results 1 - 6 of 6) 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/unittests/ADT/
StringRefTest.cpp 232 StringRef Str1(" hello ");
236 EXPECT_EQ(StringRef(" hello"), Str1.rtrim());
239 EXPECT_EQ(StringRef("hello "), Str1.ltrim());
242 EXPECT_EQ(StringRef("hello"), Str1.trim());
539 StringRef Str1 = "hello";
541 StringRef Str1c = Str1.copy(Alloc);
543 EXPECT_TRUE(Str1.equals(Str1c));
544 EXPECT_NE(Str1.data(), Str1c.data());
  /external/llvm/unittests/IR/
MDBuilderTest.cpp 28 MDString *Str1 = MDHelper.createString("string");
30 EXPECT_EQ(Str1->getString(), StringRef("string"));
  /external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp 575 StringRef Str1, Str2;
576 bool HasStr1 = getConstantStringInfo(Str1P, Str1);
581 return ConstantInt::get(CI->getType(), Str1.compare(Str2));
583 if (HasStr1 && Str1.empty()) // strcmp("", x) -> -*x
635 StringRef Str1, Str2;
636 bool HasStr1 = getConstantStringInfo(Str1P, Str1);
641 StringRef SubStr1 = Str1.substr(0, Length);
646 if (HasStr1 && Str1.empty()) // strncmp("", x, n) -> -*x
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp     [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp     [all...]

Completed in 293 milliseconds