Home
last modified time | relevance | path

Searched refs:string (Results 1 – 25 of 41) sorted by relevance

12

/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
Dnavigation1-expected-navigate4.txt2 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 …]
Dcompletionvalues2-expected-applyCompletion45.diff1 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>
Dnavigation1-expected-navigate1.txt1 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>]
Dcompletionvalues2-expected-completion71.txt1 Code completion in completionvalues2.xml for <item name="main_layout5" type="string">@string/^app_n…
2 @string/app_name
Dmanifest-expected-completion18.txt2 …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]
Dmanifest-expected-completion17.txt5 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]
Dbroken2-expected-completion21.txt7 "@string/"
Dcompletionvalues1-expected-completion25.txt7 @string/
Danimator1-expected-completion61.txt18 @string/
Dcompletion1-expected-completion6.txt22 @android:string/
Dcompletionvalues1-expected-completion32.txt42 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]
107string: 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/
DEditableItemConstants.java32 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 …]
DEditableItem.java28 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/
DAndroidDoubleClickStrategy.java59 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/
DFmExtractLettersMethod.java35 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()
DFmEscapeXmlAttributeMethod.java37 String string = args.get(0).toString(); in exec() local
38 return new SimpleScalar(XmlUtils.toXmlAttributeValue(string)); in exec()
DFmEscapeXmlTextMethod.java37 String string = args.get(0).toString(); in exec() local
38 return new SimpleScalar(XmlUtils.toXmlTextValue(string)); in exec()
DFmEscapeXmlStringMethod.java40 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/
Dstring.template1 <string name="STRING_NAME">STRING_CONTENT</string>
/sdk/files/
Dandroid.el19 :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/
DExtractStringProposal.java87 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/
DTestGraphics.java85 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/
DAdtUtils.java118 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/
DNotes_on_WST_StructuredDocument.txt55 <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/
DMainActivity.java204 getText(connected ? R.string.main_service_status_connected in updateStatus()
205 : R.string.main_service_status_disconnected)); in updateStatus()

12