/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 | 454 * @param styleName The name of the declare-styleable node 457 private DeclareStyleableInfo parseDeclaredStyleable(String styleName, 482 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/ |
KeyStylesSet.java | 190 final String styleName = keyStyleAttr.getString(R.styleable.Keyboard_KeyStyle_styleName); 191 if (styleName == null) { 193 KeyboardBuilder.TAG_KEY_STYLE + " has no styleName attribute", parser); 196 Log.d(TAG, String.format("<%s styleName=%s />", 197 KeyboardBuilder.TAG_KEY_STYLE, styleName)); 198 if (mStyles.containsKey(styleName)) { 199 Log.d(TAG, KeyboardBuilder.TAG_KEY_STYLE + " " + styleName + " is overridden at " 214 mStyles.put(styleName, style); 220 final String styleName = keyAttr.getString(R.styleable.Keyboard_Key_keyStyle); 221 if (styleName == null) [all...] |
/external/icu/icu4c/source/test/intltest/ |
dtfmtrtts.cpp | 191 static const char *styleName(DateFormat::EStyle s) 237 logln("Testing style " + UnicodeString(styleName((DateFormat::EStyle)style))); 240 errln(UnicodeString("Could not DF::createDateInstance ") + UnicodeString(styleName((DateFormat::EStyle)style)) + " Locale: " + loc.getDisplayName(temp)); 250 logln("Testing style " + UnicodeString(styleName((DateFormat::EStyle)style))); 253 errln(UnicodeString("Could not DF::createTimeInstance ") + UnicodeString(styleName((DateFormat::EStyle)style)) + " Locale: " + loc.getDisplayName(temp)); 264 logln("Testing dstyle" + UnicodeString(styleName((DateFormat::EStyle)dstyle)) + ", tstyle" + UnicodeString(styleName((DateFormat::EStyle)tstyle)) ); 267 dataerrln(UnicodeString("Could not DF::createDateTimeInstance ") + UnicodeString(styleName((DateFormat::EStyle)dstyle)) + ", tstyle" + UnicodeString(styleName((DateFormat::EStyle)tstyle)) + "Locale: " + loc.getDisplayName(temp));
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
DateFormatRoundTripTest.java | 75 public String styleName(int s) { 116 logln("Testing style " + styleName(style)); 124 logln("Testing style " + styleName(style)); 133 logln("Testing dstyle " + styleName(dstyle) + ", tstyle " + styleName(tstyle));
|
/frameworks/base/tools/aapt2/ |
Debug.cpp | 146 const ResourceName& styleName = stylesToVisit.front(); 147 std::set<ResourceName>& parents = graph[styleName]; 155 std::tie(type, entry) = table->findResource(styleName); 180 const ResourceName& styleName = entry.first; 181 size_t styleNodeIndex = getNodeIndex(names, styleName);
|
ResourceParser.cpp | [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/ |
AndroidManifestDescriptors.java | 346 String styleName = guessStyleName(xmlName); 347 String sdkUrl = DescriptorsUtils.MANIFEST_SDK_URL + styleName; 401 * @param styleName The name of the {@link ElementDescriptor} to inflate. Its XML local name 410 String styleName) { 412 assert styleName != null; 420 DeclareStyleableInfo style = styleMap.get(styleName); 441 if (styleName.equals(parent)) { 541 for (String styleName : manifestMap.keySet()) { 542 if (styleName.startsWith(ANDROID_MANIFEST_STYLEABLE)) { 543 stylesDeclared.add(styleName); [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/animator/ |
AnimatorDescriptors.java | 127 * @param styleName the name of the style which must exist for this style 139 String xmlName, String uiName, String styleName, String extraStyle, 144 DeclareStyleableInfo style = styleMap.get(styleName);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/otherxml/descriptors/ |
OtherXmlDescriptors.java | 182 "SearchableActionKey", //$NON-NLS-1$ styleName 191 "Searchable", //$NON-NLS-1$ styleName 213 "AppWidgetProviderInfo", //$NON-NLS-1$ styleName 228 Map<String, DeclareStyleableInfo> styleMap, String styleName, 236 return updateElement(element, styleMap, styleName, extraAttribute); 245 String styleName, 249 DeclareStyleableInfo style = styleMap != null ? styleMap.get(styleName) : null;
|
/external/skia/src/fonts/ |
SkFontMgr_fontconfig.cpp | 196 SkString* styleName) { 201 if (styleName) { 202 *styleName = fRecs[index].fStyleName;
|
/external/skia/src/ports/ |
SkFontMgr_win_dw.cpp | 328 void getStyle(int index, SkFontStyle* fs, SkString* styleName) override; [all...] |
SkFontMgr_fontconfig.cpp | 473 void getStyle(int index, SkFontStyle* style, SkString* styleName) override { 482 if (styleName) { 483 *styleName = get_string(fFontSet->fonts[index], FC_STYLE); [all...] |
SkFontHost_win.cpp | [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
ExtractStyleRefactoring.java | 214 void setStyleName(String styleName) { 215 mStyleName = styleName;
|
/prebuilts/tools/common/m2/repository/xslthl/xslthl/2.0.1/ |
xslthl-2.0.1.jar | |
/prebuilts/gradle-plugin/com/android/tools/layoutlib/layoutlib-api/23.1.0/ |
layoutlib-api-23.1.0.jar | |
/prebuilts/gradle-plugin/com/android/tools/layoutlib/layoutlib-api/23.1.3/ |
layoutlib-api-23.1.3.jar | |
/prebuilts/gradle-plugin/com/android/tools/layoutlib/layoutlib-api/23.1.4/ |
layoutlib-api-23.1.4.jar | |
/prebuilts/gradle-plugin/com/android/tools/sdk-common/23.1.0/ |
sdk-common-23.1.0.jar | |
/prebuilts/gradle-plugin/com/android/tools/sdk-common/23.1.3/ |
sdk-common-23.1.3.jar | |
/prebuilts/gradle-plugin/com/android/tools/sdk-common/23.1.4/ |
sdk-common-23.1.4.jar | |
/prebuilts/gradle-plugin/com/android/tools/sdk-common/23.2.0/ |
sdk-common-23.2.0.jar | |
/prebuilts/gradle-plugin/com/android/tools/sdk-common/23.2.1/ |
sdk-common-23.2.1.jar | |