OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mDocument
(Results
1 - 11
of
11
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/core/
AndroidRenameParticipant.java
49
protected IDocument
mDocument
;
66
if (
mDocument
== null) {
72
mDocument
= buffer.getDocument();
74
return
mDocument
;
AndroidTypeMoveParticipant.java
91
protected IDocument
mDocument
;
117
Change change = new AndroidTypeMoveChange(mAndroidManifest, mManager,
mDocument
,
148
if (
mDocument
== null) {
154
mDocument
= buffer.getDocument();
156
return
mDocument
;
AndroidTypeRenameParticipant.java
95
Change change = new AndroidTypeRenameChange(mAndroidManifest, mManager,
mDocument
,
AndroidPackageRenameParticipant.java
120
mDocument
, mAndroidElements, mNewName, mOldName, mIsPackage);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/changes/
AndroidTypeRenameChange.java
54
this.
mDocument
= document;
101
return new AndroidTypeRenameChange(mAndroidManifest, mManager,
mDocument
, mElements,
108
RefactoringUtil.fixModel(mModel,
mDocument
);
AndroidPackageRenameChange.java
59
this.
mDocument
= document;
113
return new AndroidPackageRenameChange(mAndroidManifest, mManager,
mDocument
, mElements,
120
RefactoringUtil.fixModel(mModel,
mDocument
);
AndroidLayoutChange.java
60
private IDocument
mDocument
;
82
mDocument
= document;
117
RefactoringUtil.fixModel(mModel,
mDocument
);
AndroidDocumentChange.java
61
protected IDocument
mDocument
;
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidTextEditor.java
98
private IDocument
mDocument
;
502
mDocument
= provider.getDocument(getEditorInput());
504
mDocument
.addDocumentListener(new IDocumentListener() {
531
return
mDocument
;
563
if (
mDocument
instanceof IDocumentExtension4) {
564
IDocumentExtension4 doc4 = (IDocumentExtension4)
mDocument
;
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
AndroidXmlFormattingStrategy.java
590
private final IStructuredDocument
mDocument
;
599
mDocument
= document;
631
int lineStart = findLineStart(
mDocument
, region.getStartOffset());
632
int textStart = findTextStart(
mDocument
, lineStart, region.getEndOffset());
638
String indent =
mDocument
.get(lineStart,
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
AttrsXmlParser.java
49
private Document
mDocument
;
230
if (
mDocument
== null) {
235
mDocument
= builder.parse(new File(mOsAttrsXmlPath));
247
return
mDocument
;
Completed in 416 milliseconds