| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/expression/ |
| H A D | find_zoom_curve.cpp | 18 case Kind::Let: { in findZoomCurve() 23 case Kind::Coalesce: { in findZoomCurve() 34 case Kind::Interpolate: { in findZoomCurve() 36 if (curve->getInput()->getKind() == Kind::CompoundExpression) { in findZoomCurve() 44 case Kind::Step: { in findZoomCurve() 46 if (step->getInput()->getKind() == Kind::CompoundExpression) { in findZoomCurve()
|
| H A D | parsing_context.cpp | 35 if (expression.getKind() == Kind::Var) { in isConstant() 40 if (expression.getKind() == Kind::CompoundExpression) { in isConstant() 47 bool isTypeAnnotation = expression.getKind() == Kind::Coercion || in isConstant() 48 expression.getKind() == Kind::Assertion || in isConstant() 49 expression.getKind() == Kind::ArrayAssertion; in isConstant() 63 childrenConstant = childrenConstant && child.getKind() == Kind::Literal; in isConstant() 191 if ((*parsed)->getKind() != Kind::Literal && isConstant(**parsed)) { in parse()
|
| H A D | is_constant.cpp | 12 if (expression.getKind() == Kind::CompoundExpression) { in isFeatureConstant() 32 if (expression.getKind() == Kind::CollatorExpression) { in isFeatureConstant()
|
| H A D | length.cpp | 9 : Expression(Kind::Length, type::Number), in Length() 33 if (e.getKind() == Kind::Length) { in operator ==()
|
| H A D | boolean_operator.cpp | 23 if (e.getKind() == Kind::Any) { in operator ==() 51 if (e.getKind() == Kind::All) { in operator ==()
|
| H A D | assertion.cpp | 11 Expression(Kind::Assertion, type_), in Assertion() 75 if (e.getKind() == Kind::Assertion) { in operator ==()
|
| H A D | collator_expression.cpp | 13 : Expression(Kind::CollatorExpression, type::Collator) in CollatorExpression() 76 if (e.getKind() == Kind::CollatorExpression) { in operator ==()
|
| H A D | equals.cpp | 16 : Expression(Kind::Equals, type::Boolean), in Equals() 56 if (e.getKind() == Kind::Equals) { in operator ==()
|
| H A D | coercion.cpp | 71 Expression(Kind::Coercion, std::move(type_)), in Coercion() 141 if (e.getKind() == Kind::Coercion) { in operator ==()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/storage/ |
| H A D | resource.cpp | 44 Resource::Kind::Style, in style() 51 Resource::Kind::Source, in source() 58 Resource::Kind::Image, in image() 65 return Resource{ Resource::Kind::SpriteImage, in spriteImage() 73 return Resource{ Resource::Kind::SpriteJSON, in spriteJSON() 81 Resource::Kind::Glyphs, in glyphs() 106 Resource::Kind::Tile, in tile()
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/core/cuda/ |
| H A D | scan.hpp | 61 template <ScanKind Kind, typename T, typename F> struct WarpScan 77 if( Kind == INCLUSIVE ) in operator ()() 95 template <ScanKind Kind , typename T, typename F> struct WarpScanNoComp 111 if( Kind == INCLUSIVE ) in operator ()() 135 template <ScanKind Kind , typename T, typename Sc, typename F> struct BlockScan 158 ptr [scan.warp_offset + warp ] = (Kind == INCLUSIVE) ? val : ptr [idx]; in operator ()()
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/core/cuda/ |
| H A D | scan.hpp | 61 template <ScanKind Kind, typename T, typename F> struct WarpScan 77 if( Kind == INCLUSIVE ) in operator ()() 95 template <ScanKind Kind , typename T, typename F> struct WarpScanNoComp 111 if( Kind == INCLUSIVE ) in operator ()() 135 template <ScanKind Kind , typename T, typename Sc, typename F> struct BlockScan 158 ptr [scan.warp_offset + warp ] = (Kind == INCLUSIVE) ? val : ptr [idx]; in operator ()()
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/ |
| H A D | scan.hpp | 61 template <ScanKind Kind, typename T, typename F> struct WarpScan 77 if( Kind == INCLUSIVE ) in operator ()() 95 template <ScanKind Kind , typename T, typename F> struct WarpScanNoComp 111 if( Kind == INCLUSIVE ) in operator ()() 135 template <ScanKind Kind , typename T, typename Sc, typename F> struct BlockScan 158 ptr [scan.warp_offset + warp ] = (Kind == INCLUSIVE) ? val : ptr [idx]; in operator ()()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/expression/ |
| H A D | let.hpp | 19 Expression(Kind::Let, result_->getType()), in Let() 30 if (e.getKind() == Kind::Let) { in operator ==() 53 Expression(Kind::Var, value_->getType()), in Var() 64 if (e.getKind() == Kind::Var) { in operator ==()
|
| H A D | literal.hpp | 16 : Expression(Kind::Literal, typeOf(value_)) in Literal() 21 : Expression(Kind::Literal, type_) in Literal() 34 if (e.getKind() == Kind::Literal) { in operator ==()
|
| H A D | expression.hpp | 117 enum class Kind : int32_t { enum 141 Expression(Kind kind_, type::Type type_) : kind(kind_), type(std::move(type_)) {} in Expression() 151 Kind getKind() const { return kind; }; in getKind() 209 Kind kind;
|
| H A D | error.hpp | 14 : Expression(Kind::Error, type::Error), in Error() 20 return e.getKind() == Kind::Error; in operator ==()
|
| H A D | array_assertion.hpp | 17 Expression(Kind::ArrayAssertion, type_), in ArrayAssertion() 27 if (e.getKind() == Kind::ArrayAssertion) { in operator ==()
|
| H A D | at.hpp | 14 Expression(Kind::At, input_->getType().get<type::Array>().itemType), in At() 25 if (e.getKind() == Kind::At) { in operator ==()
|
| H A D | boolean_operator.hpp | 15 Expression(Kind::Any, type::Boolean), in Any() 34 Expression(Kind::All, type::Boolean), in All()
|
| H A D | compound_expression.hpp | 68 Expression(Kind::CompoundExpression, signature.result), in CompoundExpressionBase() 114 if (e.getKind() == Kind::CompoundExpression) { in operator ==()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/ |
| H A D | online_file_source.cpp | 212 case Resource::Kind::Unknown: in request() 213 case Resource::Kind::Image: in request() 216 case Resource::Kind::Style: in request() 220 case Resource::Kind::Source: in request() 224 case Resource::Kind::Glyphs: in request() 228 case Resource::Kind::SpriteImage: in request() 229 case Resource::Kind::SpriteJSON: in request() 233 case Resource::Kind::Tile: in request()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/storage/ |
| H A D | resource_transform.hpp | 15 …using TransformCallback = std::function<std::string(Resource::Kind kind, const std::string&& url)>; 20 void transform(Resource::Kind, const std::string&& url, FinishedCallback&&);
|
| H A D | resource.hpp | 16 enum Kind : uint8_t { enum in mbgl::Resource 45 Resource(Kind kind_, in Resource() 73 Kind kind;
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/mbgl/storage/ |
| H A D | offline_database.cpp | 168 if (resource.kind == Resource::Kind::Tile) { in getInternal() 177 if (resource.kind == Resource::Kind::Tile) { in hasInternal() 214 if (resource.kind == Resource::Kind::Tile) { in putInternal() 657 if (resource.kind == Resource::Kind::Tile) { in putRegionResources() 681 && resource.kind == Resource::Kind::Tile in putRegionResourceInternal() 691 if (resource.kind == Resource::Kind::Tile) { in markUsed() 948 return resource.kind == Resource::Kind::Tile in exceedsOfflineMapboxTileCountLimit()
|