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:setNumberValue
(Results
1 - 8
of
8
) sorted by relevance
/third_party/protobuf/java/util/src/test/java/com/google/protobuf/util/
H
A
D
ValuesTest.java
55
assertThat(Values.of(100)).isEqualTo(Value.newBuilder().
setNumberValue
(100).build());
in testOfNumeric_ConstructsValue()
56
assertThat(Values.of(1000L)).isEqualTo(Value.newBuilder().
setNumberValue
(1000).build());
in testOfNumeric_ConstructsValue()
57
assertThat(Values.of(1000.23f)).isEqualTo(Value.newBuilder().
setNumberValue
(1000.23f).build());
in testOfNumeric_ConstructsValue()
58
assertThat(Values.of(10000.23)).isEqualTo(Value.newBuilder().
setNumberValue
(10000.23).build());
in testOfNumeric_ConstructsValue()
H
A
D
JsonFormatTest.java
820
structBuilder.putFields("number_value", Value.newBuilder().
setNumberValue
(1.25).build());
in testStruct()
823
subStructBuilder.putFields("number_value", Value.newBuilder().
setNumberValue
(1234).build());
in testStruct()
827
listBuilder.addValues(Value.newBuilder().
setNumberValue
(1.125).build());
in testStruct()
856
listBuilder.addValues(Value.newBuilder().
setNumberValue
(31831.125).build());
in testStruct()
1060
structBuilder.putFields("number", Value.newBuilder().
setNumberValue
(1.125).build());
in testAnyFields()
1074
valueBuilder.
setNumberValue
(1);
in testAnyFields()
1106
Value numberValue = Value.newBuilder().
setNumberValue
(1.125).build();
in testAnyInMaps()
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/
H
A
D
Values.java
55
return Value.newBuilder().
setNumberValue
(value).build();
in of()
/third_party/protobuf/php/src/Google/Protobuf/
H
A
D
Value.php
103
public function
setNumberValue
($var)
function
/third_party/protobuf/php/tests/
H
A
D
memory_leak_test.php
171
$from->
setNumberValue
(1);
H
A
D
EncodeDecodeTest.php
1007
$m->
setNumberValue
(1.5);
1031
$sub->
setNumberValue
(1.5);
1057
$sub->
setNumberValue
(1.5);
H
A
D
WellKnownTest.php
280
$m->
setNumberValue
(1.0);
/third_party/protobuf/php/src/Google/Protobuf/Internal/
H
A
D
Message.php
1199
$this->
setNumberValue
($array);
Completed in 9 milliseconds