/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
D | navigation1-expected-navigate4.txt | 2 Open Declaration in values-en-rGB/strings.xml : [@android:string/ok] 4 Open Declaration in values/strings.xml : [@android:string/ok] 6 Open Declaration in values-ar/strings.xml : [@android:string/ok] 8 Open Declaration in values-bg/strings.xml : [@android:string/ok] 10 Open Declaration in values-ca/strings.xml : [@android:string/ok] 12 Open Declaration in values-cs/strings.xml : [@android:string/ok] 14 Open Declaration in values-da/strings.xml : [@android:string/ok] 16 Open Declaration in values-de/strings.xml : [@android:string/ok] 18 Open Declaration in values-el/strings.xml : [@android:string/ok] 20 Open Declaration in values-es/strings.xml : [@android:string/ok] [all …]
|
D | completionvalues2-expected-applyCompletion45.diff | 1 Code completion in completionvalues2.xml for @string/^app_name selecting @string/hello: 2 < <item name="main_layout5" type="string">@string/^app_name</item> 4 > <item name="main_layout5" type="string">@string/hello^</item>
|
D | navigation1-expected-navigate1.txt | 1 Go To Declaration in navigation1.xml for android:text="@string/app^_name": 2 Open Declaration in values/strings.xml : [@string/app_name] 7 [^<string name="app_name">PROJECTNAME</string>]
|
D | completionvalues2-expected-completion71.txt | 1 Code completion in completionvalues2.xml for <item name="main_layout5" type="string">@string/^app_n… 2 @string/app_name
|
D | manifest-expected-completion18.txt | 2 …of the class implementing the activity, deriving from android.app.Activity. [string]. * Required. 4 android:label : A user-legible name for the given item. [string, reference] 11 …fy a permission that a client is required to have in order to use the associated object. [string] 13 android:process : Specify a specific process that the associated code is to run in. [string] 14 android:taskAffinity : Specify a task name that activities have an "affinity" to. [string] 29 …vityName : The name of the logical parent of the activity as it appears in the manifest. [string]
|
D | manifest-expected-completion17.txt | 5 android:versionName : The text shown to the user to indicate the version they have. [string] 6 …redUserId : Specify the name of a user ID that will be shared between multiple packages. [string]
|
D | broken2-expected-completion21.txt | 7 "@string/"
|
D | completionvalues1-expected-completion25.txt | 7 @string/
|
D | animator1-expected-completion61.txt | 18 @string/
|
D | completion1-expected-completion6.txt | 22 @android:string/
|
D | completionvalues1-expected-completion32.txt | 42 android:collapseColumns : The zero-based index of the columns to collapse. [string] 46 android:completionHint : Defines the hint displayed in the drop down menu. [string] 50 android:contentDescription : Defines text that briefly describes content of the view. [string] 56 …meric input method and that these specific characters are the ones that it will accept. [string] 102 android:fontFamily : Font family (named by string) for the text. [string] 107 …string: if specified, the Chronometer will display this string, with the first "%s" replaced by t… 123 android:hint : Hint text to display when the text is empty. [string] 129 …alue for EditorInfo.actionLabel used when an input method is connected to the text view. [string] 142 …ut method (specified by fully-qualified class name). * Deprecated: Use inputType instead. [string] 161 android:maxDate : The minimal date shown by this calendar view in mm/dd/yyyy format. [string] [all …]
|
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/model/ |
D | EditableItemConstants.java | 32 public static final int CATEGORY_MAIN = R.string.properties; 33 public static final int CATEGORY_STYLE = R.string.style; 34 public static final int CATEGORY_ACTION1 = R.string.action_1; 35 public static final int CATEGORY_ACTION2 = R.string.action_2; 36 public static final int CATEGORY_ACTION3 = R.string.action_3; 38 public static final Integer PRESET_CUSTOM = R.string.preset_custom; 39 public static final Integer PRESET_BASIC = R.string.preset_basic; 40 public static final Integer PRESET_EMAIL = R.string.preset_email; 41 public static final Integer PRESET_PHOTO = R.string.preset_photo; 43 public static final Integer STYLE_NONE = R.string.style_none; [all …]
|
D | EditableItem.java | 28 PRESET(R.string.preset, TYPE_DROP_DOWN, CATEGORY_MAIN, 30 SMALL_ICON(R.string.small_icon, TYPE_RESOURCE_ID, CATEGORY_MAIN, 32 CONTENT_TITLE(R.string.content_title, TYPE_TEXT, CATEGORY_MAIN), 33 CONTENT_TEXT(R.string.content_text, TYPE_TEXT, CATEGORY_MAIN), 34 SUB_TEXT(R.string.sub_text, TYPE_TEXT, CATEGORY_MAIN), 35 LARGE_ICON(R.string.large_icon, TYPE_BITMAP, CATEGORY_MAIN), 36 CONTENT_INFO(R.string.content_info, TYPE_TEXT, CATEGORY_MAIN), 37 NUMBER(R.string.number, TYPE_INT, CATEGORY_MAIN), 38 WHEN(R.string.when, TYPE_DATETIME, CATEGORY_MAIN), 39 PROGRESS(R.string.progress, TYPE_BOOLEAN, CATEGORY_MAIN), [all …]
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ |
D | AndroidDoubleClickStrategy.java | 59 protected Point getWord(String string, int cursor) { in getWord() argument 60 if (string == null) { in getWord() 65 Point position = super.getWord(string, cursor); in getWord() 71 if (string.startsWith(PREFIX_RESOURCE_REF, position.x) || in getWord() 72 string.startsWith(PREFIX_THEME_REF, position.x)) { in getWord() 73 int nameStart = string.indexOf('/', position.x + 1); in getWord() 82 int lastDot = string.lastIndexOf('.', cursor); in getWord() 84 int next = string.indexOf('.', cursor); in getWord()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
D | FmExtractLettersMethod.java | 35 String string = args.get(0).toString(); in exec() local 36 StringBuilder sb = new StringBuilder(string.length()); in exec() 37 for (int i = 0, n = string.length(); i < n; i++) { in exec() 38 char c = string.charAt(i); in exec()
|
D | FmEscapeXmlAttributeMethod.java | 37 String string = args.get(0).toString(); in exec() local 38 return new SimpleScalar(XmlUtils.toXmlAttributeValue(string)); in exec()
|
D | FmEscapeXmlTextMethod.java | 37 String string = args.get(0).toString(); in exec() local 38 return new SimpleScalar(XmlUtils.toXmlTextValue(string)); in exec()
|
D | FmEscapeXmlStringMethod.java | 40 String string = args.get(0).toString(); in exec() local 41 return new SimpleScalar(ValueXmlHelper.escapeResourceString(string)); in exec()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/templates/ |
D | string.template | 1 <string name="STRING_NAME">STRING_CONTENT</string>
|
/sdk/files/ |
D | android.el | 19 :type 'string 33 :type 'string 38 :type 'string
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/ |
D | ExtractStringProposal.java | 87 String string = buffer.getText(start, length); in getAdditionalProposalInfo() local 88 string = ExtractStringRefactoring.unquoteAttrValue(string); in getAdditionalProposalInfo() 89 String token = ExtractStringInputPage.guessId(string); in getAdditionalProposalInfo() 154 sb.append(string); in getAdditionalProposalInfo()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/ |
D | TestGraphics.java | 85 public void drawString(@NonNull String string, int x, int y) { in drawString() argument 86 mDrawn.add("drawString(" + x + "," + y + "," + string + ")"); in drawString() 90 public void drawString(@NonNull String string, @NonNull Point topLeft) { in drawString() argument 91 mDrawn.add("drawString(" + string + "," + topLeft + ")"); in drawString()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/ |
D | AdtUtils.java | 118 public static String extractClassName(@NonNull String string) { in extractClassName() argument 119 StringBuilder sb = new StringBuilder(string.length()); in extractClassName() 120 int n = string.length(); in extractClassName() 124 char c = Character.toUpperCase(string.charAt(i)); in extractClassName() 133 char c = string.charAt(i); in extractClassName() 189 public static String stripSuffix(@NonNull String string, @NonNull String suffix) { in stripSuffix() argument 190 if (string.endsWith(suffix)) { in stripSuffix() 191 return string.substring(0, string.length() - suffix.length()); in stripSuffix() 194 return string; in stripSuffix() 221 public static String camelCaseToUnderlines(String string) { in camelCaseToUnderlines() argument [all …]
|
/sdk/docs/ |
D | Notes_on_WST_StructuredDocument.txt | 55 <string name="my_string">Some Value</string> <!-- comment -->\n 90 XML_CONTENT:\n + whitespace before string 94 XML_TAG_NAME:string 105 XML_TAG_NAME:string 158 here, the only case where it matters is in a tag such as <string name="my_string">: for the 159 XML_TAG_NAME region, getLength is 7 (string + space) and getTextLength is 6 (string, no space).
|
/sdk/apps/SdkController/src/com/android/tools/sdkcontroller/activities/ |
D | MainActivity.java | 204 getText(connected ? R.string.main_service_status_connected in updateStatus() 205 : R.string.main_service_status_disconnected)); in updateStatus()
|