Searched refs:clsName (Results 1 – 4 of 4) sorted by relevance
51 final String clsName = mContext.getString(R.string.config_statusBarComponent); in createStatusBarFromConfig() local52 if (clsName == null || clsName.length() == 0) { in createStatusBarFromConfig()57 cls = mContext.getClassLoader().loadClass(clsName); in createStatusBarFromConfig()59 throw andLog("Error loading status bar component: " + clsName, t); in createStatusBarFromConfig()64 throw andLog("Error creating status bar component: " + clsName, t); in createStatusBarFromConfig()
92 final String clsName = context.getString(R.string.config_systemUIFactoryComponent); in createFromConfig() local93 if (clsName == null || clsName.length() == 0) { in createFromConfig()99 cls = context.getClassLoader().loadClass(clsName); in createFromConfig()103 Log.w(TAG, "Error creating SystemUIFactory component: " + clsName, t); in createFromConfig()
168 String clsName = services[i]; in startServicesIfNeeded() local169 if (DEBUG) Log.d(TAG, "loading: " + clsName); in startServicesIfNeeded()170 log.traceBegin("StartServices" + clsName); in startServicesIfNeeded()174 cls = Class.forName(clsName); in startServicesIfNeeded()
146 final String clsName = mContext.getString(R.string.config_recentsComponent); in createRecentsImplementationFromConfig() local147 if (clsName == null || clsName.length() == 0) { in createRecentsImplementationFromConfig()152 cls = mContext.getClassLoader().loadClass(clsName); in createRecentsImplementationFromConfig()154 throw new RuntimeException("Error loading recents component: " + clsName, t); in createRecentsImplementationFromConfig()160 throw new RuntimeException("Error creating recents component: " + clsName, t); in createRecentsImplementationFromConfig()