OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Rest
(Results
1 - 13
of
13
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/tools/llvm-lto2/
llvm-lto2.cpp
208
StringRef
Rest
= R;
210
std::tie(FileName,
Rest
) =
Rest
.split(',');
211
if (
Rest
.empty()) {
215
std::tie(SymbolName,
Rest
) =
Rest
.split(',');
217
for (char C :
Rest
) {
/src/external/apache2/llvm/dist/llvm/lib/IR/
DataLayout.cpp
271
StringRef &
Rest
= Split.second; // The
rest
of the string.
275
if (Error Err = split(
Rest
, ':', Split))
277
Rest
= Split.second;
284
} while (!
Rest
.empty());
313
if (
Rest
.empty())
316
if (Error Err = split(
Rest
, ':', Split))
325
if (
Rest
.empty())
328
if (Error Err = split(
Rest
, ':', Split))
342
if (!
Rest
.empty())
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
InclusionRewriter.cpp
316
StringRef
Rest
= TextToWrite;
317
while (!
Rest
.empty()) {
319
std::tie(LineText,
Rest
) =
Rest
.split(LocalEOL);
322
if (!
Rest
.empty())
/src/external/apache2/llvm/dist/llvm/lib/Option/
OptTable.cpp
186
StringRef
Rest
= Str.substr(Prefix.size());
188
?
Rest
.startswith_lower(I->Name)
189
:
Rest
.startswith(I->Name);
/src/external/apache2/llvm/dist/llvm/lib/Support/
JSON.cpp
683
const UTF8 *Data = reinterpret_cast<const UTF8 *>(S.data()), *
Rest
= Data;
684
if (LLVM_LIKELY(isLegalUTF8String(&
Rest
, Data + S.size())))
688
*ErrOffset =
Rest
- Data;
/src/external/apache2/llvm/dist/llvm/lib/ProfileData/
SampleProfReader.cpp
156
StringRef
Rest
= Input.substr(n1 + 2);
157
if (isDigit(
Rest
[0])) {
159
size_t n3 =
Rest
.find(' ');
161
if (
Rest
.getAsInteger(10, NumSamples))
164
if (
Rest
.substr(0, n3).getAsInteger(10, NumSamples))
180
n3 +=
Rest
.substr(n3).find_first_not_of(' ');
181
Rest
=
Rest
.substr(n3);
182
n3 =
Rest
.find_first_of(':');
190
StringRef AfterColon =
Rest
.substr(n3 + 1)
[
all
...]
/src/external/apache2/llvm/dist/llvm/tools/llvm-ar/
llvm-ar.cpp
1049
StringRef CommandStr,
Rest
;
1050
std::tie(CommandStr,
Rest
) = Line.split(' ');
1051
Rest
=
Rest
.trim();
1052
if (!
Rest
.empty() &&
Rest
.front() == '"' &&
Rest
.back() == '"')
1053
Rest
=
Rest
.drop_front().drop_back();
1066
object::Archive &Lib = readLibrary(
Rest
);
[
all
...]
/src/sys/dev/usb/
if_atureg.h
349
uint8_t
Rest
[11];
/src/external/apache2/llvm/dist/llvm/lib/MC/
ELFObjectWriter.cpp
1252
StringRef
Rest
= AliasName.substr(Pos);
1253
StringRef Tail =
Rest
;
1254
if (
Rest
.startswith("@@@"))
1255
Tail =
Rest
.substr(Symbol.isUndefined() ? 2 : 1);
1272
if (Symbol.isUndefined() &&
Rest
.startswith("@@") &&
1273
!
Rest
.startswith("@@@")) {
/src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/
X86AsmBackend.cpp
1152
const uint8_t
Rest
= ThisNopLength - Prefixes;
1153
if (
Rest
!= 0)
1154
OS.write(Nops[
Rest
- 1],
Rest
);
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
ScalarEvolutionExpander.cpp
464
// indexes into the array implied by the pointer operand; the
rest
of
916
/// Move parts of Base into
Rest
to leave Base with the minimal
919
static void ExposePointerBase(const SCEV *&Base, const SCEV *&
Rest
,
923
Rest
= SE.getAddExpr(
Rest
,
932
NewAddOps.back() =
Rest
;
933
Rest
= SE.getAddExpr(NewAddOps);
934
ExposePointerBase(Base,
Rest
, SE);
1588
const SCEV *
Rest
= SE.getAddRecExpr(NewOps, L,
1595
const SCEV *ExposedRest =
Rest
;
[
all
...]
/src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclBase.h
1272
Ptr = CurNode->
Rest
;
1287
Decls
Rest
= nullptr;
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExpr.cpp
725
llvm::BasicBlock *
Rest
= createBasicBlock("not.null");
726
Builder.CreateCondBr(IsNonNull,
Rest
, Done);
727
EmitBlock(
Rest
);
Completed in 75 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026