HomeSort by relevance Sort by last modified time
    Searched defs:SINGLETON (Results 1 - 25 of 94) sorted by null

1 2 3 4

  /external/slf4j/slf4j-android/src/main/java/org/slf4j/impl/
StaticMDCBinder.java 42 public static final StaticMDCBinder SINGLETON = new StaticMDCBinder();
StaticMarkerBinder.java 45 public static final StaticMarkerBinder SINGLETON = new StaticMarkerBinder();
StaticLoggerBinder.java 43 private static final StaticLoggerBinder SINGLETON = new StaticLoggerBinder();
46 * Return the singleton of this class.
48 * @return the StaticLoggerBinder singleton
51 return SINGLETON;
  /external/slf4j/slf4j-api/src/main/java/org/slf4j/impl/
StaticMDCBinder.java 40 public static final StaticMDCBinder SINGLETON = new StaticMDCBinder();
StaticMarkerBinder.java 48 public static final StaticMarkerBinder SINGLETON = new StaticMarkerBinder();
StaticLoggerBinder.java 44 private static final StaticLoggerBinder SINGLETON = new StaticLoggerBinder();
47 * Return the singleton of this class.
49 * @return the StaticLoggerBinder singleton
52 return SINGLETON;
  /external/slf4j/slf4j-jcl/src/main/java/org/slf4j/impl/
StaticMDCBinder.java 40 public static final StaticMDCBinder SINGLETON = new StaticMDCBinder();
StaticMarkerBinder.java 44 public static final StaticMarkerBinder SINGLETON = new StaticMarkerBinder();
StaticLoggerBinder.java 42 private static final StaticLoggerBinder SINGLETON = new StaticLoggerBinder();
45 * Return the singleton of this class.
47 * @return the StaticLoggerBinder singleton
50 return SINGLETON;
  /external/slf4j/slf4j-jdk14/src/main/java/org/slf4j/impl/
StaticMDCBinder.java 40 public static final StaticMDCBinder SINGLETON = new StaticMDCBinder();
StaticMarkerBinder.java 44 public static final StaticMarkerBinder SINGLETON = new StaticMarkerBinder();
StaticLoggerBinder.java 43 private static final StaticLoggerBinder SINGLETON = new StaticLoggerBinder();
46 * Return the singleton of this class.
48 * @return the StaticLoggerBinder singleton
51 return SINGLETON;
  /external/slf4j/slf4j-log4j12/src/main/java/org/slf4j/impl/
StaticMDCBinder.java 39 public static final StaticMDCBinder SINGLETON = new StaticMDCBinder();
StaticMarkerBinder.java 44 public static final StaticMarkerBinder SINGLETON = new StaticMarkerBinder();
StaticLoggerBinder.java 45 private static final StaticLoggerBinder SINGLETON = new StaticLoggerBinder();
48 * Return the singleton of this class.
50 * @return the StaticLoggerBinder singleton
53 return SINGLETON;
  /external/slf4j/slf4j-nop/src/main/java/org/slf4j/impl/
StaticMDCBinder.java 40 public static final StaticMDCBinder SINGLETON = new StaticMDCBinder();
StaticMarkerBinder.java 44 public static final StaticMarkerBinder SINGLETON = new StaticMarkerBinder();
StaticLoggerBinder.java 44 private static final StaticLoggerBinder SINGLETON = new StaticLoggerBinder();
47 * Return the singleton of this class.
49 * @return the StaticLoggerBinder singleton
52 return SINGLETON;
  /external/slf4j/slf4j-simple/src/main/java/org/slf4j/impl/
StaticMDCBinder.java 40 public static final StaticMDCBinder SINGLETON = new StaticMDCBinder();
StaticMarkerBinder.java 45 public static final StaticMarkerBinder SINGLETON = new StaticMarkerBinder();
StaticLoggerBinder.java 44 private static final StaticLoggerBinder SINGLETON = new StaticLoggerBinder();
47 * Return the singleton of this class.
49 * @return the StaticLoggerBinder singleton
52 return SINGLETON;
  /external/guice/core/src/com/google/inject/
Scopes.java 37 * One instance per {@link Injector}. Also see {@code @}{@link Singleton}.
39 public static final Scope SINGLETON = new SingletonScope();
48 * annotation such as {@link Singleton @Singleton}, and you need to override
69 return scopeAnnotation == Singleton.class
70 || scopeAnnotation == javax.inject.Singleton.class;
74 return scope == Scopes.SINGLETON;
83 * Returns true if {@code binding} is singleton-scoped. If the binding is a {@link
86 * also true if the target binding is singleton-scoped.
92 boolean singleton = binding.acceptScopingVisitor(IS_SINGLETON_VISITOR)
    [all...]
  /external/mockito/src/main/java/org/mockito/internal/stubbing/answers/
DoesNothing.java 19 private static final DoesNothing SINGLETON = new DoesNothing();
24 return SINGLETON;
  /external/slf4j/integration/lib/
slf4j-nop-1.5.6.jar 
  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
UnicodeLocaleExtension.java 24 public static final char SINGLETON = 'u';
48 super(SINGLETON);
91 return (SINGLETON == AsciiUtil.toLower(c));

Completed in 211 milliseconds

1 2 3 4