Home
last modified time | relevance | path

Searched refs:protected (Results 1 – 25 of 2319) sorted by relevance

12345678910>>...93

/external/libedit/src/
Dterminal.h94 protected void terminal_move_to_line(EditLine *, int);
95 protected void terminal_move_to_char(EditLine *, int);
96 protected void terminal_clear_EOL(EditLine *, int);
97 protected void terminal_overwrite(EditLine *, const Char *, size_t);
98 protected void terminal_insertwrite(EditLine *, Char *, int);
99 protected void terminal_deletechars(EditLine *, int);
100 protected void terminal_clear_screen(EditLine *);
101 protected void terminal_beep(EditLine *);
102 protected int terminal_change_size(EditLine *, int, int);
103 protected int terminal_get_size(EditLine *, int *, int *);
[all …]
Dchared.h146 protected int cv__isword(Int);
147 protected int cv__isWord(Int);
148 protected void cv_delfini(EditLine *);
149 protected Char *cv__endword(Char *, Char *, int, int (*)(Int));
150 protected int ce__isword(Int);
151 protected void cv_undo(EditLine *);
152 protected void cv_yank(EditLine *, const Char *, int);
153 protected Char *cv_next_word(EditLine*, Char *, Char *, int, int (*)(Int));
154 protected Char *cv_prev_word(Char *, Char *, int, int (*)(Int));
155 protected Char *c__next_word(Char *, Char *, int, int (*)(Int));
[all …]
Dkeymacro.h61 protected int keymacro_init(EditLine *);
62 protected void keymacro_end(EditLine *);
63 protected keymacro_value_t *keymacro_map_cmd(EditLine *, int);
64 protected keymacro_value_t *keymacro_map_str(EditLine *, Char *);
65 protected void keymacro_reset(EditLine *);
66 protected int keymacro_get(EditLine *, Char *, keymacro_value_t *);
67 protected void keymacro_add(EditLine *, const Char *, keymacro_value_t *, int);
68 protected void keymacro_clear(EditLine *, el_action_t *, const Char *);
69 protected int keymacro_delete(EditLine *, const Char *);
70 protected void keymacro_print(EditLine *, const Char *);
[all …]
Dsearch.h55 protected int el_match(const Char *, const Char *);
56 protected int search_init(EditLine *);
57 protected void search_end(EditLine *);
58 protected int c_hmatch(EditLine *, const Char *);
59 protected void c_setpat(EditLine *);
60 protected el_action_t ce_inc_search(EditLine *, int);
61 protected el_action_t cv_search(EditLine *, int);
62 protected el_action_t ce_search_line(EditLine *, int);
63 protected el_action_t cv_repeat_srch(EditLine *, Int);
64 protected el_action_t cv_csearch(EditLine *, int, Int, int, int);
Dmap.h68 protected int map_bind(EditLine *, int, const Char **);
69 protected int map_init(EditLine *);
70 protected void map_end(EditLine *);
71 protected void map_init_vi(EditLine *);
72 protected void map_init_emacs(EditLine *);
73 protected int map_set_editor(EditLine *, Char *);
74 protected int map_get_editor(EditLine *, const Char **);
75 protected int map_addfunc(EditLine *, const Char *, const Char *, el_func_t);
Drefresh.h51 protected void re_putc(EditLine *, Int, int);
52 protected void re_clear_lines(EditLine *);
53 protected void re_clear_display(EditLine *);
54 protected void re_refresh(EditLine *);
55 protected void re_refresh_cursor(EditLine *);
56 protected void re_fastaddc(EditLine *);
57 protected void re_goto_bottom(EditLine *);
Dvi.c123 protected el_action_t
136 protected el_action_t
149 protected el_action_t
174 protected el_action_t
199 protected el_action_t
223 protected el_action_t
247 protected el_action_t
278 protected el_action_t
295 protected el_action_t
311 protected el_action_t
[all …]
Dcommon.c53 protected el_action_t
68 protected el_action_t
110 protected el_action_t
138 protected el_action_t
185 protected el_action_t
206 protected el_action_t
229 protected el_action_t
253 protected el_action_t
278 protected el_action_t
307 protected el_action_t
[all …]
Dread.h44 protected int read_init(EditLine *);
45 protected void read_prepare(EditLine *);
46 protected void read_finish(EditLine *);
47 protected int el_read_setfn(EditLine *, el_rfunc_t);
48 protected el_rfunc_t el_read_getfn(EditLine *);
Dhist.h77 protected int hist_init(EditLine *);
78 protected void hist_end(EditLine *);
79 protected el_action_t hist_get(EditLine *);
80 protected int hist_set(EditLine *, hist_fun_t, void *);
81 protected int hist_command(EditLine *, int, const Char **);
82 protected int hist_enlargebuf(EditLine *, size_t, size_t);
84 protected wchar_t *hist_convert(EditLine *, int, void *);
/external/llvm/test/Bitcode/
Dlocal-linkage-default-visibility.3.4.ll14 @protected.internal.var = internal protected global i32 0
15 ; CHECK: @protected.internal.var = internal global i32 0
23 @protected.private.var = private protected global i32 0
24 ; CHECK: @protected.private.var = private global i32 0
34 @protected.internal.alias = protected alias internal i32* @global
35 ; CHECK: @protected.internal.alias = internal alias i32* @global
43 @protected.private.alias = protected alias private i32* @global
44 ; CHECK: @protected.private.alias = private alias i32* @global
58 define internal protected void @protected.internal() {
59 ; CHECK: define internal void @protected.internal
[all …]
Dvisibility-styles.3.2.ll14 @protected.var = protected global i32 0
15 ; CHECK: @protected.var = protected global i32 0
23 declare protected void @protected()
24 ; CHECK: declare protected void @protected
/external/clang/test/SemaObjC/
Divar-access-tests.m8 @protected
9 int protected; field
21 access = s->protected;
34 access = s->protected;
37 access = m->protected;
50 access = s->protected;
53 access = m->protected;
65 access = s->protected; // expected-error {{instance variable 'protected' is protected}}
68 access = m->protected; // expected-error {{instance variable 'protected' is protected}}
77 access = s->protected; // expected-error {{instance variable 'protected' is protected}}
/external/clang/include/clang/Frontend/
DFrontendActions.h43 protected:
49 protected:
55 protected:
61 protected:
67 protected:
73 protected:
99 protected:
128 protected:
139 protected:
152 protected:
[all …]
/external/llvm/test/Transforms/Internalize/
Dlocal-visibility.ll10 ; CHECK: @protected.variable = internal global i32 0
11 @protected.variable = protected global i32 0
15 ; CHECK: @protected.alias = internal alias i32* @global
16 @protected.alias = protected alias i32* @global
22 ; CHECK: define internal void @protected.function() {
23 define protected void @protected.function() {
/external/skia/src/animator/
DSkMatrixParts.h34 protected:
41 protected:
50 protected:
60 protected:
70 protected:
80 protected:
96 protected:
111 protected:
/external/clang/include/clang/Rewrite/Frontend/
DFrontendActions.h24 protected:
30 protected:
56 protected:
61 protected:
67 protected:
72 protected:
77 protected:
/external/mockftpserver/tags/2.2/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTestCase.groovy41 protected static final ERROR_MESSAGE_KEY = 'msgkey'
43 protected session
44 protected serverConfiguration
45 protected replyTextBundle
46 protected commandHandler
47 protected fileSystem
48 protected userAccount
125 protected void testHandleCommand_MissingRequiredParameter(List commandParameters) {
134 protected testHandleCommand_MissingRequiredSessionAttribute() {
143 protected Command createCommand(List commandParameters) {
[all …]
/external/mockftpserver/tags/2.5/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTestCase.groovy41 protected static final ERROR_MESSAGE_KEY = 'msgkey'
43 protected session
44 protected serverConfiguration
45 protected replyTextBundle
46 protected commandHandler
47 protected fileSystem
48 protected userAccount
125 protected void testHandleCommand_MissingRequiredParameter(List commandParameters) {
134 protected testHandleCommand_MissingRequiredSessionAttribute() {
143 protected Command createCommand(List commandParameters) {
[all …]
/external/mockftpserver/tags/2.0.2/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTest.groovy41 protected static final ERROR_MESSAGE_KEY = 'msgkey'
43 protected session
44 protected serverConfiguration
45 protected replyTextBundle
46 protected commandHandler
47 protected fileSystem
48 protected userAccount
125 protected void testHandleCommand_MissingRequiredParameter(List commandParameters) {
134 protected testHandleCommand_MissingRequiredSessionAttribute() {
143 protected Command createCommand(List commandParameters) {
[all …]
/external/mockftpserver/tags/2.4/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTestCase.groovy41 protected static final ERROR_MESSAGE_KEY = 'msgkey'
43 protected session
44 protected serverConfiguration
45 protected replyTextBundle
46 protected commandHandler
47 protected fileSystem
48 protected userAccount
125 protected void testHandleCommand_MissingRequiredParameter(List commandParameters) {
134 protected testHandleCommand_MissingRequiredSessionAttribute() {
143 protected Command createCommand(List commandParameters) {
[all …]
/external/mockftpserver/tags/2.0.1/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTest.groovy41 protected static final ERROR_MESSAGE_KEY = 'msgkey'
43 protected session
44 protected serverConfiguration
45 protected replyTextBundle
46 protected commandHandler
47 protected fileSystem
48 protected userAccount
125 protected void testHandleCommand_MissingRequiredParameter(List commandParameters) {
134 protected testHandleCommand_MissingRequiredSessionAttribute() {
143 protected Command createCommand(List commandParameters) {
[all …]
/external/mockftpserver/tags/2.3/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTestCase.groovy41 protected static final ERROR_MESSAGE_KEY = 'msgkey'
43 protected session
44 protected serverConfiguration
45 protected replyTextBundle
46 protected commandHandler
47 protected fileSystem
48 protected userAccount
125 protected void testHandleCommand_MissingRequiredParameter(List commandParameters) {
134 protected testHandleCommand_MissingRequiredSessionAttribute() {
143 protected Command createCommand(List commandParameters) {
[all …]
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTestCase.groovy41 protected static final ERROR_MESSAGE_KEY = 'msgkey'
43 protected session
44 protected serverConfiguration
45 protected replyTextBundle
46 protected commandHandler
47 protected fileSystem
48 protected userAccount
125 protected void testHandleCommand_MissingRequiredParameter(List commandParameters) {
134 protected testHandleCommand_MissingRequiredSessionAttribute() {
143 protected Command createCommand(List commandParameters) {
[all …]
/external/mockftpserver/tags/2.1/src/test/groovy/org/mockftpserver/fake/command/
DAbstractFakeCommandHandlerTest.groovy41 protected static final ERROR_MESSAGE_KEY = 'msgkey'
43 protected session
44 protected serverConfiguration
45 protected replyTextBundle
46 protected commandHandler
47 protected fileSystem
48 protected userAccount
125 protected void testHandleCommand_MissingRequiredParameter(List commandParameters) {
134 protected testHandleCommand_MissingRequiredSessionAttribute() {
143 protected Command createCommand(List commandParameters) {
[all …]

12345678910>>...93