HomeSort by relevance Sort by last modified time
    Searched defs:Str1 (Results 1 - 11 of 11) 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-error {{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/llvm/unittests/DebugInfo/PDB/
MappedBlockStreamTest.cpp 205 StringRef Str1;
207 EXPECT_NO_ERROR(R.readFixedString(Str1, 7));
208 EXPECT_EQ(Str1, StringRef("ABCDEFG"));
214 EXPECT_EQ(Str1.data() + 2, Str2.data());
225 StringRef Str1;
227 EXPECT_NO_ERROR(R.readFixedString(Str1, 6));
228 EXPECT_EQ(Str1, StringRef("ABCDEF"));
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/StrGather/
StrGather.h 78 WCHAR *Str1;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiStrGather/
StrGather.h 81 WCHAR *Str1;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/EbcDebugger/
EdbSupportString.c 505 CHAR16 *Str1;
510 for (Str1 = String; *Str1 != L'\0'; Str1 ++) {
512 if (*Str1 == *Str2) {
543 CHAR16 *Str1;
546 for (Str1 = String; *Str1 != L'\0'; Str1 ++) {
548 if (*Str1 == *Str2) {
    [all...]
  /external/llvm/unittests/ADT/
StringRefTest.cpp 285 StringRef Str1(" hello ");
289 EXPECT_EQ(StringRef(" hello"), Str1.rtrim());
292 EXPECT_EQ(StringRef("hello "), Str1.ltrim());
295 EXPECT_EQ(StringRef("hello"), Str1.trim());
601 StringRef Str1 = "hello";
603 StringRef Str1c = Str1.copy(Alloc);
605 EXPECT_TRUE(Str1.equals(Str1c));
606 EXPECT_NE(Str1.data(), Str1c.data());
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/DisplayEngineDxe/
ProcessOptions.c 228 CHAR16 *Str1;
249 Str1 = GetToken (Value1->Value.string, HiiHandle);
250 if (Str1 == NULL) {
259 FreePool (Str1);
263 *Result = StrCmp (Str1, Str2);
265 FreePool (Str1);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/SetupBrowserDxe/
Expression.c     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp 839 SmallString<128> Str1;
840 raw_svector_ostream OS1(Str1);
    [all...]
  /external/llvm/tools/llvm-readobj/
ELFDumper.cpp     [all...]

Completed in 314 milliseconds