OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mTextEditor
(Results
1 - 8
of
8
) sorted by null
/packages/apps/Mms/tests/src/com/android/mms/
InterceptSendSms.java
56
private EditText
mTextEditor
;
68
mTextEditor
= (EditText)activity.findViewById(R.id.embedded_text_editor);
92
mTextEditor
.setText(MESSAGE);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidTextEditor.java
94
private TextEditor
mTextEditor
;
176
IAction action =
mTextEditor
.getAction(ActionFactory.UNDO.getId());
179
action =
mTextEditor
.getAction(ActionFactory.REDO.getId());
296
if (((FileEditorInput)
mTextEditor
.getEditorInput())
299
IEditorPart editorPart = pages[i].findEditor(
mTextEditor
499
mTextEditor
= new TextEditor();
500
int index = addPage(
mTextEditor
, getEditorInput());
502
setPageText(index,
mTextEditor
.getTitle());
504
IDocumentProvider provider =
mTextEditor
.getDocumentProvider();
543
if (
mTextEditor
!= null)
[
all
...]
AndroidXmlEditor.java
128
private StructuredTextEditor
mTextEditor
;
371
IAction action =
mTextEditor
.getAction(ActionFactory.UNDO.getId());
374
action =
mTextEditor
.getAction(ActionFactory.REDO.getId());
378
mTextEditor
.getAction(ActionFactory.DELETE.getId()));
380
mTextEditor
.getAction(ActionFactory.CUT.getId()));
382
mTextEditor
.getAction(ActionFactory.COPY.getId()));
384
mTextEditor
.getAction(ActionFactory.PASTE.getId()));
386
mTextEditor
.getAction(ActionFactory.SELECT_ALL.getId()));
388
mTextEditor
.getAction(ActionFactory.FIND.getId()));
390
mTextEditor
.getAction(IDEActionFactory.BOOKMARK.getId()))
[
all
...]
/packages/apps/Mms/tests/src/com/android/mms/ui/
ComposeMessageActivityTests.java
50
private EditText
mTextEditor
;
75
mTextEditor
= (EditText)mActivity.findViewById(R.id.embedded_text_editor);
160
mTextEditor
.setText("This is a test message");
188
assertEquals(focused ==
mTextEditor
,
mTextEditor
.isFocused());
LongThreadTest.java
55
private EditText
mTextEditor
;
81
mTextEditor
= (EditText)mActivity.findViewById(R.id.embedded_text_editor);
377
mTextEditor
.setText(generateMessage());
396
mTextEditor
.setText(generateMessage());
SmsTest.java
52
protected EditText
mTextEditor
;
89
mTextEditor
= (EditText)mActivity.findViewById(R.id.embedded_text_editor);
196
mTextEditor
.setText(mMessage);
/packages/apps/Mms/src/com/android/mms/ui/
ComposeMessageActivity.java
269
private EditText
mTextEditor
; // Text editor to type your message into
[
all
...]
SlideEditorActivity.java
113
private EditText
mTextEditor
;
151
mTextEditor
= (EditText) findViewById(R.id.text_message);
152
mTextEditor
.setFilters(new InputFilter[] {
[
all
...]
Completed in 258 milliseconds