Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:outStream
(Results
1 - 13
of
13
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/x86_64/assembler/
H
A
D
elf_file.h
49
virtual void WriteSection(std::ofstream &
outStream
) = 0;
158
virtual void WriteSection(std::ofstream &
outStream
) override
160
outStream
.write(reinterpret_cast<const char *>(data.data()), data.size());
230
void WriteSection(std::ofstream &
outStream
) override
232
outStream
.write(reinterpret_cast<const char *>(relas.data()), relas.size() * sizeof(Rela));
262
void WriteSection(std::ofstream &
outStream
) override
264
outStream
.write(reinterpret_cast<const char *>(symbols.data()), symbols.size() * sizeof(Symbol));
H
A
D
assembler.h
67
outFStream <<
outStream
.str();
in CloseOutput()
74
outStream
<< val;
in Emit()
79
outStream
<< str;
in Emit()
84
outStream
.write(reinterpret_cast<const char *>(data), sizeInByte);
in Emit()
389
std::ostringstream
outStream
;
member in assembler::Assembler
H
A
D
asm_assembler.h
54
options.GetLogStream() <<
outStream
.str();
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/
H
A
D
mpl_logging.h
135
LogInfo() :
outStream
(stdout), outMode(kLmComplex) {}
in LogInfo()
141
fclose(
outStream
);
in ~LogInfo()
153
outStream
= &stream;
in SetLogDevice()
159
FILE *
outStream
;
member in maple::LogInfo
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/
H
A
D
emit.h
163
fileStream <<
outStream
.str();
in CloseOutput()
235
outStream
<< val;
in Emit()
241
outStream
<< val.GetExtValue();
in Emit()
248
outStream
<< str;
in Emit()
254
outStream
<< str;
in Emit()
260
outStream
.write(reinterpret_cast<const char *>(data), size);
in Emit()
266
outStream
.seekp(offset);
in SetFileOffset()
341
std::ostringstream
outStream
;
member in maplebe::Emitter
H
A
D
ifile.h
107
virtual void WriteSection(std::ostringstream &
outStream
) = 0;
248
virtual void WriteSection(std::ostringstream &
outStream
) override
250
outStream
.write(reinterpret_cast<const char *>(data.data()), data.size());
374
void WriteSection(std::ostringstream &
outStream
) override
376
outStream
.write(reinterpret_cast<const char *>(symbols.data()), symbols.size() * sizeof(Symbol));
433
void WriteSection(std::ostringstream &
outStream
) override
435
outStream
.write(reinterpret_cast<const char *>(relas.data()), relas.size() * sizeof(Rela));
H
A
D
obj_emit.h
498
fileStream <<
outStream
.str();
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/aarch64/
H
A
D
aarch64_emitter.h
35
fileStream <<
outStream
.str();
40
options.GetLogStream() <<
outStream
.str();
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/x86_64/
H
A
D
asm_assembler.cpp
251
std::ios::fmtflags flag(this->
outStream
.flags());
in EmitHexUnsigned()
252
this->
outStream
<< "0x" << std::hex << num;
in EmitHexUnsigned()
253
(void)this->
outStream
.flags(flag);
in EmitHexUnsigned()
258
std::ios::fmtflags flag(
outStream
.flags());
in EmitDecUnsigned()
259
outStream
<< std::dec << num;
in EmitDecUnsigned()
260
(void)
outStream
.flags(flag);
in EmitDecUnsigned()
265
std::ios::fmtflags flag(
outStream
.flags());
in EmitDecSigned()
266
outStream
<< std::dec << num;
in EmitDecSigned()
267
(void)
outStream
.flags(flag);
in EmitDecSigned()
394
outStream
<< strLabelI
in EmitDwFormStrp()
[all...]
H
A
D
elf_assembler.cpp
707
(void)
outStream
.seekp(offset);
in SetFileOffset()
/arkcompiler/ets_frontend/ets2panda/declgen_ets2ts/
H
A
D
declgenEts2Ts.cpp
677
std::ofstream
outStream
(outPath);
in GenerateTsDeclarations()
678
if (
outStream
.fail()) {
in GenerateTsDeclarations()
683
outStream
<< declBuilder.Output().str();
in GenerateTsDeclarations()
684
outStream
.close();
in GenerateTsDeclarations()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
H
A
D
emit.cpp
84
outStream
<< ".L." << idx << "__" << labIdx;
in EmitLabelRef()
94
outStream
<< ":\n";
in EmitStmtLabel()
104
outStream
<< ".L." << idx << "__" << labIdx;
in EmitLabelForFunc()
2771
std::ios::fmtflags flag(
outStream
.flags());
in EmitAsmLabel()
2772
outStream
<< std::dec << num;
in EmitAsmLabel()
2773
outStream
.flags(flag);
in EmitAsmLabel()
2780
std::ios::fmtflags flag(
outStream
.flags());
in EmitAsmLabel()
2781
outStream
<< std::dec << num;
in EmitAsmLabel()
2782
outStream
.flags(flag);
in EmitAsmLabel()
2789
std::ios::fmtflags flag(
outStream
in EmitAsmLabel()
[all...]
H
A
D
obj_emit.cpp
145
section->WriteSection(
outStream
);
in WriteObjFile()
Completed in 18 milliseconds