/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/ |
D | PerformancesView.java | 22 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 …]
|
D | ComponentResultsView.java | 15 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 …]
|
D | PerformanceResultsPreferenceInitializer.java | 13 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;
|
D | BuildsView.java | 22 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()
|
D | ComponentsView.java | 23 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()
|
D | ConfigTab.java | 18 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/ImageMagick/MagickCore/ |
D | log.c | 478 **preferences; in GetLogInfoList() local 496 preferences=(const LogInfo **) AcquireQuantumMemory((size_t) in GetLogInfoList() 497 GetNumberOfElementsInLinkedList(log_cache)+1UL,sizeof(*preferences)); in GetLogInfoList() 498 if (preferences == (const LogInfo **) NULL) in GetLogInfoList() 510 preferences[i++]=p; in GetLogInfoList() 514 qsort((void *) preferences,(size_t) i,sizeof(*preferences),LogInfoCompare); in GetLogInfoList() 515 preferences[i]=(LogInfo *) NULL; in GetLogInfoList() 517 return(preferences); in GetLogInfoList() 571 **preferences; in GetLogList() local 589 preferences=(char **) AcquireQuantumMemory((size_t) in GetLogList() [all …]
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
D | PreferenceActivityTest.java | 52 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/ |
D | ScenarioResultsElement.java | 15 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()
|
D | ComponentResultsElement.java | 19 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()
|
D | ResultsElement.java | 18 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/ |
D | UiPlugin.java | 14 import org.eclipse.core.runtime.preferences.InstanceScope; 16 import org.eclipse.ui.preferences.ScopedPreferenceStore;
|
/external/libgdx/backends/gdx-backend-headless/src/com/badlogic/gdx/backends/headless/ |
D | HeadlessApplication.java | 206 ObjectMap<String, Preferences> preferences = new ObjectMap<String, Preferences>(); field in HeadlessApplication 210 if (preferences.containsKey(name)) { in getPreferences() 211 return preferences.get(name); in getPreferences() 214 preferences.put(name, prefs); in getPreferences()
|
/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/ |
D | Util.java | 32 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/libgdx/backends/gdx-backend-jglfw/src/com/badlogic/gdx/backends/jglfw/ |
D | JglfwApplication.java | 51 private final Map<String, Preferences> preferences = new HashMap(); field in JglfwApplication 321 if (preferences.containsKey(name)) in getPreferences() 322 return preferences.get(name); in getPreferences() 325 preferences.put(name, prefs); in getPreferences()
|
/external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/ |
D | InterpreterUninstaller.java | 134 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/ |
D | PreferenceLoaderTest.java | 51 … PreferenceScreen screen = prefLoader.inflatePreferences(new Activity(), R.xml.preferences); in shouldLoadByResourceId() 65 prefLoader.inflatePreferences(Robolectric.application, R.xml.preferences); in shouldThrowI18nExceptionOnPrefsWithBareStrings()
|
/external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/ |
D | LwjglCanvas.java | 326 Map<String, Preferences> preferences = new HashMap<String, Preferences>(); field in LwjglCanvas 330 if (preferences.containsKey(name)) { in getPreferences() 331 return preferences.get(name); in getPreferences() 334 preferences.put(name, prefs); in getPreferences()
|
D | LwjglApplication.java | 320 ObjectMap<String, Preferences> preferences = new ObjectMap<String, Preferences>(); field in LwjglApplication 324 if (preferences.containsKey(name)) { in getPreferences() 325 return preferences.get(name); in getPreferences() 328 preferences.put(name, prefs); in getPreferences()
|
/external/libgdx/extensions/gdx-controllers/gdx-controllers-gwt/.settings/ |
D | com.google.gwt.eclipse.core.prefs | 1 eclipse.preferences.version=1
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d/.settings/ |
D | org.eclipse.jdt.ui.prefs | 1 eclipse.preferences.version=1
|
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/.settings/ |
D | org.eclipse.core.resources.prefs | 1 eclipse.preferences.version=1
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/.settings/ |
D | org.eclipse.jdt.ui.prefs | 1 eclipse.preferences.version=1
|
/external/libgdx/tests/gdx-tests-lwjgl/.settings/ |
D | org.eclipse.jdt.ui.prefs | 1 eclipse.preferences.version=1
|
/external/jacoco/org.jacoco.doc/.settings/ |
D | org.eclipse.core.resources.prefs | 1 eclipse.preferences.version=1
|