OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TypedText
(Results
1 - 7
of
7
) sorted by null
/external/clang/include/clang/ASTMatchers/Dynamic/
Registry.h
39
MatcherCompletion(StringRef
TypedText
, StringRef MatcherDecl,
41
:
TypedText
(
TypedText
), MatcherDecl(MatcherDecl),
45
std::string
TypedText
;
58
return
TypedText
== Other.
TypedText
&& MatcherDecl == Other.MatcherDecl;
/external/llvm/include/llvm/LineEditor/
LineEditor.h
69
Completion(const std::string &
TypedText
, const std::string &DisplayText)
70
:
TypedText
(
TypedText
), DisplayText(DisplayText) {}
74
std::string
TypedText
;
/external/clang/unittests/ASTMatchers/Dynamic/
ParserTest.cpp
283
EXPECT_EQ("Stmt(", Comps[0].
TypedText
);
289
EXPECT_EQ("bind(\"", Comps[0].
TypedText
);
300
EXPECT_EQ("nameX", Comps[0].
TypedText
);
312
EXPECT_EQ("aramA", Comps[0].
TypedText
);
315
EXPECT_EQ("arameter(", Comps[1].
TypedText
);
320
EXPECT_EQ("arent(", Comps[2].
TypedText
);
RegistryTest.cpp
115
bool hasCompletion(const CompVector &Comps, StringRef
TypedText
,
119
if (I->
TypedText
==
TypedText
&&
/external/llvm/lib/LineEditor/
LineEditor.cpp
40
std::string CommonPrefix = Comps[0].
TypedText
;
44
size_t Len = std::min(CommonPrefix.size(), I->
TypedText
.size());
47
if (CommonPrefix[CommonLen] != I->
TypedText
[CommonLen])
/external/clang/lib/ASTMatchers/Dynamic/
Parser.cpp
441
if (StringRef(Completion.
TypedText
).startswith(CompToken.Text) &&
443
Completions.emplace_back(Completion.
TypedText
.substr(CompToken.Text.size()),
585
return A.
TypedText
< B.
TypedText
;
Registry.cpp
556
std::string
TypedText
= Name;
557
TypedText
+= "(";
559
TypedText
+= ")";
561
TypedText
+= "\"";
563
Completions.emplace_back(
TypedText
, OS.str(), MaxSpecificity);
Completed in 115 milliseconds