OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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/IR/
MDBuilderTest.cpp
27
MDString *
Str1
= MDHelper.createString("string");
29
EXPECT_EQ(
Str1
->getString(), StringRef("string"));
/external/llvm/unittests/ADT/
StringRefTest.cpp
226
StringRef
Str1
(" hello ");
230
EXPECT_EQ(StringRef(" hello"),
Str1
.rtrim());
233
EXPECT_EQ(StringRef("hello "),
Str1
.ltrim());
236
EXPECT_EQ(StringRef("hello"),
Str1
.trim());
/external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp
540
StringRef
Str1
, Str2;
541
bool HasStr1 = getConstantStringInfo(Str1P,
Str1
);
546
return ConstantInt::get(CI->getType(),
Str1
.compare(Str2));
548
if (HasStr1 &&
Str1
.empty()) // strcmp("", x) -> -*x
599
StringRef
Str1
, Str2;
600
bool HasStr1 = getConstantStringInfo(Str1P,
Str1
);
605
StringRef SubStr1 =
Str1
.substr(0, Length);
610
if (HasStr1 &&
Str1
.empty()) // strncmp("", x, n) -> -*x
[
all
...]
/external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp
860
SmallString<128>
Str1
;
861
raw_svector_ostream OS1(
Str1
);
[
all
...]
/external/llvm/lib/MC/MCParser/
AsmParser.cpp
[
all
...]
Completed in 226 milliseconds