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_LONGITUDE
(Results
1 - 6
of
6
) sorted by relevance
/base/location/test/location_locator/source/
H
A
D
location_approximately_permission_test.cpp
72
parcel.WriteDouble(
MAX_LONGITUDE
+ 1.0); // longitude is out of range
in HWTEST_F()
87
EXPECT_EQ(
MAX_LONGITUDE
, newLocation->GetLongitude());
in HWTEST_F()
99
parcel.WriteDouble(-
MAX_LONGITUDE
- 1.0); // longitude
in HWTEST_F()
114
EXPECT_EQ(-
MAX_LONGITUDE
, newLocation->GetLongitude());
in HWTEST_F()
/base/location/services/location_locator/locator/source/
H
A
D
report_manager.cpp
412
if (lon < -
MAX_LONGITUDE
) {
in ApproximatelyLocation()
413
lon = -
MAX_LONGITUDE
;
in ApproximatelyLocation()
414
} else if (lon >
MAX_LONGITUDE
) {
in ApproximatelyLocation()
415
lon =
MAX_LONGITUDE
;
in ApproximatelyLocation()
/base/location/frameworks/cj/source/
H
A
D
geolocationmanager_utils.cpp
105
if (longitude < Location::MIN_LONGITUDE || longitude > Location::
MAX_LONGITUDE
) {
in CJReverseGeoCodeRequestToMessageParcel()
191
if (minLongitude < Location::MIN_LONGITUDE || minLongitude > Location::
MAX_LONGITUDE
) {
in CJGeoCodeRequestToMessageParcel()
197
if (maxLongitude < Location::MIN_LONGITUDE || maxLongitude > Location::
MAX_LONGITUDE
) {
in CJGeoCodeRequestToMessageParcel()
/base/location/interfaces/inner_api/include/
H
A
D
common_utils.h
96
static constexpr double
MAX_LONGITUDE
= 180.0;
member
/base/location/frameworks/js/napi/source/
H
A
D
geofence_napi.cpp
174
if (fenceInfo.longitude >
MAX_LONGITUDE
|| fenceInfo.longitude < MIN_LONGITUDE) {
in CheckGeofenceParameter()
H
A
D
napi_util.cpp
368
if (minLongitude < MIN_LONGITUDE || minLongitude >
MAX_LONGITUDE
) {
in JsObjToGeoCodeRequest()
374
if (maxLongitude < MIN_LONGITUDE || maxLongitude >
MAX_LONGITUDE
) {
in JsObjToGeoCodeRequest()
410
if (longitude < MIN_LONGITUDE || longitude >
MAX_LONGITUDE
) {
in JsObjToReverseGeoCodeRequest()
Completed in 6 milliseconds