OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Result
(Results
1 - 25
of
680
) sorted by relevancy
1
2
3
4
5
6
7
8
9
10
11
>>
/src/external/apache2/llvm/dist/clang/tools/clang-format/fuzzer/
ClangFormatFuzzer.cpp
23
auto
Result
= applyAllReplacements(s, Replaces);
26
if (!
Result
) {}
/src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/DIA/
DIAUtils.h
19
HRESULT
Result
= (Object.*Func)(&Str16);
20
if (S_OK !=
Result
)
/src/external/apache2/llvm/dist/llvm/lib/Remarks/
RemarkFormat.cpp
21
auto
Result
= StringSwitch<Format>(FormatStr)
27
if (
Result
== Format::Unknown)
32
return
Result
;
36
auto
Result
=
43
if (
Result
== Format::Unknown)
46
return
Result
;
/src/external/gpl3/binutils/dist/gprofng/src/
QLParser.h
36
struct
Result
43
Result
() : in (std::cin.rdbuf ()), out (NULL) { }
44
Result
(const char *instr) : streamify (std::string (instr)),
54
~
Result
()
/src/external/gpl3/binutils.old/dist/gprofng/src/
QLParser.h
36
struct
Result
43
Result
() : in (std::cin.rdbuf ()), out (NULL) { }
44
Result
(const char *instr) : streamify (std::string (instr)),
54
~
Result
()
/src/external/apache2/llvm/dist/llvm/bindings/ocaml/bitwriter/
bitwriter_ocaml.c
26
int
Result
= LLVMWriteBitcodeToFile(M, String_val(Path));
27
return Val_bool(
Result
== 0);
33
int
Result
;
41
Result
= LLVMWriteBitcodeToFD(M, Int_val(FD), 0, Unbuffered);
42
return Val_bool(
Result
== 0);
/src/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/LLJITDumpObjects/
LLJITDumpObjects.cpp
67
int
Result
= Add1(42);
68
outs() << "add1(42) = " <<
Result
<< "\n";
/src/external/apache2/llvm/dist/llvm/lib/FuzzMutate/
OpDescriptor.cpp
34
std::vector<Constant *>
Result
;
35
makeConstantsWithType(T,
Result
);
36
return
Result
;
/src/external/apache2/llvm/dist/llvm/utils/not/
not.cpp
61
int
Result
= sys::ExecuteAndWait(*Program, Argv, None, {}, 0, 0, &ErrMsg);
67
if (ExpectCrash &&
Result
== 3)
68
Result
= -3;
70
if (
Result
< 0) {
80
return
Result
== 0;
/src/sys/external/bsd/acpica/dist/tools/efihello/
efihello.c
78
char *
Result
;
102
Result
= fgets (LineBuffer, LINE_SIZE, File);
103
if (!
Result
)
112
if (strncmp (
Result
, "exit", 4) == 0)
/src/external/apache2/llvm/dist/clang/lib/Driver/
DarwinSDKInfo.cpp
28
Expected<llvm::json::Value>
Result
=
30
if (!
Result
)
31
return
Result
.takeError();
33
if (const auto *Obj =
Result
->getAsObject()) {
/src/external/apache2/llvm/dist/clang/tools/libclang/
CXSourceLocation.h
34
CXSourceLocation
Result
= { { &SM, &LangOpts, },
36
return
Result
;
/src/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/LLJITWithCustomObjectLinkingLayer/
LLJITWithCustomObjectLinkingLayer.cpp
62
int
Result
= Add1(42);
63
outs() << "add1(42) = " <<
Result
<< "\n";
/src/external/apache2/llvm/dist/llvm/include/llvm/Support/
MemAlloc.h
26
void *
Result
= std::malloc(Sz);
27
if (
Result
== nullptr) {
35
return
Result
;
40
void *
Result
= std::calloc(Count, Sz);
41
if (
Result
== nullptr) {
49
return
Result
;
53
void *
Result
= std::realloc(Ptr, Sz);
54
if (
Result
== nullptr) {
62
return
Result
;
/src/external/apache2/llvm/dist/llvm/lib/IR/
Statepoint.cpp
27
StatepointDirectives
Result
;
34
Result
.StatepointID = StatepointID;
41
Result
.NumPatchBytes = NumPatchBytes;
43
return
Result
;
/src/external/apache2/llvm/dist/llvm/lib/Object/
TapiUniversal.cpp
25
Expected<std::unique_ptr<InterfaceFile>>
Result
= TextAPIReader::get(Source);
27
if (!
Result
) {
28
Err =
Result
.takeError();
31
ParsedFile = std::move(
Result
.get());
/src/external/apache2/llvm/dist/llvm/lib/TextAPI/
Platform.cpp
59
PlatformSet
Result
;
61
Result
.insert(mapToPlatformKind(Target));
62
return
Result
;
Symbol.cpp
21
std::string
Result
;
23
Result
+= "(undef) ";
25
Result
+= "(weak-def) ";
27
Result
+= "(weak-ref) ";
29
Result
+= "(tlv) ";
32
Result
+= Name.str();
35
Result
+= "(ObjC Class) " + Name.str();
38
Result
+= "(ObjC Class EH) " + Name.str();
41
Result
+= "(ObjC IVar) " + Name.str();
44
OS <<
Result
;
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
ValueProfileCollector.cpp
30
/// such that the plugin would append its
result
into the vector parameter.
77
std::vector<CandidateInfo>
Result
;
78
PImpl->get(Kind,
Result
);
79
return
Result
;
/src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
UopsBenchmarkRunner.cpp
20
std::vector<BenchmarkMeasure>
Result
;
31
Result
.push_back(BenchmarkMeasure::Create(IssueCounter->ProcResName,
39
Result
.push_back(
42
return std::move(
Result
);
/src/external/apache2/llvm/dist/llvm/tools/llvm-modextract/
llvm-modextract.cpp
61
SmallVector<char, 0>
Result
;
62
BitcodeWriter Writer(
Result
);
63
Result
.append(Ms[ModuleIndex].getBuffer().begin(),
66
Out->os() <<
Result
;
/src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
XCOFFDump.cpp
24
SmallVectorImpl<char> &
Result
) {
42
Result
.append(SymName.begin(), SymName.end());
71
std::string
Result
;
74
Result
= ("(idx: " + Twine(SymbolInfo.XCOFFSymInfo.Index.getValue()) +
78
Result
.append(SymbolName.begin(), SymbolName.end());
84
Result
.append(("[" + XCOFF::getMappingClassString(Smc) + "]").str());
87
return
Result
;
/src/external/apache2/llvm/dist/llvm/tools/llvm-reduce/
TestRunner.cpp
29
int
Result
= sys::ExecuteAndWait(
33
if (
Result
< 0) {
41
return !
Result
;
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/symbolizer/
sanitizer_symbolize.cc
37
std::string
Result
;
39
llvm::raw_string_ostream OS(
Result
);
46
Result
.c_str()) < MaxLength;
51
std::string
Result
;
53
llvm::raw_string_ostream OS(
Result
);
60
Result
.c_str()) < MaxLength;
67
std::string
Result
=
70
Result
.c_str()) < MaxLength
71
? static_cast<int>(
Result
.size() + 1)
/src/external/apache2/llvm/dist/clang/include/clang/Basic/
DiagnosticError.h
40
Optional<PartialDiagnosticAt>
Result
;
42
Result
= std::move(E.getDiagnostic());
44
return
Result
;
Completed in 24 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>
Indexes created Mon Apr 20 00:23:12 UTC 2026