Home
last modified time | relevance | path

Searched refs:is_word_boundary (Results 1 – 25 of 68) sorted by relevance

123

/dports/x11-toolkits/pango/pango-1.48.11/pango/
H A Dbreak.c304 gboolean is_word_boundary; in pango_default_break() local
553 is_word_boundary = FALSE; in pango_default_break()
709 is_word_boundary = TRUE; /* Rule WB3b */ in pango_default_break()
711 is_word_boundary = FALSE; /* Rule WB3c */ in pango_default_break()
714 is_word_boundary = FALSE; /* Rule WB3d */ in pango_default_break()
725 is_word_boundary = FALSE; /* Rule WB13 */ in pango_default_break()
748 is_word_boundary = FALSE; /* Rule WB7 */ in pango_default_break()
761 is_word_boundary = FALSE; /* Rule WB11 */ in pango_default_break()
767 is_word_boundary = TRUE; /* Rule WB999 */ in pango_default_break()
777 attrs[i].is_word_boundary = is_word_boundary; in pango_default_break()
[all …]
H A Dpango-break.h93 guint is_word_boundary : 1; member
/dports/editors/kakoune/kakoune-2021.11.08/src/
H A Dranked_match.cc47 const bool is_word_boundary = prev == 0 or in count_word_boundaries_match() local
52 if (not is_word_boundary) in count_word_boundaries_match() local
174 static bool is_word_boundary(Codepoint prev, Codepoint c) in is_word_boundary() function
224 const bool is_wb1 = is_word_boundary(cplast1, cp1); in operator <()
225 const bool is_wb2 = is_word_boundary(cplast2, cp2); in operator <()
H A Dregex_impl.hh411 if (not is_word_boundary(pos, config)) in step_thread() local
415 if (is_word_boundary(pos, config)) in step_thread()
614 static bool is_word_boundary(const Iterator& pos, const ExecConfig& config) in is_word_boundary() function in Kakoune::ThreadedRegexVM
/dports/x11-toolkits/pango/pango-1.48.11/utils/
H A Dpango-segmentation.c100 is_break = log.is_word_boundary; in show_segmentation()
/dports/devel/stb/stb-f54acd4/
H A Dstb_textedit.h640 static int is_word_boundary( STB_TEXTEDIT_STRING *str, int idx ) in is_word_boundary() function
649 while( c >= 0 && !is_word_boundary( str, c ) ) in stb_textedit_move_to_word_previous()
665 while( c < len && !is_word_boundary( str, c ) ) in stb_textedit_move_to_word_next()
/dports/graphics/embree/embree-3.13.2/tutorials/common/imgui/
H A Dstb_textedit.h621 static int is_word_boundary( STB_TEXTEDIT_STRING *str, int idx ) in is_word_boundary() function
630 while( c >= 0 && !is_word_boundary( str, c ) ) in stb_textedit_move_to_word_previous()
646 while( c < len && !is_word_boundary( str, c ) ) in stb_textedit_move_to_word_next()
/dports/devel/bullet/bullet3-3.21/examples/ThirdPartyLibs/imgui/
H A Dstb_textedit.h634 static int is_word_boundary(STB_TEXTEDIT_STRING *str, int idx) in is_word_boundary() function
643 while (c >= 0 && !is_word_boundary(str, c)) in stb_textedit_move_to_word_previous()
659 while (c < len && !is_word_boundary(str, c)) in stb_textedit_move_to_word_next()
/dports/games/wesnoth/wesnoth-1.14.17/src/serialization/
H A Dstring_utils.cpp678 static bool is_word_boundary(char c) { in is_word_boundary() function
685 if (first == 0 || is_word_boundary(message[first - 1])) { in word_match()
687 if (next == message.size() || is_word_boundary(message[next])) { in word_match()
/dports/cad/cura-engine/CuraEngine-fadb5d6b/include/stb/
H A Dstb_textedit.h640 static int is_word_boundary( STB_TEXTEDIT_STRING *str, int idx ) in is_word_boundary() function
649 while( c >= 0 && !is_word_boundary( str, c ) ) in stb_textedit_move_to_word_previous()
665 while( c < len && !is_word_boundary( str, c ) ) in stb_textedit_move_to_word_next()
/dports/security/ridl/ridl-11b3240/stb/
H A Dstb_textedit.h640 static int is_word_boundary( STB_TEXTEDIT_STRING *str, int idx ) in is_word_boundary() function
649 while( c >= 0 && !is_word_boundary( str, c ) ) in stb_textedit_move_to_word_previous()
665 while( c < len && !is_word_boundary( str, c ) ) in stb_textedit_move_to_word_next()
/dports/games/openclaw/OpenClaw-0.0-51-gbac7730/Box2D/imgui/
H A Dstb_textedit.h619 static int is_word_boundary( STB_TEXTEDIT_STRING *_str, int _idx ) in is_word_boundary() function
627 while( c >= 0 && !is_word_boundary( _str, c ) ) in stb_textedit_move_to_word_previous()
642 while( c < len && !is_word_boundary( _str, c ) ) in stb_textedit_move_to_word_next()
/dports/graphics/simpleviewer/andreyu-simple-viewer-gl-d8928067922d/third-party/imgui/imgui/
H A Dstb_textedit.h621 static int is_word_boundary( STB_TEXTEDIT_STRING *str, int idx ) in is_word_boundary() function
630 while( c >= 0 && !is_word_boundary( str, c ) ) in stb_textedit_move_to_word_previous()
646 while( c < len && !is_word_boundary( str, c ) ) in stb_textedit_move_to_word_next()
/dports/devel/py-bullet3/bullet3-3.21/examples/ThirdPartyLibs/imgui/
H A Dstb_textedit.h634 static int is_word_boundary(STB_TEXTEDIT_STRING *str, int idx) in is_word_boundary() function
643 while (c >= 0 && !is_word_boundary(str, c)) in stb_textedit_move_to_word_previous()
659 while (c < len && !is_word_boundary(str, c)) in stb_textedit_move_to_word_next()
/dports/editors/gedit-plugins/gedit-plugins-40.1/plugins/findinfiles/
H A Djob.vala273 bool is_word_boundary (uint8 *buf, size_t buf_size, size_t from, size_t to) {
339 if (!is_word_boundary (buffer, buffer_size, (int)match.from, (int)match.to)) {
/dports/x11-fm/nautilus/nautilus-41.1/src/
H A Dnautilus-files-view-dnd.c224 if (attrs[i].is_word_boundary) in get_drop_filename()
/dports/games/pioneer/pioneer-20210723/contrib/imgui/
H A Dimstb_textedit.h646 static int is_word_boundary( STB_TEXTEDIT_STRING *str, int idx ) in is_word_boundary() function
655 while( c >= 0 && !is_word_boundary( str, c ) ) in stb_textedit_move_to_word_previous()
671 while( c < len && !is_word_boundary( str, c ) ) in stb_textedit_move_to_word_next()
H A Dstb_textedit.h645 static int is_word_boundary( STB_TEXTEDIT_STRING *str, int idx ) in is_word_boundary() function
654 while( c >= 0 && !is_word_boundary( str, c ) ) in stb_textedit_move_to_word_previous()
670 while( c < len && !is_word_boundary( str, c ) ) in stb_textedit_move_to_word_next()
/dports/misc/box2d/box2d-2.4.1/extern/imgui/
H A Dimstb_textedit.h645 static int is_word_boundary( STB_TEXTEDIT_STRING *str, int idx ) in is_word_boundary() function
654 while( c >= 0 && !is_word_boundary( str, c ) ) in stb_textedit_move_to_word_previous()
670 while( c < len && !is_word_boundary( str, c ) ) in stb_textedit_move_to_word_next()
/dports/math/geogram/geogram-1.7.7/src/lib/geogram_gfx/third_party/ImGui/
H A Dimstb_textedit.h646 static int is_word_boundary( STB_TEXTEDIT_STRING *str, int idx ) in is_word_boundary() function
655 while( c >= 0 && !is_word_boundary( str, c ) ) in stb_textedit_move_to_word_previous()
671 while( c < len && !is_word_boundary( str, c ) ) in stb_textedit_move_to_word_next()
/dports/emulators/mess/mame-mame0226/3rdparty/bgfx/3rdparty/stb/
H A Dstb_textedit.h646 static int is_word_boundary( STB_TEXTEDIT_STRING *str, int idx ) in is_word_boundary() function
655 while( c >= 0 && !is_word_boundary( str, c ) ) in stb_textedit_move_to_word_previous()
671 while( c < len && !is_word_boundary( str, c ) ) in stb_textedit_move_to_word_next()
/dports/audio/faudio/FAudio-21.01/utils/uicommon/
H A Dimstb_textedit.h646 static int is_word_boundary( STB_TEXTEDIT_STRING *str, int idx ) in is_word_boundary() function
655 while( c >= 0 && !is_word_boundary( str, c ) ) in stb_textedit_move_to_word_previous()
671 while( c < len && !is_word_boundary( str, c ) ) in stb_textedit_move_to_word_next()
/dports/net-im/uTox/uTox/third-party/stb/
H A Dstb_textedit.h637 static int is_word_boundary( STB_TEXTEDIT_STRING *str, int idx ) in is_word_boundary() function
646 while( c >= 0 && !is_word_boundary( str, c ) ) in stb_textedit_move_to_word_previous()
662 while( c < len && !is_word_boundary( str, c ) ) in stb_textedit_move_to_word_next()
/dports/editors/imhex/ImHex-1.7.0/external/ImGui/include/
H A Dimstb_textedit.h648 static int is_word_boundary( STB_TEXTEDIT_STRING *str, int idx ) in is_word_boundary() function
657 while( c >= 0 && !is_word_boundary( str, c ) ) in stb_textedit_move_to_word_previous()
673 while( c < len && !is_word_boundary( str, c ) ) in stb_textedit_move_to_word_next()
/dports/graphics/libosmesa-gallium/mesa-21.3.6/src/imgui/
H A Dimstb_textedit.h646 static int is_word_boundary( STB_TEXTEDIT_STRING *str, int idx ) in is_word_boundary() function
655 while( c >= 0 && !is_word_boundary( str, c ) ) in stb_textedit_move_to_word_previous()
671 while( c < len && !is_word_boundary( str, c ) ) in stb_textedit_move_to_word_next()

123