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:new_node
(Results
1 - 2
of
2
) sorted by relevance
/arkcompiler/runtime_core/libpandabase/utils/
H
A
D
list.h
236
auto
new_node
= static_cast<const ListNode *>(&value);
in InsertAfter()
local
237
new_node
->next_ = position.node_->next_;
in InsertAfter()
238
position.node_->next_ =
new_node
;
in InsertAfter()
239
return Iterator(
new_node
);
in InsertAfter()
565
Iterator insert(Iterator position, DListNode *
new_node
)
in insert()
argument
568
new_node
->next = position.node_;
in insert()
569
new_node
->prev = position.node_->prev;
in insert()
570
position.node_->prev->next =
new_node
;
in insert()
571
position.node_->prev =
new_node
;
in insert()
572
return Iterator(
new_node
);
in insert()
575
push_back(DListNode *
new_node
)
push_back()
argument
[all...]
/arkcompiler/runtime_core/static_core/libpandabase/utils/
H
A
D
list.h
548
Iterator insert(Iterator position, DListNode *
new_node
)
in insert()
argument
551
new_node
->next = position.node_;
in insert()
552
new_node
->prev = position.node_->prev;
in insert()
553
position.node_->prev->next =
new_node
;
in insert()
554
position.node_->prev =
new_node
;
in insert()
555
return Iterator(
new_node
);
in insert()
559
Iterator push_back(DListNode *
new_node
)
in push_back()
argument
561
return insert(end(),
new_node
);
in push_back()
Completed in 3 milliseconds