Searched refs:fallback (Results 26 - 37 of 37) sorted by relevance

12

/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DXPStyle.java167 int getInt(Component c, Part part, State state, Prop prop, int fallback) { argument
232 synchronized Color getColor(Skin skin, Prop prop, Color fallback) { argument
245 return (color != null) ? color : fallback;
248 Color getColor(Component c, Part part, State state, Prop prop, Color fallback) { argument
249 return getColor(new Skin(c, part, state), prop, fallback);
H A DWindowsLookAndFeel.java2183 UIDefaults.LazyValue fallback = (UIDefaults.LazyValue)
2186 icon = (Icon) fallback.createValue(table);
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCAccessibility.java577 private static AccessibleRole getAccessibleRoleForLabel(JLabel l, AccessibleRole fallback) { argument
580 return fallback;
586 return fallback;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/msg/
H A DXIncludeMessages_ja.properties34 NoFallback = href ''{0}''\u3092\u542B\u3080''include''\u304C\u5931\u6557\u3057\u3001''fallback''\u8981\u7D20\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002
35 MultipleFallbacks = 'include'\u8981\u7D20\u306E[children]\u306B\u306F\u3001\u8907\u6570\u306E'fallback'\u8981\u7D20\u3092\u542B\u3081\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093\u3002
36 FallbackParent = \u89AA\u3068\u3057\u3066'include'\u3092\u6301\u305F\u306A\u3044'fallback'\u8981\u7D20\u304C\u898B\u3064\u304B\u308A\u307E\u3057\u305F\u3002
37 IncludeChild = \u30CD\u30FC\u30E0\u30B9\u30DA\u30FC\u30B9''http://www.w3.org/2001/XInclude''\u304B\u3089\u306E\u8981\u7D20\u306F\u3001''fallback''\u3092\u9664\u3044\u3066\u3001''include''\u8981\u7D20\u306E\u5B50\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093\u3002\u305D\u308C\u306B\u3082\u304B\u304B\u308F\u3089\u305A\u3001''{0}''\u304C\u898B\u3064\u304B\u308A\u307E\u3057\u305F\u3002
38 FallbackChild = \u30CD\u30FC\u30E0\u30B9\u30DA\u30FC\u30B9''http://www.w3.org/2001/XInclude''\u304B\u3089\u306E\u8981\u7D20\u306F\u3001''include''\u3092\u9664\u3044\u3066\u3001''fallback''\u8981\u7D20\u306E\u5B50\u306B\u3059\u308B\u3053\u3068\u306F\u3067\u304D\u307E\u305B\u3093\u3002\u305D\u308C\u306B\u3082\u304B\u304B\u308F\u3089\u305A\u3001''{0}''\u304C\u898B\u3064\u304B\u308A\u307E\u3057\u305F\u3002
/openjdk7/jdk/src/share/classes/sun/font/
H A DSunFontManager.java2072 public Font2D findFont2D(String name, int style, int fallback) { argument
2280 font = findFont2D("serif", style, fallback);
2285 Font2D ff = findFont2D(name, style, fallback);
2349 return findFont2D(name, style, fallback);
2359 return findFont2D(name, style, fallback);
2396 font = findFont2D(compatName, style, fallback);
2401 font = findFont2D("serif", style, fallback);
2405 font = findFont2D("sansserif", style, fallback);
2409 font = findFont2D("monospaced", style, fallback);
2418 switch (fallback) {
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DMetacity.java87 throw new Error("Could not find any installed metacity theme, and fallback failed");
556 // OK to just ignore. We'll use a fallback theme.
558 // OK to just ignore. We'll use a fallback theme.
850 protected boolean getBoolean(String key, boolean fallback) { argument
852 return (b != null) ? b.booleanValue() : fallback;
1652 protected boolean getBooleanAttr(Node node, String name, boolean fallback) { argument
1657 return fallback;
1660 protected int getIntAttr(Node node, String name, int fallback) { argument
1662 int value = fallback;
1673 protected float getFloatAttr(Node node, String name, float fallback) { argument
1812 evaluate(String expr, int fallback) argument
[all...]
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMethodHandleImpl.java544 MethodHandle selectAlternative(boolean testResult, MethodHandle target, MethodHandle fallback) { argument
545 return testResult ? target : fallback;
564 MethodHandle fallback) {
579 Object[] selectArgs = { names[arity + 1], target, fallback };
583 // call target or fallback
562 makeGuardWithTest(MethodHandle test, MethodHandle target, MethodHandle fallback) argument
H A DMethodHandles.java2132 * If the guard fails, a fallback handle is called instead.
2141 * T fallback(A...,B...);
2146 * return fallback(a..., b...);
2151 * from the caller to the target or fallback as appropriate.
2154 * @param fallback method handle to call if test fails
2164 MethodHandle fallback) {
2167 MethodType ftype = fallback.type();
2169 throw misMatchedTypes("target and fallback types", ttype, ftype);
2181 return MethodHandleImpl.makeGuardWithTest(test, target, fallback);
2192 * If an exception matching the specified type is thrown, the fallback
2162 guardWithTest(MethodHandle test, MethodHandle target, MethodHandle fallback) argument
[all...]
H A DInvokerBytecodeGenerator.java738 MethodHandle fallback = (MethodHandle) selectAlternativeName.arguments[2];
/openjdk7/jdk/src/share/classes/sun/awt/
H A DFontConfiguration.java227 "fonts" + File.separator + "fallback";
503 //fallback
708 * Returns a fallback name for the given font name. For a few known
996 * or the given fallback font as component fonts, they are added here.
1033 // fall back fonts listed in the lib/fonts/fallback directory
1106 //padding for various fallback fonts
1144 * to search for it. If it doesn't then unless its a fallback font,
1157 * if this file isn't for a core component, ie, is a for a fallback
1190 Short[] fallback = fallbackFontNameIDs.toArray(emptyShortArray);
1194 for (i = 0; i < fallback
[all...]
/openjdk7/jdk/test/java/lang/invoke/
H A DMethodHandlesTest.java2202 MethodHandle fallback = PRIVATE.findStatic(MethodHandlesTest.class, "fallbackIfNotEquals", MethodType.genericMethodType(nargs1));
2210 fallback = changeArgTypes(fallback, argClass);
2216 fallback = addTrailingArgs(fallback, nargs, argClass);
2235 MethodHandle mh = MethodHandles.guardWithTest(test1, target, fallback);
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaFileChooserUI.java220 String getString(final String uiKey, final String fallback) { argument
222 return (result == null ? fallback : result);
250 // Mac-specific, but fallback to basic if it's missing
1887 // Try to get the custom text. If none, use the fallback
1902 // No fallback
2037 // Get the custom text, or fallback to "Save"
2094 // Get the custom text, or fallback to "Open"

Completed in 161 milliseconds

12