HomeSort by relevance Sort by last modified time
    Searched refs:Setting (Results 1 - 25 of 131) sorted by null

1 2 3 4 5 6

  /packages/apps/TvSettings/QuickSettings/src/com/android/tv/quicksettings/
SettingClickedListener.java 17 void onSettingClicked(Setting s);
Setting.java 18 public class Setting {
32 public Setting(String title) {
38 public Setting(SharedPreferences sharedPreferences, String key, String title, int max) {
46 public Setting(SharedPreferences sharedPreferences, String key, String title) {
DialogAdapter.java 29 private final ArrayList<Setting> mSettings;
34 public DialogAdapter(ArrayList<Setting> settings, int pivotX, int pivotY,
54 Setting s = vh.mSetting;
76 Setting s = mSettings.get(position);
93 private Setting mSetting;
100 public void setSetting(Setting setting) {
101 mSetting = setting;
SettingsDialog.java 55 private Setting mFocusedSetting;
56 private ArrayList<Setting> mSettings;
98 public void onSettingClicked(Setting s) {
99 if (s.getType() != Setting.TYPE_UNKNOWN) {
147 private ArrayList<Setting> getSettings() {
148 ArrayList<Setting> settings = new ArrayList<>();
150 settings.add(new Setting(mSharedPreferences, "preset",
158 new Setting(mSharedPreferences, settingKeys[i], settingNames[i],
161 settings.add(new Setting(getString(R.string.setting_reset_defaults_name)));
171 case Setting.TYPE_STRING
    [all...]
  /external/skia/src/sksl/ir/
SkSLSetting.cpp 14 std::unique_ptr<Expression> Setting::constantPropagate(const IRGenerator& irGenerator,
SkSLSetting.h 17 * Represents a compile-time constant setting, such as sk_Caps.fbFetchSupport. These are generally
20 struct Setting : public Expression {
21 Setting(int offset, String name, std::unique_ptr<Expression> value)
SkSLVariableReference.h 115 const Setting* s = (const Setting*) expr;
116 return std::unique_ptr<Expression>(new Setting(-1, s->fName,
  /external/skqp/src/sksl/ir/
SkSLSetting.cpp 14 std::unique_ptr<Expression> Setting::constantPropagate(const IRGenerator& irGenerator,
SkSLSetting.h 17 * Represents a compile-time constant setting, such as sk_Caps.fbFetchSupport. These are generally
20 struct Setting : public Expression {
21 Setting(int offset, String name, std::unique_ptr<Expression> value)
SkSLVariableReference.h 112 const Setting* s = (const Setting*) expr;
113 return std::unique_ptr<Expression>(new Setting(-1, s->fName,
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mmix/
loc8m.d 5 # Setting file start through the special symbol, in-source, mmo version.
loc10.d 4 # Setting file start through the special symbol.
loc10m.d 5 # Setting file start through the special symbol, mmo version.
loc8.d 4 # Setting file start through the special symbol, in-source.
loc9.d 4 # Setting file start through the LOC pseudo, see PR 6607.
loc9m.d 5 # Setting file start through the LOC pseudo, see PR 6607, mmo version.
  /packages/apps/DeskClock/src/com/android/deskclock/alarms/
AlarmStateManager.java 239 LogUtils.i("Setting upcoming AlarmClockInfo for alarm: " + nextAlarm.mId);
356 LogUtils.i("Setting silent state to instance " + instance.mId);
378 LogUtils.i("Setting low notification state to instance " + instance.mId);
400 LogUtils.i("Setting hide notification state to instance " + instance.mId);
422 LogUtils.i("Setting high notification state to instance " + instance.mId);
444 LogUtils.i("Setting fire state to instance " + instance.mId);
488 LogUtils.i("Setting snoozed state to instance " + instance.mId + " for "
527 LogUtils.i("Setting missed state to instance " + instance.mId);
558 LogUtils.i("Setting predismissed state to instance " + instance.mId);
582 LogUtils.i("Setting dismissed state to instance " + instance.mId)
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbBusDxe/
UsbDesc.c 20 Free the interface setting descriptor.
22 @param Setting The descriptor to free.
27 IN USB_INTERFACE_SETTING *Setting
33 if (Setting->Endpoints != NULL) {
35 // Each interface setting may have several endpoints, free them first.
37 for (Index = 0; Index < Setting->Desc.NumEndpoints; Index++) {
38 Ep = Setting->Endpoints[Index];
48 if (Setting->Desc.NumEndpoints > 0) {
49 FreePool (Setting->Endpoints);
53 FreePool (Setting);
    [all...]
  /frameworks/base/libs/hwui/utils/
GLUtils.cpp 25 #error Setting DEBUG_OPENGL to HIGH requires setting HWUI_ENABLE_OPENGL_VALIDATION to true in the Android.mk!
  /external/libogg/win32/VS6/
build_ogg_dynamic.bat 11 echo Setting include paths for Ogg
build_ogg_dynamic_debug.bat 11 echo Setting include paths for Ogg
build_ogg_static.bat 11 echo Setting include paths for Ogg
build_ogg_static_debug.bat 11 echo Setting include paths for Ogg
  /packages/apps/Settings/src/com/android/settings/location/
SettingsInjector.java 75 * If reading the status of a setting takes longer than this, we go ahead and start reading
76 * the next setting.
101 private final Set<Setting> mSettings;
107 mSettings = new HashSet<Setting>();
114 * {@link SettingInjectorService#ACTION_SERVICE_INTENT} and provides the expected setting
134 InjectedSetting setting = parseServiceInfo(resolveInfo, userHandle, pm); local
135 if (setting == null) {
138 settings.add(setting);
167 Log.w(TAG, "Ignoring attempt to inject setting from app not in system image: "
208 * Returns an immutable representation of the static attributes for the setting, or null
453 Setting setting = iter.next(); local
487 public final InjectedSetting setting; field in class:SettingsInjector.Setting
    [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsState.java 102 private static final String TAG_SETTING = "setting";
159 private final ArrayMap<String, Setting> mSettings = new ArrayMap<>();
173 private final Setting mNullSetting = new Setting(null, null, false, null, null) {
281 public Setting getNullSetting() {
307 Setting setting = mSettings.valueAt(i); local
308 if (packageName.equals(setting.packageName)) {
331 public Setting getSettingLocked(String name) {
335 Setting setting = mSettings.get(name) local
437 Setting setting = mSettings.get(name); local
664 Setting setting = settings.valueAt(i); local
    [all...]

Completed in 353 milliseconds

1 2 3 4 5 6