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:num_toks
(Results
1 - 2
of
2
) sorted by relevance
/third_party/ltp/testcases/kernel/fs/doio/
H
A
D
string_to_tokens.c
83
int
num_toks
= 0; /* number of tokens found */
in string_to_tokens()
local
93
if ((arg_array[
num_toks
] = strtok(arg_string, separator)) == NULL) {
in string_to_tokens()
97
for (
num_toks
= 1;
num_toks
< array_size;
num_toks
++) {
in string_to_tokens()
98
if ((arg_array[
num_toks
] = strtok(NULL, separator)) == NULL)
in string_to_tokens()
102
if (
num_toks
== array_size)
in string_to_tokens()
103
arg_array[
num_toks
] = NULL;
in string_to_tokens()
108
return (
num_toks
);
in string_to_tokens()
/third_party/ltp/pan/
H
A
D
splitstr.c
65
int
num_toks
= 0, max_toks = 20, i;
in splitstr()
local
110
arg_array[
num_toks
++] = cur_tok;
in splitstr()
112
if (
num_toks
== max_toks) {
in splitstr()
124
arg_array[
num_toks
] = NULL;
in splitstr()
129
for (i =
num_toks
+ 1; i < max_toks; i++)
in splitstr()
134
* arg_array = (char **)realloc((void *)arg_array, sizeof(char *)*
num_toks
+1 );*/
in splitstr()
137
*argcount =
num_toks
;
in splitstr()
Completed in 2 milliseconds