/lvgl-latest/src/libs/gif/ |
D | gifdec_mve.h | 26 #define GIFDEC_RENDER_FRAME(dst, w, h, stride, frame, pattern, tindex) \ argument 27 _gifdec_render_frame_mve(dst, w, h, stride, frame, pattern, tindex) 71 uint8_t * pattern, uint16_t tindex) in _gifdec_render_frame_mve() argument 129 : [pattern] "r"(pattern), in _gifdec_render_frame_mve()
|
/lvgl-latest/src/libs/thorvg/ |
D | tvgSwShape.cpp | 129 if (dash.move || dash.pattern[dash.curIdx] - dash.curLen < FLOAT_EPSILON) { in _dashLineTo() 139 dash.curLen = dash.pattern[dash.curIdx]; in _dashLineTo() 157 dash.curLen = dash.pattern[dash.curIdx]; in _dashLineTo() 190 if (dash.move || dash.pattern[dash.curIdx] - dash.curLen < FLOAT_EPSILON) { in _dashCubicTo() 200 dash.curLen = dash.pattern[dash.curIdx]; in _dashCubicTo() 218 dash.curLen = dash.pattern[dash.curIdx]; in _dashCubicTo() 243 dash.curLen = dash.pattern[dash.curIdx] - offset; in _dashMoveTo() 263 dash->pattern[0] = end - begin; in _trimPattern() 264 dash->pattern[1] = length - (end - begin); in _trimPattern() 266 dash->pattern[0] = end; in _trimPattern() [all …]
|
D | tvgShape.h | 301 Result strokeDash(const float* pattern, uint32_t cnt, float offset) in strokeDash() 303 if ((cnt == 1) || (!pattern && cnt > 0) || (pattern && cnt == 0)) { in strokeDash() 308 if (pattern[i] < FLOAT_EPSILON) return Result::InvalidArguments; in strokeDash() 312 if (!pattern && cnt == 0) { in strokeDash() 326 rs.stroke->dashPattern[i] = pattern[i]; in strokeDash()
|
D | tvgSwCommon.h | 206 float* pattern = nullptr; member
|
/lvgl-latest/scripts/ |
D | update_version.py | 81 pattern = r'(' + re.escape(self.prefix) + ')' + Version.RE_PATTERN 83 replaced, n = re.subn(pattern, repl, line) 100 pattern = self.getPattern(key) 102 replaced, n = re.subn(pattern, repl, line) 139 pattern = self.getPattern(key) 141 replaced, n = re.subn(pattern, repl, line)
|
D | properties.py | 48 pattern = r'^\s*LV_PROPERTY_ID2?\((\w+),\s*(\w+),\s*(\w+)(,\s*(\w+))?,\s*(\d+)\)' 51 match = re.match(pattern, line) 60 pattern = r'^\s+LV_STYLE_(\w+)\s*=\s*(\d+),' 63 match = re.match(pattern, line)
|
D | trace_filter.py | 35 pattern = re.compile(r'(^.+-[0-9]+\s\[[0-9]]\s[0-9]+\.[0-9]+:\s(' variable 39 matches = pattern.findall(content)
|
D | changelog_gen.sh | 16 …gelog-template.hbs -l false --latest-version $1 --unreleased-only --tag-pattern ^v[0-9]+.[0-9]+.[…
|
D | generate_lv_conf.py | 84 pattern = r'(#define\s+[A-Z0-9_]+\s+)(.+)' 86 dst_line, _ = re.subn(pattern, repl, src_line)
|
/lvgl-latest/examples/widgets/bar/ |
D | index.rst | 19 Stripe pattern and range value
|
/lvgl-latest/src/libs/barcode/ |
D | code128.c | 190 static void code128_append_pattern(int pattern, int pattern_length, char * out) in code128_append_pattern() argument 193 CODE128_ASSERT(pattern & (1 << (pattern_length - 1))); in code128_append_pattern() 198 *out++ = (unsigned char)((pattern & (1 << i)) ? 255 : 0); in code128_append_pattern()
|
/lvgl-latest/src/libs/thorvg/rapidjson/ |
D | encodedstream.h | 203 int pattern = (c[0] ? 1 : 0) | (c[1] ? 2 : 0) | (c[2] ? 4 : 0) | (c[3] ? 8 : 0); in DetectType() local 204 switch (pattern) { in DetectType()
|
D | schema.h | 707 … patternProperties_[patternPropertyCount_].pattern = CreatePattern(itr->name, schemaDocument, r); in allocator_() 1114 … if (patternProperties_[i].pattern && IsPatternMatch(patternProperties_[i].pattern, str, len)) { in Key() 1418 static bool IsPatternMatch(const RegexType* pattern, const Ch *str, SizeType) { in IsPatternMatch() argument 1419 GenericRegexSearch<RegexType> rs(*pattern); in IsPatternMatch() 1438 static bool IsPatternMatch(const RegexType* pattern, const Ch *str, SizeType length) { in IsPatternMatch() argument 1440 return std::regex_search(str, str + length, r, *pattern); in IsPatternMatch() 1685 PatternProperty() : schema(), pattern() {} in PatternProperty() 1687 if (pattern) { in ~PatternProperty() 1688 pattern->~RegexType(); in ~PatternProperty() 1689 AllocatorType::Free(pattern); in ~PatternProperty() [all …]
|
/lvgl-latest/docs/details/integration/os/buildroot/ |
D | lvgl_app.rst | 19 To search for a string pattern in the configuration, press ``/`` followed by 20 the desired pattern. For example, search for ``libdrm``. You should find
|
/lvgl-latest/docs/details/other-components/ |
D | observer.rst | 12 The ``lv_observer`` module implements a standard `Observer pattern <https://en.wikipedia.org/wiki/O…
|
/lvgl-latest/docs/ |
D | README.md | 160 …headings. So if you are modifying an existing .RST file, please follow the pattern already in use.
|
D | Doxyfile | 851 # exclude all test directories for example use the pattern */test/* 863 # exclude all test directories use the pattern */test/* 874 # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and 914 # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern 915 # basis. Doxygen will compare the file name with each pattern and apply the 916 # filter if there is a match. The filters are a list of the form: pattern=filter 935 # pattern. A pattern will override the setting for FILTER_PATTERN (if any) and 936 # it is also possible to disable source filtering for a specific pattern using
|
D | CODING_STYLE.rst | 271 - Widget constructor must follow the ``lv_<widget_name>_create(lv_obj_t * parent)`` pattern.
|
D | CHANGELOG.rst | 226 - **fix(vg_lite): fix draw pattern recolor error** `6525 <https://github.com/lvgl/lvgl/pull/6525>`__
|