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:SourceFileMap
(Results
1 - 14
of
14
) sorted by relevance
/third_party/node/deps/v8/src/torque/
H
A
D
source-positions.cc
16
DEFINE_CONTEXTUAL_VARIABLE(
SourceFileMap
)
19
const std::string&
SourceFileMap
::PathFromV8Root(SourceId file) {
in PathFromV8Root()
25
std::string
SourceFileMap
::AbsolutePath(SourceId file) {
in AbsolutePath()
32
std::string
SourceFileMap
::PathFromV8RootWithoutExtension(SourceId file) {
in PathFromV8RootWithoutExtension()
42
SourceId
SourceFileMap
::AddSource(std::string path) {
in AddSource()
48
SourceId
SourceFileMap
::GetSourceId(const std::string& path) {
in GetSourceId()
58
std::vector<SourceId>
SourceFileMap
::AllSources() {
in AllSources()
59
SourceFileMap
& self = Get();
in AllSources()
69
bool
SourceFileMap
::FileRelativeToV8RootExists(const std::string& path) {
in FileRelativeToV8RootExists()
H
A
D
torque-compiler.cc
30
SourceId source_id =
SourceFileMap
::AddSource(path);
in ReadAndParseTorqueFile()
34
auto maybe_content = ReadFile(
SourceFileMap
::AbsolutePath(source_id));
in ReadAndParseTorqueFile()
118
SourceFileMap
::Scope source_map_scope(options.v8_root);
in CompileTorque()
120
SourceFileMap
::AddSource("dummy-filename.tq"));
in CompileTorque()
134
result.source_file_map =
SourceFileMap
::Get();
in CompileTorque()
143
SourceFileMap
::Scope source_map_scope(options.v8_root);
in CompileTorque()
160
result.source_file_map =
SourceFileMap
::Get();
in CompileTorque()
170
SourceFileMap
::Scope source_map_scope(options.v8_root);
in CompileTorqueForKythe()
182
SourceId source_id =
SourceFileMap
::AddSource(unit.source_file_path);
in CompileTorqueForKythe()
192
result.source_file_map =
SourceFileMap
in CompileTorqueForKythe()
[all...]
H
A
D
source-positions.h
29
friend class
SourceFileMap
;
89
class V8_EXPORT_PRIVATE
SourceFileMap
: public ContextualClass<
SourceFileMap
> {
class
91
explicit
SourceFileMap
(std::string v8_root) : v8_root_(std::move(v8_root)) {}
in SourceFileMap()
function in v8::internal::torque::SourceFileMap
106
return
SourceFileMap
::PathFromV8Root(pos.source) + ":" +
in PositionAsString()
113
<<
SourceFileMap
::PathFromV8Root(pos.source)
in operator <<()
H
A
D
torque-compiler.h
47
base::Optional<
SourceFileMap
> source_file_map;
H
A
D
torque.cc
65
// PositionAsString requires the
SourceFileMap
to be set to
in WrappedMain()
67
SourceFileMap
::Scope source_file_map_scope(*result.source_file_map);
in WrappedMain()
H
A
D
cc-generator.cc
75
const std::string& file =
SourceFileMap
::AbsolutePath(pos.source);
in EmitSourcePosition()
351
SourceFileMap
::PathFromV8Root(instruction.pos.source));
in EmitInstruction()
H
A
D
kythe-data.cc
18
p.file_path =
SourceFileMap
::PathFromV8Root(pos.source);
in MakeKythePosition()
H
A
D
csa-generator.cc
92
const std::string& file =
SourceFileMap
::AbsolutePath(pos.source);
in EmitSourcePosition()
868
SourceFileMap
::PathFromV8Root(instruction.pos.source));
in EmitInstruction()
H
A
D
implementation-visitor.cc
86
for (SourceId source :
SourceFileMap
::AllSources()) {
in BeginGeneratedFiles()
98
SourceFileMap
::PathFromV8RootWithoutExtension(source) +
in BeginGeneratedFiles()
117
UnderlinifyPath(
SourceFileMap
::PathFromV8Root(source)) + "_CSA_H_";
in BeginGeneratedFiles()
130
<<
SourceFileMap
::PathFromV8RootWithoutExtension(source)
in BeginGeneratedFiles()
143
for (SourceId file :
SourceFileMap
::AllSources()) {
in EndGeneratedFiles()
153
UnderlinifyPath(
SourceFileMap
::PathFromV8Root(file)) + "_CSA_H_";
in EndGeneratedFiles()
1775
for (SourceId file :
SourceFileMap
::AllSources()) {
in GenerateImplementation()
1777
dir + "/" +
SourceFileMap
::PathFromV8RootWithoutExtension(file);
in GenerateImplementation()
1789
SourceFileMap
::PathFromV8RootWithoutExtension(include);
in GenerateImplementation()
5364
for (SourceId file :
SourceFileMap
in GenerateExportedMacrosAssembler()
[all...]
H
A
D
types.cc
941
SourceFileMap
::PathFromV8Root(GetPosition().source).substr(), "test/");
in AttributedToFile()
945
return
SourceFileMap
::GetSourceId("src/objects/torque-defined-classes.tq");
in AttributedToFile()
H
A
D
torque-parser.cc
1228
if (!
SourceFileMap
::FileRelativeToV8RootExists(import_path)) {
in ProcessTorqueImportDeclaration()
1232
auto import_id =
SourceFileMap
::GetSourceId(import_path);
in ProcessTorqueImportDeclaration()
/third_party/node/deps/v8/src/torque/ls/
H
A
D
message-handler.cc
72
std::string error_file =
SourceFileMap
::AbsolutePath(source);
in ResetCompilationErrorDiagnostics()
120
id.IsValid() ?
SourceFileMap
::AbsolutePath(id) : "<unknown>";
in GetOrCreateNotificationForSource()
184
SourceFileMap
::Get() = *result.source_file_map;
in CompilationFinished()
272
SourceFileMap
::GetSourceId(request.params().textDocument().uri());
in HandleGotoDefinitionRequest()
309
SourceFileMap
::GetSourceId(request.params().textDocument().uri());
in HandleDocumentSymbolRequest()
H
A
D
torque-language-server.cc
24
SourceFileMap
::Scope source_file_map_scope("");
in WrappedMain()
H
A
D
message.h
244
set_uri(
SourceFileMap
::AbsolutePath(position.source));
in SetTo()
Completed in 22 milliseconds