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:nextTag
(Results
1 - 4
of
4
) sorted by relevance
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H
A
D
CodedInputStreamReader.java
56
private int
nextTag
= NEXT_TAG_UNSET;
field in CodedInputStreamReader
77
if (
nextTag
!= NEXT_TAG_UNSET) {
in getFieldNumber()
78
tag =
nextTag
;
in getFieldNumber()
79
nextTag
= NEXT_TAG_UNSET;
in getFieldNumber()
304
int
nextTag
= input.readTag();
in readDoubleList()
305
if (
nextTag
!= tag) {
in readDoubleList()
307
this.
nextTag
=
nextTag
;
in readDoubleList()
330
int
nextTag
= input.readTag();
in readDoubleList()
331
if (
nextTag
!
in readDoubleList()
[all...]
H
A
D
BinaryReader.java
383
int
nextTag
= readVarint32();
in readDoubleList()
384
if (
nextTag
!= tag) {
in readDoubleList()
412
int
nextTag
= readVarint32();
in readDoubleList()
413
if (
nextTag
!= tag) {
in readDoubleList()
447
int
nextTag
= readVarint32();
in readFloatList()
448
if (
nextTag
!= tag) {
in readFloatList()
476
int
nextTag
= readVarint32();
in readFloatList()
477
if (
nextTag
!= tag) {
in readFloatList()
511
int
nextTag
= readVarint32();
in readUInt64List()
512
if (
nextTag
!
in readUInt64List()
[all...]
/third_party/protobuf/csharp/src/Google.Protobuf/
H
A
D
ParsingPrimitives.cs
74
// The "
nextTag
" logic is there only as an optimization for reading non-packed repeated / map
in ParseTag()
79
state.lastTag = state.
nextTag
;
in ParseTag()
151
return state.
nextTag
;
in PeekTag()
155
state.
nextTag
= ParseTag(ref buffer, ref state);
in PeekTag()
158
return state.
nextTag
;
in PeekTag()
H
A
D
ParserInternalState.cs
94
internal uint
nextTag
;
field
Completed in 4 milliseconds