| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/ |
| H A D | event.cpp | 14 MBGL_DEFINE_ENUM(Event, { 15 { Event::General, "General" }, 16 { Event::Setup, "Setup" }, 17 { Event::Shader, "Shader" }, 18 { Event::ParseStyle, "ParseStyle" }, 19 { Event::ParseTile, "ParseTile" }, 20 { Event::Render, "Render" }, 21 { Event::Style, "Style" }, 22 { Event::Database, "Database" }, 23 { Event::HttpRequest, "HttpRequest" }, [all …]
|
| H A D | stopwatch.hpp | 14 …(watch) std::shared_ptr<util::stopwatch> watch = std::make_unique<util::stopwatch>(Event::Timing); 29 stopwatch(Event event = Event::General); 30 stopwatch(EventSeverity severity, Event event = Event::General); 31 stopwatch(std::string name, Event event = Event::General); 32 stopwatch(std::string name, EventSeverity severity, Event event = Event::General); 39 Event event = Event::General; 44 stopwatch(Event event = Event::General); 45 stopwatch(EventSeverity severity, Event event = Event::General); 46 stopwatch(const std::string &name, Event event = Event::General); 47 stopwatch(const std::string &name, EventSeverity severity, Event event = Event::General);
|
| H A D | logging.cpp | 27 void Log::record(EventSeverity severity, Event event, const std::string &msg) { in record() 31 void Log::record(EventSeverity severity, Event event, const char* format, ...) { in record() 41 void Log::record(EventSeverity severity, Event event, int64_t code, const char* format, ...) { in record() 51 void Log::record(EventSeverity severity, Event event, int64_t code, const std::string &msg) { in record() 60 logStream << "[" << Enum<Event>::toString(event) << "]"; in record()
|
| H A D | stopwatch.cpp | 13 stopwatch::stopwatch(Event event_) in stopwatch() 16 stopwatch::stopwatch(EventSeverity severity_, Event event_) in stopwatch() 19 stopwatch::stopwatch(std::string name_, Event event_) in stopwatch() 22 stopwatch::stopwatch(std::string name_, EventSeverity severity_, Event event_) in stopwatch()
|
| H A D | mapbox.cpp | 56 Log::Error(Event::ParseStyle, "Invalid style URL"); in normalizeStyleURL() 73 Log::Error(Event::ParseStyle, "Invalid sprite URL"); in normalizeSpriteURL() 91 Log::Error(Event::ParseStyle, "Invalid glyph URL"); in normalizeGlyphsURL() 108 Log::Error(Event::ParseStyle, "Invalid tile URL"); in normalizeTileURL()
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/ |
| H A D | event.py | 32 class Event(object): class 39 class HeartbeatEvent(Event): 45 Event.__init__(self) 386 class OperationStarted(Event): 389 Event.__init__(self) 392 class OperationCompleted(Event): 395 Event.__init__(self) 399 class OperationProgress(Event): 402 Event.__init__(self) 407 class ConfigParsed(Event): [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/util/ |
| H A D | logging.hpp | 20 …virtual bool onRecord(EventSeverity severity, Event event, int64_t code, const std::string &msg) =… 24 bool onRecord(EventSeverity, Event, int64_t, const std::string&) override { in onRecord() argument 40 static void Debug(Event event, Args&& ...args) { in Debug() 45 static void Info(Event event, Args&& ...args) { in Info() 50 static void Warning(Event event, Args&& ...args) { in Warning() 55 static void Error(Event event, Args&& ...args) { in Error() 60 static void Record(EventSeverity severity, Event event, Args&& ...args) { in Record() 69 static void record(EventSeverity severity, Event event, const std::string &msg); 70 static void record(EventSeverity severity, Event event, const char* format = "", ...); 71 …static void record(EventSeverity severity, Event event, int64_t code, const char* format = "", ...… [all …]
|
| H A D | event.hpp | 14 enum class Event : uint8_t { enum 36 const Event event; 51 constexpr Event disabledEvents[] = { 52 Event(-1) // Avoid zero size array 56 { EventSeverity::Debug, Event::Shader }
|
| H A D | run_loop.hpp | 34 enum class Event : uint8_t { enum in mbgl::util::RunLoop 52 void addWatch(int fd, Event, std::function<void(int, Event)>&& callback);
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/ |
| H A D | parser.cpp | 49 …Log::Warning(Event::ParseStyle, "current renderer implementation only supports style spec version … in parse() 67 Log::Warning(Event::ParseStyle, "center coordinate must be a longitude, latitude pair"); in parse() 132 Log::Warning(Event::ParseStyle, error.message); in parseTransition() 143 Log::Warning(Event::ParseStyle, error.message); in parseLight() 152 Log::Warning(Event::ParseStyle, "sources must be an object"); in parseSources() 163 Log::Warning(Event::ParseStyle, error.message); in parseSources() 176 Log::Warning(Event::ParseStyle, "layers must be an array"); in parseLayers() 182 Log::Warning(Event::ParseStyle, "layer must be an object"); in parseLayers() 187 Log::Warning(Event::ParseStyle, "layer must have an id"); in parseLayers() 193 Log::Warning(Event::ParseStyle, "layer id must be a string"); in parseLayers() [all …]
|
| H A D | style_impl.cpp | 65 Log::Error(Event::Setup, message.c_str()); in loadURL() 81 Log::Error(Event::ParseStyle, message.c_str()); in parse() 170 Log::Warning(Event::General, "Source '%s' is in use, cannot remove", id.c_str()); in removeSource() 301 Log::Error(Event::Style, "Failed to load source %s: %s", in onSourceError() 325 Log::Error(Event::Style, "Failed to load sprite: %s", util::toString(error).c_str()); in onSpriteError() 339 Log::Info(Event::General, "styleURL: %s", url.c_str()); in dumpDebugLogs()
|
| H A D | source.cpp | 35 Log::Info(Event::General, "Source::id: %s", getID().c_str()); in dumpDebugLogs() 36 Log::Info(Event::General, "Source::loaded: %d", loaded); in dumpDebugLogs()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/ |
| H A D | run_loop.cpp | 25 RunLoop::Event watchEvent = RunLoop::Event::None; in onEvent() 28 watchEvent = RunLoop::Event::Read; in onEvent() 31 watchEvent = RunLoop::Event::Write; in onEvent() 34 watchEvent = RunLoop::Event::ReadWrite; in onEvent() 49 std::function<void(int, RunLoop::Event)> eventCallback; 153 void RunLoop::addWatch(int fd, Event event, std::function<void(int, Event)>&& callback) { in addWatch() 178 case Event::Read: in addWatch() 181 case Event::Write: in addWatch() 184 case Event::ReadWrite: in addWatch()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/src/ |
| H A D | run_loop.cpp | 15 readPoll[fd].second(fd, Event::Read); in onReadEvent() 19 writePoll[fd].second(fd, Event::Write); in onWriteEvent() 92 void RunLoop::addWatch(int fd, Event event, std::function<void(int, Event)>&& cb) { in addWatch() 95 if (event == Event::Read || event == Event::ReadWrite) { in addWatch() 101 if (event == Event::Write || event == Event::ReadWrite) { in addWatch()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/ |
| H A D | max_interval_gap.hpp | 88 template <typename Event> 91 inline bool operator()(Event const& event1, Event const& event2) const in operator ()() 115 template <typename Event> 118 typedef typename Event::time_type event_time_type; 119 typedef typename Event::interval_type::difference_type difference_type; 138 inline void apply(Event const& event, PriorityQueue& queue) in apply() 143 queue.push(Event(event.interval(), false)); in apply()
|
| /OK3568_Linux_fs/kernel/Documentation/input/devices/ |
| H A D | cma3000_d0x.rst | 82 Event type 0 (Sync) 83 Event type 3 (Absolute) 84 Event code 0 (X) 89 Event code 1 (Y) 94 Event code 2 (Z) 99 Event code 40 (Misc) 103 Event type 4 (Misc)
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/tile/ |
| H A D | tile.cpp | 30 Log::Info(Event::General, "Tile::id: %s", util::toString(id).c_str()); in dumpDebugLogs() 31 Log::Info(Event::General, "Tile::renderable: %s", isRenderable() ? "yes" : "no"); in dumpDebugLogs() 32 Log::Info(Event::General, "Tile::complete: %s", isComplete() ? "yes" : "no"); in dumpDebugLogs()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/sprite/ |
| H A D | sprite_parser.cpp | 29 …Log::Error(Event::Sprite, "Can't create sprite with invalid metrics: %ux%u@%u,%u in %ux%u@%sx spri… in createStyleImage() 52 Log::Warning(Event::Sprite, "Value of '%s' must be an integer between 0 and 65535", in getUInt16() 66 Log::Warning(Event::Sprite, "Value of '%s' must be a number", name); in getDouble() 79 Log::Warning(Event::Sprite, "Value of '%s' must be a boolean", name); in getBoolean()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/gl/ |
| H A D | program.hpp | 74 Log::Warning(Event::OpenGL, in createProgram() 80 Log::Warning(Event::OpenGL, "Could not load cached program: %s", in createProgram() 91 Log::Warning(Event::OpenGL, "Caching program in: %s", (*cachePath).c_str()); in createProgram() 94 Log::Warning(Event::OpenGL, "Failed to cache program: %s", error.what()); in createProgram()
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/ |
| H A D | cuda.hpp | 666 void waitEvent(const Event& event); 695 class CV_EXPORTS Event class 706 explicit Event(CreateFlags flags = DEFAULT); 718 static float elapsedTime(const Event& start, const Event& end); 724 Event(const Ptr<Impl>& impl);
|
| H A D | cuda_stream_accessor.hpp | 77 CV_EXPORTS static cudaEvent_t getEvent(const Event& event); 78 CV_EXPORTS static Event wrapEvent(cudaEvent_t event);
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/core/ |
| H A D | cuda.hpp | 666 void waitEvent(const Event& event); 695 class CV_EXPORTS Event class 706 explicit Event(CreateFlags flags = DEFAULT); 718 static float elapsedTime(const Event& start, const Event& end); 724 Event(const Ptr<Impl>& impl);
|
| H A D | cuda_stream_accessor.hpp | 77 CV_EXPORTS static cudaEvent_t getEvent(const Event& event); 78 CV_EXPORTS static Event wrapEvent(cudaEvent_t event);
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/core/ |
| H A D | cuda.hpp | 666 void waitEvent(const Event& event); 695 class CV_EXPORTS Event class 706 explicit Event(CreateFlags flags = DEFAULT); 718 static float elapsedTime(const Event& start, const Event& end); 724 Event(const Ptr<Impl>& impl);
|
| H A D | cuda_stream_accessor.hpp | 77 CV_EXPORTS static cudaEvent_t getEvent(const Event& event); 78 CV_EXPORTS static Event wrapEvent(cudaEvent_t event);
|