Searched defs:match (Results 1 - 17 of 17) sorted by relevance

/inkscape/share/palettes/
H A Di18n.py17 match = regex.match(line) variable
18 if match:
20 search = regexnoc.search(match.group(1))
23 sys.stdout.write("NC_(\"Palette\", \"" + match.group(1) + "\"),")
/inkscape/src/
H A Dsp-paint-server.h59 * for which \a match is true, or NULL if none found.
67 PaintServer *chase_hrefs(PaintServer *src, sigc::slot<bool, PaintServer const *> match) { argument
74 if (match(p2)) {
H A Dprofile-manager.cpp73 ColorProfile* match = 0; local
80 match = prof;
85 return match;
H A Dstyle-test.h272 TestCase(gchar const* src, gchar const* dst, bool match) : argument
273 src(src), dst(dst), match(match) {}
276 bool match; member in struct:StyleTest::TestCase
400 TS_ASSERT( (style_src == style_dst) == cases[i].match );
H A Dcolor.cpp91 * Returns true if colors match.
95 bool match = local
100 match &= profileMatches( icc, other.icc );
102 return match;
111 bool match = (fabs((v.c[0]) - (other.v.c[0])) < epsilon) local
115 match &= profileMatches( icc, other.icc );
117 return match;
121 bool match = false; local
123 match = true;
125 match
[all...]
H A DPylogFormatter.h336 int match = 1; local
338 match *= 10;
341 for ( unsigned int i = match; i > 1 && i > num; i /= 10 )
H A Dselection-chemistry.cpp1970 gboolean match = false; local
1978 match = false;
1981 match = true;
1997 match = true;
2004 match = true;
2008 match = true;
2010 match = true;
2013 if (match) {
2087 bool match = false; local
2115 match
[all...]
/inkscape/src/widgets/
H A Dsp-xmlview-attr-list.cpp138 gboolean match = false; local
144 match = true;
154 if (match) {
175 gboolean match = false; local
180 match = true;
191 if (match) {
H A Dcalligraphy-toolbar.cpp82 bool match = true; local
98 match = false;
106 match = false;
113 if (match) {
122 // no match found
H A Dsp-xmlview-tree.cpp684 * Return a match on any substring
691 gboolean match = (strstr(text, key) != NULL); local
695 return !match;
/inkscape/src/ui/dialog/
H A Dcolor-item.cpp63 static bool bruteForce( SPDocument* document, Inkscape::XML::Node* node, Glib::ustring const& match, int r, int g, int b ) argument
69 if ( val && (match == val) ) {
84 if ( val && (match == val) ) {
99 changed |= bruteForce( document, first, match, r, g, b );
101 changed |= bruteForce( document, node->next(), match, r, g, b );
H A Dinput.cpp925 bool match = true; local
926 while ( match ) {
932 match = false;
936 if (match) {
941 match = false;
/inkscape/src/ui/tool/
H A Dcontrol-point-selection.cpp183 SelectableControlPoint *match = NULL; local
190 match = *i;
198 match = *i;
202 if (match) {
203 if (grow) insert(match);
204 else erase(match);
205 signal_selection_changed.emit(std::vector<value_type>(1, match), grow);
H A Dpath-manipulator.cpp1075 NodeList::iterator match; local
1077 if (_num_selected == 0 && !search_unselected) return match;
1089 match = j;
1094 return match;
/inkscape/src/ui/widget/
H A Dcolor-icc-selector.cpp379 gtk_widget_set_tooltip_text(_impl->_fixupBtn, _("Fix RGB fallback to match icc-color() value."));
961 gint match = -1; local
974 match = i;
978 if (match >= 0) {
980 g_message(" channel %d", match);
1025 iccSelector->_impl->_updateSliders(match);
/inkscape/src/extension/internal/
H A Dtext_reassemble.c17 11. If alignment does not match start a new paragraph.
196 \return Returns -1 if no match, else returns the position (numbered from 0) of the first character of the match.
202 int match=0; local
204 for(match=1,j=0; sub[j] && string[i+j]; j++){
206 match=0;
210 if(match && !sub[j])break; /* matched over the entire substring */
212 return((match ? i : -1));
249 \brief Find a font in the list that has a glyph for this character, change alternate to match
250 \return Returns 0 if no match o
[all...]
/inkscape/
H A Dbuildtool.cpp954 int match(int pos, const char *text);
1256 int Parser::match(int p0, const char *text) function in class:buildtool::Parser
1275 int p2 = match(p, "<!--");
1281 p2 = match(p, "-->");
1331 int p2 = match(p, ee->escaped);
1517 p2 = match(p, "<!--");
1523 p2 = match(p, "-->");
1540 p2 = match(p, "<![CDATA[");
1569 int p2 = match(p, ee->escaped);
1949 int match(in
2301 int URI::match(int p0, const char *key) function in class:buildtool::URI
[all...]

Completed in 90 milliseconds