Home
last modified time | relevance | path

Searched refs:preferences (Results 1 – 25 of 260) sorted by relevance

1234567891011

/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.eclipse.equinox.preferences_3.3.0.v20100503.jar ... internal/ org/eclipse/core/internal/preferences/ org/eclipse/core/internal/preferences ...
Dorg.eclipse.core.runtime_3.6.0.v20100505.jar ... String name org.eclipse.core.runtime.preferences.IEclipsePreferences preferences Object oldValue public java.lang. ...
Dorg.eclipse.ui_3.6.1.M20100826-1330.jar ... Object implements org.eclipse.core.runtime.preferences.IEclipsePreferences$INodeChangeListener { final org.eclipse.
/external/icu/tools/srcgen/currysrc/libs/
Dorg.eclipse.equinox.preferences_3.5.300.v20150408-1437.jar ... cause } org/osgi/service/prefs/Preferences.class Preferences.java package org.osgi. ...
Dorg.eclipse.core.runtime_3.11.0.v20150405-1723.jar ... legacy/ org/eclipse/core/runtime/Preferences$IPropertyChangeListener.class Preferences.java package org. ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
DPerformancesView.java22 import org.eclipse.core.runtime.preferences.IEclipsePreferences;
23 import org.eclipse.core.runtime.preferences.InstanceScope;
24 import org.eclipse.core.runtime.preferences.IEclipsePreferences.IPreferenceChangeListener;
25 import org.eclipse.core.runtime.preferences.IEclipsePreferences.PreferenceChangeEvent;
154 IEclipsePreferences preferences; field in PerformancesView
187 this.preferences = new InstanceScope().getNode(IPerformancesConstants.PLUGIN_ID); in PerformancesView()
190 …int eclipseVersion = this.preferences.getInt(IPerformancesConstants.PRE_ECLIPSE_VERSION, IPerforma… in PerformancesView()
191 …String databaseLocation = this.preferences.get(IPerformancesConstants.PRE_DATABASE_LOCATION, IPerf… in PerformancesView()
192 …boolean connected = this.preferences.getBoolean(IPerformancesConstants.PRE_DATABASE_CONNECTION, IP… in PerformancesView()
194 this.preferences.addPreferenceChangeListener(this); in PerformancesView()
[all …]
DComponentResultsView.java15 import org.eclipse.core.runtime.preferences.IEclipsePreferences;
16 import org.eclipse.core.runtime.preferences.InstanceScope;
17 import org.eclipse.core.runtime.preferences.IEclipsePreferences.IPreferenceChangeListener;
18 import org.eclipse.core.runtime.preferences.IEclipsePreferences.PreferenceChangeEvent;
105 IEclipsePreferences preferences; field in ComponentResultsView
114 this.preferences = new InstanceScope().getNode(IPerformancesConstants.PLUGIN_ID); in ComponentResultsView()
115 this.preferences.addPreferenceChangeListener(this); in ComponentResultsView()
116 Util.initMilestones(this.preferences); in ComponentResultsView()
260 …ComponentResultsView.this.preferences.putBoolean(IPerformancesConstants.PRE_FILTER_ADVANCED_SCENAR… in makeActions()
270 …ComponentResultsView.this.preferences.putBoolean(IPerformancesConstants.PRE_FILTER_OLD_BUILDS, isC… in makeActions()
[all …]
DPerformanceResultsPreferenceInitializer.java13 import org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer;
14 import org.eclipse.core.runtime.preferences.DefaultScope;
15 import org.eclipse.core.runtime.preferences.IEclipsePreferences;
16 import org.eclipse.core.runtime.preferences.IScopeContext;
DBuildsView.java22 import org.eclipse.core.runtime.preferences.InstanceScope;
71 …String resultGenerationDir = BuildsView.this.preferences.get(IPerformancesConstants.PRE_RESULTS_GE… in run()
78 …BuildsView.this.preferences.put(IPerformancesConstants.PRE_RESULTS_GENERATION_DIR, dir.getAbsolute… in run()
296 this.preferences = new InstanceScope().getNode(IPerformancesConstants.PLUGIN_ID); in BuildsView()
297 this.preferences.addPreferenceChangeListener(this); in BuildsView()
462 …boolean connected = this.preferences.getBoolean(IPerformancesConstants.PRE_DATABASE_CONNECTION, IP… in makeActions()
489 …int eclipseVersion = this.preferences.getInt(IPerformancesConstants.PRE_ECLIPSE_VERSION, IPerforma… in resetView()
490 …boolean connected = this.preferences.getBoolean(IPerformancesConstants.PRE_DATABASE_CONNECTION, IP… in resetView()
491 …String databaseLocation = this.preferences.get(IPerformancesConstants.PRE_DATABASE_LOCATION, IPerf… in resetView()
492 String lastBuild = this.preferences.get(IPerformancesConstants.PRE_LAST_BUILD, null); in resetView()
DComponentsView.java23 import org.eclipse.core.runtime.preferences.InstanceScope;
24 import org.eclipse.core.runtime.preferences.IEclipsePreferences.PreferenceChangeEvent;
124 this.preferences = new InstanceScope().getNode(IPerformancesConstants.PLUGIN_ID); in ComponentsView()
127 …WRITE_STATUS = this.preferences.getInt(IPerformancesConstants.PRE_WRITE_STATUS, IPerformancesConst… in ComponentsView()
169 …boolean fingerprints = ComponentsView.this.preferences.getBoolean(IPerformancesConstants.PRE_FILTE… in createPartControl()
263 this.preferences.putBoolean(IPerformancesConstants.PRE_FILTER_ADVANCED_SCENARIOS, fingerprints); in filterAdvancedScenarios()
393 …boolean checked = this.preferences.getBoolean(IPerformancesConstants.PRE_FILTER_ADVANCED_SCENARIOS… in restoreState()
DConfigTab.java18 import org.eclipse.core.runtime.preferences.IEclipsePreferences;
19 import org.eclipse.core.runtime.preferences.InstanceScope;
88 private IEclipsePreferences preferences; field in ConfigTab
97 this.preferences = new InstanceScope().getNode(IPerformancesConstants.PLUGIN_ID); in ConfigTab()
136 …boolean fingerprints = this.preferences.getBoolean(IPerformancesConstants.PRE_FILTER_ADVANCED_SCEN… in createTabFolderPage()
314 …boolean onlyMilestones = this.preferences.getBoolean(IPerformancesConstants.PRE_FILTER_OLD_BUILDS,… in fillTableLines()
315 …boolean skipNightlyBuilds = this.preferences.getBoolean(IPerformancesConstants.PRE_FILTER_NIGHTLY_… in fillTableLines()
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DPreferenceActivityTest.java52 activity.addPreferencesFromResource(R.xml.preferences); in shouldRecordPreferencesResourceId()
53 assertThat(shadow.getPreferencesResId(), equalTo(R.xml.preferences)); in shouldRecordPreferencesResourceId()
58 activity.addPreferencesFromResource(R.xml.preferences); in shouldLoadPreferenceScreen()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/
DScenarioResultsElement.java15 import org.eclipse.core.runtime.preferences.IEclipsePreferences;
16 import org.eclipse.core.runtime.preferences.InstanceScope;
140 IEclipsePreferences preferences = new InstanceScope().getNode(IPerformancesConstants.PLUGIN_ID); in writableStatus() local
141 String comment = preferences.get(getId(), null); in writableStatus()
DComponentResultsElement.java19 import org.eclipse.core.runtime.preferences.IEclipsePreferences;
20 import org.eclipse.core.runtime.preferences.InstanceScope;
214 IEclipsePreferences preferences = new InstanceScope().getNode(IPerformancesConstants.PLUGIN_ID); in writableStatus() local
215 String comment = preferences.get(getId(), null); in writableStatus()
DResultsElement.java18 import org.eclipse.core.runtime.preferences.IEclipsePreferences;
19 import org.eclipse.core.runtime.preferences.InstanceScope;
342 IEclipsePreferences preferences = new InstanceScope().getNode(IPerformancesConstants.PLUGIN_ID); in getPropertyValue() local
343 return preferences.get(getId(), ""); in getPropertyValue()
563 IEclipsePreferences preferences = new InstanceScope().getNode(IPerformancesConstants.PLUGIN_ID); in setPropertyValue() local
564 preferences.put(getId(), (String) value); in setPropertyValue()
566 preferences.flush(); in setPropertyValue()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
DUiPlugin.java14 import org.eclipse.core.runtime.preferences.InstanceScope;
16 import org.eclipse.ui.preferences.ScopedPreferenceStore;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/utils/
DUtil.java32 import org.eclipse.core.runtime.preferences.IEclipsePreferences;
540 public static void initMilestones(IEclipsePreferences preferences) { in initMilestones() argument
541 …int eclipseVersion = preferences.getInt(IPerformancesConstants.PRE_ECLIPSE_VERSION, IPerformancesC… in initMilestones()
544 String milestone = preferences.get(prefix + index, null); in initMilestones()
549 milestone = preferences.get(prefix + index, null); in initMilestones()
/external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/
DInterpreterUninstaller.java134 SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(mContext); in isInstalled() local
135 return preferences.getBoolean(InterpreterConstants.INSTALLED_PREFERENCE_KEY, false); in isInstalled()
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/res/
DPreferenceLoaderTest.java51 … PreferenceScreen screen = prefLoader.inflatePreferences(new Activity(), R.xml.preferences); in shouldLoadByResourceId()
65 prefLoader.inflatePreferences(Robolectric.application, R.xml.preferences); in shouldThrowI18nExceptionOnPrefsWithBareStrings()
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/.settings/
Dorg.eclipse.core.resources.prefs1 eclipse.preferences.version=1
/external/jacoco/org.jacoco.doc/.settings/
Dorg.eclipse.core.resources.prefs1 eclipse.preferences.version=1
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu/.settings/
Dorg.eclipse.core.resources.prefs1 eclipse.preferences.version=1
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.tests/.settings/
Dorg.eclipse.core.resources.prefs1 eclipse.preferences.version=1
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/.settings/
Dorg.eclipse.core.resources.prefs1 eclipse.preferences.version=1
/external/nanohttpd/nanolets/.settings/
Dorg.eclipse.m2e.core.prefs2 eclipse.preferences.version=1

1234567891011