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:MAX_LATITUDE
(Results
1 - 6
of
6
) sorted by relevance
/base/location/test/location_locator/source/
H
A
D
location_approximately_permission_test.cpp
71
parcel.WriteDouble(
MAX_LATITUDE
+ 1.0); // latitude is out of range
in HWTEST_F()
86
EXPECT_EQ(
MAX_LATITUDE
, newLocation->GetLatitude());
in HWTEST_F()
98
parcel.WriteDouble(-
MAX_LATITUDE
- 1.0); // latitude
in HWTEST_F()
113
EXPECT_EQ(-
MAX_LATITUDE
, newLocation->GetLatitude());
in HWTEST_F()
/base/location/services/location_locator/locator/source/
H
A
D
report_manager.cpp
405
if (lat < -
MAX_LATITUDE
) {
in ApproximatelyLocation()
406
lat = -
MAX_LATITUDE
;
in ApproximatelyLocation()
407
} else if (lat >
MAX_LATITUDE
) {
in ApproximatelyLocation()
408
lat =
MAX_LATITUDE
;
in ApproximatelyLocation()
/base/location/frameworks/cj/source/
H
A
D
geolocationmanager_utils.cpp
102
if (latitude < Location::MIN_LATITUDE || latitude > Location::
MAX_LATITUDE
) {
in CJReverseGeoCodeRequestToMessageParcel()
188
if (minLatitude < Location::MIN_LATITUDE || minLatitude > Location::
MAX_LATITUDE
) {
in CJGeoCodeRequestToMessageParcel()
194
if (maxLatitude < Location::MIN_LATITUDE || maxLatitude > Location::
MAX_LATITUDE
) {
in CJGeoCodeRequestToMessageParcel()
/base/location/interfaces/inner_api/include/
H
A
D
common_utils.h
94
static constexpr double
MAX_LATITUDE
= 90.0;
member
/base/location/frameworks/js/napi/source/
H
A
D
geofence_napi.cpp
170
if (fenceInfo.latitude >
MAX_LATITUDE
|| fenceInfo.latitude < MIN_LATITUDE) {
in CheckGeofenceParameter()
H
A
D
napi_util.cpp
365
if (minLatitude < MIN_LATITUDE || minLatitude >
MAX_LATITUDE
) {
in JsObjToGeoCodeRequest()
371
if (maxLatitude < MIN_LATITUDE || maxLatitude >
MAX_LATITUDE
) {
in JsObjToGeoCodeRequest()
407
if (latitude < MIN_LATITUDE || latitude >
MAX_LATITUDE
) {
in JsObjToReverseGeoCodeRequest()
Completed in 5 milliseconds