HomeSort by relevance Sort by last modified time
    Searched defs:Str1 (Results 1 - 5 of 5) 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/IR/
MDBuilderTest.cpp 28 MDString *Str1 = MDHelper.createString("string");
30 EXPECT_EQ(Str1->getString(), StringRef("string"));
  /external/chromium_org/third_party/cython/src/Cython/Plex/
Regexps.py 434 def Str1(s):
436 Str1(s) is an RE which matches the literal string |s|.
448 return Str1(strs[0])
450 result = Alt(*tuple(map(Str1, strs)))
  /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/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp     [all...]

Completed in 258 milliseconds