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:current_element
(Results
1 - 5
of
5
) sorted by relevance
/third_party/cJSON/tests/
H
A
D
old_utils_tests.c
145
cJSON *
current_element
= NULL;
in sort_tests()
local
158
current_element
= sortme->child->next;
in sort_tests()
159
for (i = 1; (i < 26) && (
current_element
!= NULL) && (
current_element
->prev != NULL); i++)
in sort_tests()
161
TEST_ASSERT_TRUE(
current_element
->string[0] >=
current_element
->prev->string[0]);
in sort_tests()
162
current_element
=
current_element
->next;
in sort_tests()
/third_party/curl/lib/
H
A
D
hash.c
302
iter->
current_element
= NULL;
in Curl_hash_start_iterate()
314
if(iter->
current_element
)
in Curl_hash_next_element()
315
iter->
current_element
= iter->
current_element
->next;
in Curl_hash_next_element()
318
if(!iter->
current_element
) {
in Curl_hash_next_element()
322
iter->
current_element
= h->table[i].head;
in Curl_hash_next_element()
329
if(iter->
current_element
) {
in Curl_hash_next_element()
330
struct Curl_hash_element *he = iter->
current_element
->ptr;
in Curl_hash_next_element()
H
A
D
hash.h
71
struct Curl_llist_element *
current_element
;
member
/third_party/cJSON/
H
A
D
cJSON_Utils.c
303
cJSON *
current_element
= object;
in get_item_from_pointer()
local
311
while ((pointer[0] == '/') && (
current_element
!= NULL))
in get_item_from_pointer()
314
if (cJSON_IsArray(
current_element
))
in get_item_from_pointer()
322
current_element
= get_array_item(
current_element
, index);
in get_item_from_pointer()
324
else if (cJSON_IsObject(
current_element
))
in get_item_from_pointer()
326
current_element
=
current_element
->child;
in get_item_from_pointer()
328
while ((
current_element
!= NULL) && !compare_pointers((unsigned char*)
current_element
in get_item_from_pointer()
[all...]
H
A
D
cJSON.c
1786
cJSON *
current_element
= item->child;
in print_array()
local
1805
while (
current_element
!= NULL)
in print_array()
1807
if (!print_value(
current_element
, output_buffer))
in print_array()
1812
if (
current_element
->next)
in print_array()
1828
current_element
=
current_element
->next;
in print_array()
2130
cJSON *
current_element
= NULL;
in get_object_item()
local
2137
current_element
= object->child;
in get_object_item()
2140
while ((
current_element
!= NULL) && (
current_element
in get_object_item()
[all...]
Completed in 5 milliseconds