OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Content
(Results
1 - 25
of
48
) sorted by relevancy
1
2
/src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
ArchiveYAML.h
47
Optional<yaml::BinaryRef>
Content
;
53
Optional<yaml::BinaryRef>
Content
;
ArchiveYAML.h
47
Optional<yaml::BinaryRef>
Content
;
53
Optional<yaml::BinaryRef>
Content
;
MinidumpYAML.h
99
yaml::BinaryRef
Content
;
149
yaml::BinaryRef
Content
;
152
RawContentStream(minidump::StreamType Type, ArrayRef<uint8_t>
Content
= {})
153
: Stream(StreamKind::RawContent, Type),
Content
(
Content
),
154
Size(
Content
.size()) {}
244
BinaryRef &
Content
);
MinidumpYAML.h
99
yaml::BinaryRef
Content
;
149
yaml::BinaryRef
Content
;
152
RawContentStream(minidump::StreamType Type, ArrayRef<uint8_t>
Content
= {})
153
: Stream(StreamKind::RawContent, Type),
Content
(
Content
),
154
Size(
Content
.size()) {}
244
BinaryRef &
Content
);
/src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
PDBFileBuilder.h
75
std::unique_ptr<MemoryBuffer>
Content
;
PDBFileBuilder.h
75
std::unique_ptr<MemoryBuffer>
Content
;
/src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
DwarfCFIEHPrinter.h
112
Expected<ArrayRef<uint8_t>>
Content
= Obj.getSegmentContents(*EHFramePHdr);
113
if (!
Content
)
114
reportError(
Content
.takeError(), ObjF.getFileName());
116
DataExtractor DE(*
Content
,
DwarfCFIEHPrinter.h
112
Expected<ArrayRef<uint8_t>>
Content
= Obj.getSegmentContents(*EHFramePHdr);
113
if (!
Content
)
114
reportError(
Content
.takeError(), ObjF.getFileName());
116
DataExtractor DE(*
Content
,
/src/external/apache2/llvm/dist/clang/include/clang/Basic/
FileEntry.h
346
/// The file
content
, if it is owned by the \p FileEntry.
347
std::unique_ptr<llvm::MemoryBuffer>
Content
;
FileEntry.h
346
/// The file
content
, if it is owned by the \p FileEntry.
347
std::unique_ptr<llvm::MemoryBuffer>
Content
;
/src/external/apache2/llvm/dist/clang/lib/Format/
BreakableToken.h
12
/// token type-specific logic to break long lines in tokens and reflow
content
49
///
content
of a logical line to start (potentially after introducing a line
54
/// a position of the
content
of a token where a reformatting might be done.
72
/// - getReflowSplit, for finding a split such that the
content
preceding it
76
/// of the
content
introduces a line break before it,
102
/// \p Offset is the byte offset from the start of the
content
of the line
115
/// \p Offset is the byte offset from the start of the
content
of the line
128
/// Returns the column at which
content
in line \p LineIndex starts,
138
/// Returns additional
content
indent required for the second line after the
139
///
content
at line \p LineIndex is broken
[
all
...]
BreakableToken.h
12
/// token type-specific logic to break long lines in tokens and reflow
content
49
///
content
of a logical line to start (potentially after introducing a line
54
/// a position of the
content
of a token where a reformatting might be done.
72
/// - getReflowSplit, for finding a split such that the
content
preceding it
76
/// of the
content
introduces a line break before it,
102
/// \p Offset is the byte offset from the start of the
content
of the line
115
/// \p Offset is the byte offset from the start of the
content
of the line
128
/// Returns the column at which
content
in line \p LineIndex starts,
138
/// Returns additional
content
indent required for the second line after the
139
///
content
at line \p LineIndex is broken
[
all
...]
BreakableToken.cpp
74
<< ",
Content
start: " << ContentStartColumn << "\n");
222
StringRef
Content
= Token.TokenText.substr(2).ltrim();
223
return
Content
.startswith("clang-format on") ||
224
Content
.startswith("clang-format off");
230
// Example: consider the
content
309
if (CommentPragmasRegex.match(
Content
[LineIndex]))
311
return getCommentSplit(
Content
[LineIndex].substr(TailOffset),
319
StringRef Text =
Content
[LineIndex].substr(TailOffset);
320
// Text is relative to the
content
line, but Whitespaces operates relative to
336
static bool mayReflowContent(StringRef
Content
) {
[
all
...]
BreakableToken.cpp
74
<< ",
Content
start: " << ContentStartColumn << "\n");
222
StringRef
Content
= Token.TokenText.substr(2).ltrim();
223
return
Content
.startswith("clang-format on") ||
224
Content
.startswith("clang-format off");
230
// Example: consider the
content
309
if (CommentPragmasRegex.match(
Content
[LineIndex]))
311
return getCommentSplit(
Content
[LineIndex].substr(TailOffset),
319
StringRef Text =
Content
[LineIndex].substr(TailOffset);
320
// Text is relative to the
content
line, but Whitespaces operates relative to
336
static bool mayReflowContent(StringRef
Content
) {
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Rewrite/
Rewriter.cpp
266
const SrcMgr::ContentCache *
Content
=
268
unsigned lineOffs =
Content
->SourceLineCache[lineNo];
370
const SrcMgr::ContentCache *
Content
=
374
unsigned parentLineOffs =
Content
->SourceLineCache[parentLineNo];
375
unsigned startLineOffs =
Content
->SourceLineCache[startLineNo];
400
unsigned offs =
Content
->SourceLineCache[lineNo];
Rewriter.cpp
266
const SrcMgr::ContentCache *
Content
=
268
unsigned lineOffs =
Content
->SourceLineCache[lineNo];
370
const SrcMgr::ContentCache *
Content
=
374
unsigned parentLineOffs =
Content
->SourceLineCache[parentLineNo];
375
unsigned startLineOffs =
Content
->SourceLineCache[startLineNo];
400
unsigned offs =
Content
->SourceLineCache[lineNo];
/src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
MachOEmitter.cpp
289
// If the section's
content
is specified in the 'DWARF' entry, we will
292
if (Sec.
content
)
296
"the '
content
' at the same time");
307
if (Sec.
content
) {
308
yaml::BinaryRef
Content
= *Sec.
content
;
309
Content
.writeAsBinary(OS);
310
ZeroFillBytes(OS, Sec.size -
Content
.binary_size());
MachOEmitter.cpp
289
// If the section's
content
is specified in the 'DWARF' entry, we will
292
if (Sec.
content
)
296
"the '
content
' at the same time");
307
if (Sec.
content
) {
308
yaml::BinaryRef
Content
= *Sec.
content
;
309
Content
.writeAsBinary(OS);
310
ZeroFillBytes(OS, Sec.size -
Content
.binary_size());
/src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/
Object.h
57
StringRef
Content
;
64
Section(StringRef SegName, StringRef SectName, StringRef
Content
)
67
Content
(
Content
) {}
90
// The raw
content
of the payload of the load command (located right after the
98
// corresponding
content
inside the binary.
237
/// step is done after binding. The
content
of the weak_bind info is an opcode
275
/// a uleb128 encoded offset which is location of the
content
named
Object.h
57
StringRef
Content
;
64
Section(StringRef SegName, StringRef SectName, StringRef
Content
)
67
Content
(
Content
) {}
90
// The raw
content
of the payload of the load command (located right after the
98
// corresponding
content
inside the binary.
237
/// step is done after binding. The
content
of the weak_bind info is an opcode
275
/// a uleb128 encoded offset which is location of the
content
named
/src/external/apache2/llvm/dist/clang/lib/AST/
CommentParser.cpp
559
SmallVector<InlineContentComment *, 8>
Content
;
566
break; // Block
content
or EOF ahead, finish this parapgaph.
569
Content
.push_back(S.actOnUnknownCommand(Tok.getLocation(),
579
if (
Content
.size() == 0)
593
Content
.push_back(S.actOnUnknownCommand(Tok.getLocation(),
600
Content
.push_back(parseInlineCommand());
622
if (
Content
.size() > 0)
623
Content
.back()->addTrailingNewline();
629
Content
.push_back(parseHTMLStartTag());
633
Content
.push_back(parseHTMLEndTag())
[
all
...]
CommentParser.cpp
559
SmallVector<InlineContentComment *, 8>
Content
;
566
break; // Block
content
or EOF ahead, finish this parapgaph.
569
Content
.push_back(S.actOnUnknownCommand(Tok.getLocation(),
579
if (
Content
.size() == 0)
593
Content
.push_back(S.actOnUnknownCommand(Tok.getLocation(),
600
Content
.push_back(parseInlineCommand());
622
if (
Content
.size() > 0)
623
Content
.back()->addTrailingNewline();
629
Content
.push_back(parseHTMLStartTag());
633
Content
.push_back(parseHTMLEndTag())
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/Object/
Wasm.h
113
ArrayRef<uint8_t>
Content
; // Section
content
/src/external/apache2/llvm/dist/llvm/lib/InterfaceStub/
ELFObjHandler.cpp
90
T
Content
;
195
DynStr.
Content
.add(Sym.Name);
197
DynStr.
Content
.add(Lib);
199
DynStr.
Content
.add(Stub.SoName.getValue());
208
ShStrTab.
Content
.add(Sec->Name);
210
ShStrTab.
Content
.finalize();
211
ShStrTab.Size = ShStrTab.
Content
.getSize();
212
DynStr.
Content
.finalize();
213
DynStr.Size = DynStr.
Content
.getSize();
222
DynSym.
Content
.add(DynStr.Content.getOffset(Sym.Name), Sym.Size, Bind
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Support/
Host.cpp
405
/* Clear the whole attr in case its
content
changed by syscall. */
1217
StringRef
Content
= P ? P->getBuffer() : "";
1218
return detail::getHostCPUNameForPowerPC(
Content
);
1223
StringRef
Content
= P ? P->getBuffer() : "";
1224
return detail::getHostCPUNameForARM(
Content
);
1229
StringRef
Content
= P ? P->getBuffer() : "";
1230
return detail::getHostCPUNameForS390x(
Content
);
Completed in 39 milliseconds
1
2
Indexes created Fri Jun 19 00:25:02 UTC 2026