/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
ViewTagRule.java | 35 String fqcn = mRulesEngine.displayCustomViewClassInput(); local 36 if (fqcn != null) { 37 if (!ViewElementDescriptor.viewNeedsPackage(fqcn)) { 38 fqcn = fqcn.substring(fqcn.lastIndexOf('.') + 1); 42 fqcn.length() > 0 ? fqcn : null));
|
FragmentRule.java | 35 String fqcn = mRulesEngine.displayFragmentSourceInput(); local 36 if (fqcn != null) { 39 fqcn.length() > 0 ? fqcn : null));
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gre/ |
MockNodeProxy.java | 32 * Generates a {@link NodeProxy} using an FQCN (e.g. android.view.View) 33 * and making the last segment of the FQCN the XML name of the view (e.g. "View") 36 * @param fqcn The fully qualified name of the class to wrap, e.g. "android.view.Button". 44 public MockNodeProxy(String fqcn, Rectangle bounds, NodeFactory factory) { 45 super(makeUiViewNode(fqcn), bounds, factory); 49 * Generates a {@link ViewElementDescriptor} using an FQCN (e.g. android.view.View) 50 * and making the last segment of the FQCN the XML name of the view (e.g. "View"). 52 * @param fqcn The fully qualified name of the class to wrap, e.g. "android.view.Button" 53 * @return A new view element node with a new descriptor for the FQCN and an XML name 54 * matching the last FQCN segment (e.g. "Button" [all...] |
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/ext/ |
LoggerWrapper.java | 47 // fqcn depend on the caller, but its value would not be different 51 final String fqcn; field in class:LoggerWrapper 55 public LoggerWrapper(Logger logger, String fqcn) { 57 this.fqcn = fqcn; 87 ((LocationAwareLogger) logger).log(null, fqcn, LocationAwareLogger.TRACE_INT, msg, null, null); 102 ((LocationAwareLogger) logger).log(null, fqcn, LocationAwareLogger.TRACE_INT, formattedMessage, new Object[] { arg }, null); 117 ((LocationAwareLogger) logger).log(null, fqcn, LocationAwareLogger.TRACE_INT, formattedMessage, new Object[] { arg1, arg2 }, null); 132 ((LocationAwareLogger) logger).log(null, fqcn, LocationAwareLogger.TRACE_INT, formattedMessage, args, null); 146 ((LocationAwareLogger) logger).log(null, fqcn, LocationAwareLogger.TRACE_INT, msg, null, t) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/ |
LayoutParamsParser.java | 89 /** Output map of FQCN => info on View classes */ 91 /** Output map of FQCN => info on ViewGroup classes */ 93 /** Output map of FQCN => info on LayoutParams classes */ 113 /** Returns the map of FQCN => info on View classes */ 118 /** Returns the map of FQCN => info on ViewGroup classes */ 129 * Note on Vocabulary: FQCN=Fully Qualified Class Name (e.g. "my.package.class$innerClass") 221 String fqcn = viewClass.getFullClassName(); local 222 if (mViewMap.containsKey(fqcn)) { 223 return mViewMap.get(fqcn); 224 } else if (mGroupMap.containsKey(fqcn)) { 249 String fqcn = groupClass.getFullClassName(); local 317 String fqcn = layoutParamsClass.getFullClassName(); local [all...] |
WidgetClassLoader.java | 59 ClassDescriptor(String fqcn) { 60 mFqcn = fqcn; 61 mSimpleName = getSimpleName(fqcn); 131 private String getSimpleName(String fqcn) { 132 String[] segments = fqcn.split("\\."); 139 /** Output map of FQCN => descriptor on all classes */ 141 /** Output map of FQCN => descriptor on View classes */ 143 /** Output map of FQCN => descriptor on ViewGroup classes */ 145 /** Output map of FQCN => descriptor on LayoutParams classes */ 239 String fqcn = classes[index] local 274 String fqcn = param.getFullClassName(); local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/ |
ViewMetadataRepository.java | 154 * @param element the element to look up the fqcn for 155 * @return the fqcn of the view the element represents a preview for 255 String fqcn = child.getAttribute("class"); //$NON-NLS-1$ local 256 if (fqcn.length() == 0) { 257 fqcn = defaultFqcn; 281 ViewData view = new ViewData(fqcn, displayName, fillPreference, 302 fqcn, fillPreference, renderMode, resize); 331 // First record map of FQCN to ViewElementDescriptor such that we can quickly 337 String fqcn = view.getFullClassName(); local 338 if (fqcn == null) 360 String fqcn = view.getFcqn(); local [all...] |
/external/slf4j/slf4j-log4j12/src/main/java/org/slf4j/impl/ |
Log4jLoggerAdapter.java | 65 final static String FQCN = Log4jLoggerAdapter.class.getName(); 109 logger.log(FQCN, traceCapable ? Level.TRACE : Level.DEBUG, msg, null); 129 logger.log(FQCN, traceCapable ? Level.TRACE : Level.DEBUG, ft.getMessage(), ft.getThrowable()); 152 logger.log(FQCN, traceCapable ? Level.TRACE : Level.DEBUG, ft.getMessage(), ft.getThrowable()); 173 logger.log(FQCN, traceCapable ? Level.TRACE : Level.DEBUG, ft.getMessage(), ft.getThrowable()); 186 logger.log(FQCN, traceCapable ? Level.TRACE : Level.DEBUG, msg, t); 205 logger.log(FQCN, Level.DEBUG, msg, null); 225 logger.log(FQCN, Level.DEBUG, ft.getMessage(), ft.getThrowable()); 248 logger.log(FQCN, Level.DEBUG, ft.getMessage(), ft.getThrowable()); 268 logger.log(FQCN, Level.DEBUG, ft.getMessage(), ft.getThrowable()) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/ |
ActivityMenuListener.java | 58 @Nullable String fqcn) { 61 mFqcn = fqcn; 69 String fqcn = configuration.getActivity(); local 70 AdtPlugin.openJavaClass(mConfigChooser.getProject(), fqcn); local 117 for (String fqcn : activities) { 118 if (!remove.contains(fqcn)) { 119 filtered.add(fqcn); 143 for (final String fqcn : activities) { 144 String title = ConfigurationChooser.getActivityLabel(fqcn, false); 157 ACTION_SELECT_ACTIVITY, fqcn)); [all...] |
/external/slf4j/jcl-over-slf4j/src/main/java/org/apache/commons/logging/impl/ |
SLF4JLocationAwareLog.java | 48 private static final String FQCN = SLF4JLocationAwareLog.class.getName(); 107 logger.log(null, FQCN, LocationAwareLogger.TRACE_INT, String.valueOf(message), null, null); 120 logger.log(null, FQCN, LocationAwareLogger.TRACE_INT, String.valueOf(message), null, t); 131 logger.log(null, FQCN, LocationAwareLogger.DEBUG_INT, String.valueOf(message), null, null); 144 logger.log(null, FQCN, LocationAwareLogger.DEBUG_INT, String.valueOf(message), null, t); 155 logger.log(null, FQCN, LocationAwareLogger.INFO_INT, String.valueOf(message), null, null); 168 logger.log(null, FQCN, LocationAwareLogger.INFO_INT, String.valueOf(message), null, t); 179 logger.log(null, FQCN, LocationAwareLogger.WARN_INT, String.valueOf(message), null, null); 192 logger.log(null, FQCN, LocationAwareLogger.WARN_INT, String.valueOf(message), null, t); 203 logger.log(null, FQCN, LocationAwareLogger.ERROR_INT, String.valueOf(message), null, null) [all...] |
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/ |
ICreateInfo.java | 55 * Returns the list of classes to rename, must be an even list: the binary FQCN 56 * of class to replace followed by the new FQCN. 72 * binary FQCN of class to replace followed by the new FQCN. All references 82 * are in the form of the binary FQCN of the class containing the field and the field name 88 * Returns a map from binary FQCN className to {@link InjectMethodRunnable} which will be
|
/developers/build/prebuilts/gradle/SpeedTracker/Application/ |
proguard-rules.pro | 15 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
/developers/build/prebuilts/gradle/SpeedTracker/Shared/ |
proguard-rules.pro | 15 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
/developers/build/prebuilts/gradle/SpeedTracker/Wearable/ |
proguard-rules.pro | 15 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
/developers/build/prebuilts/gradle/WearSpeakerSample/wear/ |
proguard-rules.pro | 15 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
/developers/build/prebuilts/gradle/XYZTouristAttractions/Shared/ |
proguard-rules.pro | 15 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
/developers/build/prebuilts/gradle/XYZTouristAttractions/Wearable/ |
proguard-rules.pro | 15 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
/developers/samples/android/wearable/wear/SpeedTracker/Application/ |
proguard-rules.pro | 15 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
/developers/samples/android/wearable/wear/SpeedTracker/Shared/ |
proguard-rules.pro | 15 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
/developers/samples/android/wearable/wear/SpeedTracker/Wearable/ |
proguard-rules.pro | 15 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
/developers/samples/android/wearable/wear/WearSpeakerSample/wear/ |
proguard-rules.pro | 15 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
/developers/samples/android/wearable/wear/XYZTouristAttractions/Shared/ |
proguard-rules.pro | 15 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
/developers/samples/android/wearable/wear/XYZTouristAttractions/Wearable/ |
proguard-rules.pro | 15 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
/development/samples/SupportLeanbackShowcase/app/ |
proguard-rules.pro | 15 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
/frameworks/data-binding/integration-tests/App With Spaces/app/ |
proguard-rules.pro | 15 #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|