HomeSort by relevance Sort by last modified time
    Searched refs:styleName (Results 1 - 13 of 13) sorted by null

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
DeclareStyleableInfo.java 38 * @param styleName The name of the style. Should not be empty nor null.
41 public DeclareStyleableInfo(String styleName, AttributeInfo[] attributes) {
42 mStyleName = styleName;
50 * @param styleName The name of the style. Should not be empty nor null.
53 public DeclareStyleableInfo(String styleName, DeclareStyleableInfo existing) {
54 mStyleName = styleName;
AttrsXmlParser.java 421 * @param styleName The name of the declare-styleable node
424 private DeclareStyleableInfo parseDeclaredStyleable(String styleName,
449 return new DeclareStyleableInfo(styleName, attrs.toArray(new AttributeInfo[attrs.size()]));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/menu/descriptors/
MenuDescriptors.java 157 String styleName,
161 DeclareStyleableInfo style = styleMap != null ? styleMap.get(styleName) : null;
189 String styleName = AdtUtils.capitalize(xmlName);
194 if (!styleName.equals(MENU_STYLE_BASE_NAME)) {
195 styleName = MENU_STYLE_BASE_NAME + styleName;
197 return styleName;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyStyles.java 215 final String styleName = keyStyleAttr.getString(R.styleable.Keyboard_KeyStyle_styleName);
216 if (DEBUG) Log.d(TAG, String.format("<%s styleName=%s />",
217 KeyboardBuilder.TAG_KEY_STYLE, styleName));
218 if (mStyles.containsKey(styleName))
219 throw new ParseException("duplicate key style declared: " + styleName, parser);
231 mStyles.put(styleName, style);
234 public KeyStyle getKeyStyle(String styleName) {
235 return mStyles.get(styleName);
  /external/icu4c/test/intltest/
dtfmtrtts.cpp 192 static const char *styleName(DateFormat::EStyle s)
238 logln("Testing style " + UnicodeString(styleName((DateFormat::EStyle)style)));
241 errln(UnicodeString("Could not DF::createDateInstance ") + UnicodeString(styleName((DateFormat::EStyle)style)) + " Locale: " + loc.getDisplayName(temp));
251 logln("Testing style " + UnicodeString(styleName((DateFormat::EStyle)style)));
254 errln(UnicodeString("Could not DF::createTimeInstance ") + UnicodeString(styleName((DateFormat::EStyle)style)) + " Locale: " + loc.getDisplayName(temp));
265 logln("Testing dstyle" + UnicodeString(styleName((DateFormat::EStyle)dstyle)) + ", tstyle" + UnicodeString(styleName((DateFormat::EStyle)tstyle)) );
268 dataerrln(UnicodeString("Could not DF::createDateTimeInstance ") + UnicodeString(styleName((DateFormat::EStyle)dstyle)) + ", tstyle" + UnicodeString(styleName((DateFormat::EStyle)tstyle)) + "Locale: " + loc.getDisplayName(temp));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/
AndroidManifestDescriptors.java 314 String styleName = guessStyleName(xmlName);
315 String sdkUrl = DescriptorsUtils.MANIFEST_SDK_URL + styleName;
369 * @param styleName The name of the {@link ElementDescriptor} to inflate. Its XML local name
378 String styleName) {
380 assert styleName != null;
388 DeclareStyleableInfo style = styleMap.get(styleName);
409 if (styleName.equals(parent)) {
509 for (String styleName : manifestMap.keySet()) {
510 if (styleName.startsWith(ANDROID_MANIFEST_STYLEABLE)) {
511 stylesDeclared.add(styleName);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/animator/
AnimatorDescriptors.java 125 * @param styleName the name of the style which must exist for this style
137 String xmlName, String uiName, String styleName, String extraStyle,
142 DeclareStyleableInfo style = styleMap.get(styleName);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/xml/descriptors/
XmlDescriptors.java 174 "SearchableActionKey", //$NON-NLS-1$ styleName
183 "Searchable", //$NON-NLS-1$ styleName
205 "AppWidgetProviderInfo", //$NON-NLS-1$ styleName
220 Map<String, DeclareStyleableInfo> styleMap, String styleName,
228 return updateElement(element, styleMap, styleName, extraAttribute);
237 String styleName,
241 DeclareStyleableInfo style = styleMap != null ? styleMap.get(styleName) : null;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
Key.java 221 String styleName = keyAttr.getString(R.styleable.Keyboard_Key_keyStyle);
222 style = keyStyles.getKeyStyle(styleName);
224 throw new ParseException("Unknown key style: " + styleName, parser);
  /sdk/ide_common/src/com/android/ide/common/resources/
ResourceResolver.java 479 private String getParentName(String styleName) {
480 int index = styleName.lastIndexOf('.');
482 return styleName.substring(0, index);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractStyleRefactoring.java 204 void setStyleName(String styleName) {
205 mStyleName = styleName;
  /external/webkit/Source/WebCore/inspector/front-end/
TimelinePanel.js     [all...]
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 

Completed in 863 milliseconds