Home
last modified time | relevance | path

Searched refs:before (Results 1 – 25 of 30) sorted by relevance

12

/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/
DAndroidDoubleClickStrategyTest.java54 private void checkWord(String before, String expected) throws Exception { in checkWord() argument
56 int cursor = before.indexOf('^'); in checkWord()
57 assertTrue("Must set cursor position with ^ in " + before, cursor != -1); in checkWord()
58 before = before.substring(0, cursor) + before.substring(cursor + 1); in checkWord()
59 assertEquals(-1, before.indexOf('^')); in checkWord()
60 assertEquals(-1, before.indexOf('[')); in checkWord()
61 assertEquals(-1, before.indexOf(']')); in checkWord()
63 Point positions = strategy.getWord(before, cursor); in checkWord()
66 String after = before.substring(0, positions.x) + '[' + in checkWord()
67 before.substring(positions.x, positions.y) + ']' + in checkWord()
[all …]
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/formatting/
DAndroidXmlFormattingStrategyTest.java31 private void check(String before, int replaceStart, int replaceEnd, String formatted, in check() argument
35 document.set(before); in check()
67 String before, String insert, String expected, in check() argument
70 int replaceStart = before.indexOf('['); in check()
72 before = before.substring(0, replaceStart) + before.substring(replaceStart + 1); in check()
74 int replaceEnd = before.indexOf(']'); in check()
76 before = before.substring(0, replaceEnd) + before.substring(replaceEnd + 1); in check()
78 check(before, replaceStart, replaceEnd, insert, expected, prefs); in check()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/
DAndroidXmlAutoEditStrategyTest.java33 public void checkInsertNewline(String before, String after) throws Exception { in checkInsertNewline() argument
47 String newDocumentContent = stripCaret(before); in checkInsertNewline()
52 int offset = updateCaret(viewer, before); in checkInsertNewline()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
Danim1-expected-completion55.txt8 …fillEnabled is not set to true, the animation transformation is applied before the animation has …
11 android:startOffset : Delay in milliseconds before the animation runs, once start time is reached.…
Danim1-expected-completion56.txt6 …fillEnabled is not set to true, the animation transformation is applied before the animation has …
9 android:startOffset : Delay in milliseconds before the animation runs, once start time is reached.…
Danimator1-expected-completion59.txt5 android:startOffset : Delay in milliseconds before the animation runs, once start time is reached.…
Dcompletionvalues1-expected-completion32.txt48 android:completionThreshold : Defines the number of characters that the user must type before comp…
88 android:fadeOffset : Time, in milliseconds, to wait before the gesture fades out after the user is…
103 android:footerDividersEnabled : When set to false, the ListView will not draw the divider before e…
110 android:gestureStrokeAngleThreshold : Minimum curve angle a stroke must contain before it is recogn…
111 android:gestureStrokeLengthThreshold : Minimum length of a stroke before it is recognized as a gest…
112 android:gestureStrokeSquarenessThreshold : Squareness threshold of a stroke before it is recognized…
225 …layBeforeFade : Defines the delay in milliseconds that a scrollbar waits before fade out. [integ…
Dcompletion12-expected-completion75.txt25 …layBeforeFade : Defines the delay in milliseconds that a scrollbar waits before fade out. [integ…
/sdk/templates/docs/
Ddefault.css114 h2:hover:before, h3:hover:before, h4.includetoc:hover:before {
Dcssreset-min.css7 …th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''…
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DLayoutActionBar.java206 List<RuleAction> before = mPrevActions; in updateActions() local
209 if (before == null) { in updateActions()
213 if (!before.equals(after) || after.size() > mLayoutToolBar.getItemCount()) { in updateActions()
226 RuleAction prevAction = before.get(actionIndex); in updateActions()
229 if (actionIndex == before.size()) { in updateActions()
232 prevAction = before.get(actionIndex); in updateActions()
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
DTextEditor.java54 public void onTextChanged(CharSequence s, int start, int before, int count) { in bindEditor()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/refactorings/core/
DRefactoringTestBase.java171 String before = new String(bytes, Charsets.UTF_8); in describe() local
173 document.replace(0, 0, before); in describe()
178 String diff = getDiff(before, after); in describe()
/sdk/docs/
DNotes_on_WST_StructuredDocument.txt82 XML_CONTENT:\n + whitespace before color
90 XML_CONTENT:\n + whitespace before string
109 XML_CONTENT: (2 spaces before the comment)
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/
Dmessages.properties28 …chError_ProjectHasErrors=Your project contains error(s), please fix them before running your appli…
/sdk/testapps/gridlayoutTest/v7-gridlayout/libs/
Dandroid-support-v7-gridlayout.jar ... ) protected void include (int, int) int before int after protected int size (boolean) boolean min ...
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/build/
DAaptQuickFixTest.java283 String before = document.get(); in checkNamespaceFix() local
286 String diff = getDiff(before, after); in checkNamespaceFix()
/sdk/files/
Dpost_tools_install.bat26 rem Grab current directory before we change it
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
DRefactoringTest.java167 String before = document.get(); in checkEdits() local
181 actual = getDiff(before, actual); in checkEdits()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
DTestNode.java376 Element before = children.get(index); in insertChildAt() local
377 mElement.insertBefore(child, before); in insertChildAt()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
DKeyCheckPage.java229 if (expirationCalendar.before(today)) { in onShow()
/sdk/eclipse/
Dchanges.txt610 where ADT tried to launch the activity before the app was installed.
695 - Check compiler compliance level before compilation and abort if
738 upgrading the plugin, before it works.
771 - The res and assets folders now fully refresh before the build,
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/
DNOTICE71 that license before distributing the Program.
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/
DNOTICE71 that license before distributing the Program.
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/
DNOTICE71 that license before distributing the Program.

12