Home
last modified time | relevance | path

Searched refs:p_from_line (Results 1 – 25 of 44) sorted by relevance

12

/dports/devel/godot2-tools/godot-2.1.6-stable/scene/gui/
H A Dtext_edit.h313 String _base_get_text(int p_from_line, int p_from_column, int p_to_line, int p_to_column) const;
314 void _base_remove_text(int p_from_line, int p_from_column, int p_to_line, int p_to_column);
318 …DVector<int> _search_bind(const String &p_key, uint32_t p_search_flags, int p_from_line, int p_fro…
334 void _remove_text(int p_from_line, int p_from_column, int p_to_line, int p_to_column);
440 void select(int p_from_line, int p_from_column, int p_to_line, int p_to_column);
458 …bool search(const String &p_key, uint32_t p_search_flags, int p_from_line, int p_from_column, int …
H A Dtext_edit.cpp2711 if (i > p_from_line)
2721 ERR_FAIL_INDEX(p_from_line, text.size());
2733 text.remove(p_from_line + 1);
2736 text.set(p_from_line, pre_text + post_text);
2818 op.from_line = p_from_line;
2838 current_op.from_line = p_from_line;
3468 if (p_from_line >= text.size())
3469 p_from_line = text.size() - 1;
3478 selection.from_line = p_from_line;
3650 line = p_from_line;
[all …]
/dports/devel/godot2/godot-2.1.6-stable/scene/gui/
H A Dtext_edit.h313 String _base_get_text(int p_from_line, int p_from_column, int p_to_line, int p_to_column) const;
314 void _base_remove_text(int p_from_line, int p_from_column, int p_to_line, int p_to_column);
318 …DVector<int> _search_bind(const String &p_key, uint32_t p_search_flags, int p_from_line, int p_fro…
334 void _remove_text(int p_from_line, int p_from_column, int p_to_line, int p_to_column);
440 void select(int p_from_line, int p_from_column, int p_to_line, int p_to_column);
458 …bool search(const String &p_key, uint32_t p_search_flags, int p_from_line, int p_from_column, int …
H A Dtext_edit.cpp2711 if (i > p_from_line)
2721 ERR_FAIL_INDEX(p_from_line, text.size());
2733 text.remove(p_from_line + 1);
2736 text.set(p_from_line, pre_text + post_text);
2818 op.from_line = p_from_line;
2838 current_op.from_line = p_from_line;
3468 if (p_from_line >= text.size())
3469 p_from_line = text.size() - 1;
3478 selection.from_line = p_from_line;
3650 line = p_from_line;
[all …]
/dports/devel/godot-tools/godot-3.2.3-stable/scene/gui/
H A Dtext_edit.h514 String _base_get_text(int p_from_line, int p_from_column, int p_to_line, int p_to_column) const;
515 void _base_remove_text(int p_from_line, int p_from_column, int p_to_line, int p_to_column);
519 …PoolVector<int> _search_bind(const String &p_key, uint32_t p_search_flags, int p_from_line, int p_…
536 void _remove_text(int p_from_line, int p_from_column, int p_to_line, int p_to_column);
693 void select(int p_from_line, int p_from_column, int p_to_line, int p_to_column);
713 …bool search(const String &p_key, uint32_t p_search_flags, int p_from_line, int p_from_column, int …
H A Dtext_edit.cpp3998 if (i > p_from_line)
4018 int lines = p_to_line - p_from_line;
4030 text.remove(p_from_line + 1);
4041 _line_edited_from(p_from_line);
4117 op.from_line = p_from_line;
5312 if (p_from_line < 0)
5313 p_from_line = 0;
5315 p_from_line = text.size() - 1;
5330 selection.from_line = p_from_line;
5504 int line = p_from_line;
[all …]
/dports/devel/godot/godot-3.2.3-stable/scene/gui/
H A Dtext_edit.h514 String _base_get_text(int p_from_line, int p_from_column, int p_to_line, int p_to_column) const;
515 void _base_remove_text(int p_from_line, int p_from_column, int p_to_line, int p_to_column);
519 …PoolVector<int> _search_bind(const String &p_key, uint32_t p_search_flags, int p_from_line, int p_…
536 void _remove_text(int p_from_line, int p_from_column, int p_to_line, int p_to_column);
693 void select(int p_from_line, int p_from_column, int p_to_line, int p_to_column);
713 …bool search(const String &p_key, uint32_t p_search_flags, int p_from_line, int p_from_column, int …
H A Dtext_edit.cpp3998 if (i > p_from_line)
4018 int lines = p_to_line - p_from_line;
4030 text.remove(p_from_line + 1);
4041 _line_edited_from(p_from_line);
4117 op.from_line = p_from_line;
5312 if (p_from_line < 0)
5313 p_from_line = 0;
5315 p_from_line = text.size() - 1;
5330 selection.from_line = p_from_line;
5504 int line = p_from_line;
[all …]
/dports/devel/godot/godot-3.2.3-stable/modules/gdnative/pluginscript/
H A Dpluginscript_language.h85 virtual void auto_indent_code(String &p_code, int p_from_line, int p_to_line) const;
H A Dpluginscript_language.cpp182 void PluginScriptLanguage::auto_indent_code(String &p_code, int p_from_line, int p_to_line) const { in auto_indent_code() argument
184 _desc.auto_indent_code(_data, (godot_string *)&p_code, p_from_line, p_to_line); in auto_indent_code()
/dports/devel/godot-tools/godot-3.2.3-stable/modules/gdnative/pluginscript/
H A Dpluginscript_language.h85 virtual void auto_indent_code(String &p_code, int p_from_line, int p_to_line) const;
H A Dpluginscript_language.cpp182 void PluginScriptLanguage::auto_indent_code(String &p_code, int p_from_line, int p_to_line) const { in auto_indent_code() argument
184 _desc.auto_indent_code(_data, (godot_string *)&p_code, p_from_line, p_to_line); in auto_indent_code()
/dports/devel/godot2/godot-2.1.6-stable/editor/
H A Dcode_editor.h104 bool _search(uint32_t p_flags, int p_from_line, int p_from_col);
H A Dcode_editor.cpp125 bool FindReplaceBar::_search(uint32_t p_flags, int p_from_line, int p_from_col) { in _search() argument
130 bool found = text_edit->search(text, p_flags, p_from_line, p_from_col, line, col); in _search()
/dports/devel/godot2-tools/godot-2.1.6-stable/editor/
H A Dcode_editor.h104 bool _search(uint32_t p_flags, int p_from_line, int p_from_col);
H A Dcode_editor.cpp125 bool FindReplaceBar::_search(uint32_t p_flags, int p_from_line, int p_from_col) { in _search() argument
130 bool found = text_edit->search(text, p_flags, p_from_line, p_from_col, line, col); in _search()
/dports/devel/godot/godot-3.2.3-stable/modules/gdnative/include/pluginscript/
H A Dgodot_pluginscript.h140 …e)(godot_pluginscript_language_data *p_data, godot_string *p_code, int p_from_line, int p_to_line);
/dports/devel/godot/godot-3.2.3-stable/editor/
H A Dcode_editor.h110 bool _search(uint32_t p_flags, int p_from_line, int p_from_col);
/dports/devel/godot-tools/godot-3.2.3-stable/modules/gdnative/include/pluginscript/
H A Dgodot_pluginscript.h140 …e)(godot_pluginscript_language_data *p_data, godot_string *p_code, int p_from_line, int p_to_line);
/dports/devel/godot-tools/godot-3.2.3-stable/editor/
H A Dcode_editor.h110 bool _search(uint32_t p_flags, int p_from_line, int p_from_col);
/dports/devel/godot2/godot-2.1.6-stable/core/
H A Dscript_language.h188 virtual void auto_indent_code(String &p_code, int p_from_line, int p_to_line) const = 0;
/dports/devel/godot2-tools/godot-2.1.6-stable/core/
H A Dscript_language.h188 virtual void auto_indent_code(String &p_code, int p_from_line, int p_to_line) const = 0;
/dports/devel/godot/godot-3.2.3-stable/modules/gdnative/nativescript/
H A Dnativescript.h327 virtual void auto_indent_code(String &p_code, int p_from_line, int p_to_line) const;
/dports/devel/godot-tools/godot-3.2.3-stable/modules/gdnative/nativescript/
H A Dnativescript.h327 virtual void auto_indent_code(String &p_code, int p_from_line, int p_to_line) const;
/dports/devel/godot2/godot-2.1.6-stable/modules/gdscript/
H A Dgd_script.h367 virtual void auto_indent_code(String &p_code, int p_from_line, int p_to_line) const;

12