Home
last modified time | relevance | path

Searched refs:store (Results 1 – 25 of 42) sorted by relevance

12

/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/preferences/
DPreferenceInitializer.java92 IPreferenceStore store = DdmsPlugin.getDefault().getPreferenceStore(); in initializeDefaultPreferences() local
94 store.setDefault(ATTR_DEBUG_PORT_BASE, DdmPreferences.DEFAULT_DEBUG_PORT_BASE); in initializeDefaultPreferences()
96 store.setDefault(ATTR_SELECTED_DEBUG_PORT, DdmPreferences.DEFAULT_SELECTED_DEBUG_PORT); in initializeDefaultPreferences()
98 store.setDefault(ATTR_DEFAULT_THREAD_UPDATE, DdmPreferences.DEFAULT_INITIAL_THREAD_UPDATE); in initializeDefaultPreferences()
99 store.setDefault(ATTR_DEFAULT_HEAP_UPDATE, in initializeDefaultPreferences()
102 store.setDefault(ATTR_THREAD_INTERVAL, DdmUiPreferences.DEFAULT_THREAD_REFRESH_INTERVAL); in initializeDefaultPreferences()
105 store.setDefault(ATTR_IMAGE_SAVE_DIR, homeDir); in initializeDefaultPreferences()
107 store.setDefault(ATTR_LOG_LEVEL, DdmPreferences.DEFAULT_LOG_LEVEL.getStringValue()); in initializeDefaultPreferences()
109 store.setDefault(ATTR_LOGCAT_FONT, in initializeDefaultPreferences()
112 store.setDefault(ATTR_HPROF_ACTION, HProfHandler.ACTION_SAVE); in initializeDefaultPreferences()
[all …]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
DAdtPrefs.java353 IPreferenceStore store = AdtPlugin.getDefault().getPreferenceStore(); in setPaletteModes() local
354 store.setValue(PREFS_PALETTE_MODE, palette); in setPaletteModes()
365 IPreferenceStore store = AdtPlugin.getDefault().getPreferenceStore(); in setMonitorDensity() local
366 store.setValue(PREFS_MONITOR_DENSITY, density); in setMonitorDensity()
386 IPreferenceStore store = AdtPlugin.getDefault().getPreferenceStore(); in setSdkLocation() local
387 store.setValue(PREFS_SDK_DIR, mOsSdkLocation); in setSdkLocation()
392 IPreferenceStore store = AdtPlugin.getDefault().getPreferenceStore(); in initializeDefaultPreferences() local
393 initializeStoreWithDefaults(store); in initializeDefaultPreferences()
396 public void initializeStoreWithDefaults(IPreferenceStore store) { in initializeStoreWithDefaults() argument
397 store.setDefault(PREFS_BUILD_RES_AUTO_REFRESH, true); in initializeStoreWithDefaults()
[all …]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/
DWelcomeWizard.java52 public WelcomeWizard(DdmsPreferenceStore store) { in WelcomeWizard() argument
53 mStore = store; in WelcomeWizard()
78 DdmsPreferenceStore store = new DdmsPreferenceStore(); in performFinish() local
92 if (!store.hasPingId()) { in performFinish()
93 store.generateNewPingId(); in performFinish()
96 store.setPingOptIn(isUsageCollectionApproved); in performFinish()
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
DStackTracePanel.java169 String prefs_stack_col_native, IPreferenceStore store) { in createPanel() argument
180 prefs_stack_col_class, store); in createPanel()
187 prefs_stack_col_method, store); in createPanel()
194 prefs_stack_col_file, store); in createPanel()
201 prefs_stack_col_line, store); in createPanel()
208 prefs_stack_col_native, store); in createPanel()
DThreadPanel.java191 final IPreferenceStore store = DdmUiPreferences.getStore(); in createControl() local
219 PREFS_THREAD_COL_ID, store); in createControl()
226 PREFS_THREAD_COL_TID, store); in createControl()
233 PREFS_THREAD_COL_STATUS, store); in createControl()
240 PREFS_THREAD_COL_UTIME, store); in createControl()
247 PREFS_THREAD_COL_STIME, store); in createControl()
254 PREFS_THREAD_COL_NAME, store); in createControl()
313 store); in createControl()
329 if (store != null && store.contains(PREFS_THREAD_SASH)) { in createControl()
330 sashData.top = new FormAttachment(0, store.getInt(PREFS_THREAD_SASH)); in createControl()
[all …]
DDdmUiPreferences.java38 public static void setStore(IPreferenceStore store) { in setStore() argument
39 mStore = store; in setStore()
DAllocationPanel.java186 final IPreferenceStore store = DdmUiPreferences.getStore(); in createControl() local
266 PREFS_ALLOC_COL_NUMBER, store); in createControl()
279 PREFS_ALLOC_COL_SIZE, store); in createControl()
292 PREFS_ALLOC_COL_CLASS, store); in createControl()
305 PREFS_ALLOC_COL_THREAD, store); in createControl()
318 PREFS_ALLOC_COL_TRACE_CLASS, store); in createControl()
331 PREFS_ALLOC_COL_TRACE_METHOD, store); in createControl()
384 store); in createControl()
396 if (store != null && store.contains(PREFS_ALLOC_SASH)) { in createControl()
397 sashData.top = new FormAttachment(0, store.getInt(PREFS_ALLOC_SASH)); in createControl()
[all …]
DEmulatorControlPanel.java668 IPreferenceStore store = DdmUiPreferences.getStore(); in createGpxLocationControl() local
685 PREFS_WAYPOINT_COL_NAME, store); in createGpxLocationControl()
688 PREFS_WAYPOINT_COL_LONGITUDE, store); in createGpxLocationControl()
691 PREFS_WAYPOINT_COL_LATITUDE, store); in createGpxLocationControl()
694 PREFS_WAYPOINT_COL_ELEVATION, store); in createGpxLocationControl()
697 PREFS_WAYPOINT_COL_DESCRIPTION, store); in createGpxLocationControl()
732 PREFS_TRACK_COL_NAME, store); in createGpxLocationControl()
735 PREFS_TRACK_COL_COUNT, store); in createGpxLocationControl()
738 PREFS_TRACK_COL_FIRST, store); in createGpxLocationControl()
741 PREFS_TRACK_COL_LAST, store); in createGpxLocationControl()
[all …]
/sdk/ddms/app/src/com/android/ddms/
DDebugPortProvider.java92 IPreferenceStore store = PrefsDialog.getStore(); in computePortList() local
93 String value = store.getString(PREFS_STATIC_PORT_LIST); in computePortList()
158 IPreferenceStore store = PrefsDialog.getStore(); in setPortList() local
161 store.setValue(PREFS_STATIC_PORT_LIST, value); in setPortList()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt.ndk/src/com/android/ide/eclipse/adt/ndk/internal/preferences/
DNdkPreferenceInitializer.java29 IPreferenceStore store = Activator.getDefault().getPreferenceStore(); in initializeDefaultPreferences() local
31 store.setDefault(NdkManager.NDK_LOCATION, ""); //$NON-NLS-1$ in initializeDefaultPreferences()
/sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/internal/preferences/
DPrefPage.java36 IPreferenceStore store = PdtPlugin.getDefault().getPreferenceStore(); in PrefPage() local
37 setPreferenceStore(store); in PrefPage()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
DExtractIncludeRefactoringTest.java120 IPreferenceStore store = AdtPlugin.getDefault().getPreferenceStore(); in testExtract7() local
121 AdtPrefs.init(store); in testExtract7()
123 prefs.initializeStoreWithDefaults(store); in testExtract7()
124 store.setValue(AdtPrefs.PREFS_FORMAT_GUI_XML, true); in testExtract7()
DRefactoringTest.java68 IPreferenceStore store = AdtPlugin.getDefault().getPreferenceStore(); in setUp() local
69 AdtPrefs.init(store); in setUp()
71 prefs.initializeStoreWithDefaults(store); in setUp()
73 store.setValue(AdtPrefs.PREFS_FORMAT_GUI_XML, autoFormat()); in setUp()
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
DDisplayLog.java263 IPreferenceStore store = DdmUiPreferences.getStore(); in createLogUI() local
267 SWT.LEFT, "0000-00-00 00:00:00", PREFS_COL_DATE, store); //$NON-NLS-1$ in createLogUI()
280 SWT.LEFT, "0000", PREFS_COL_PID, store); //$NON-NLS-1$ in createLogUI()
293 SWT.LEFT, "abcdejghijklmno", PREFS_COL_EVENTTAG, store); //$NON-NLS-1$ in createLogUI()
306 SWT.LEFT, "Process Name", PREFS_COL_VALUENAME, store); //$NON-NLS-1$ in createLogUI()
319 SWT.LEFT, "0000000", PREFS_COL_VALUE, store); //$NON-NLS-1$ in createLogUI()
332 SWT.LEFT, "long, seconds", PREFS_COL_TYPE, store); //$NON-NLS-1$ in createLogUI()
DEventLogPanel.java353 final IPreferenceStore store = DdmUiPreferences.getStore(); in createControl() local
356 store.setDefault(PREFS_DISPLAY_WIDTH, DEFAULT_DISPLAY_WIDTH); in createControl()
357 store.setDefault(PREFS_DISPLAY_HEIGHT, DEFAULT_DISPLAY_HEIGHT); in createControl()
618 IPreferenceStore store = DdmUiPreferences.getStore(); in createDisplayUi() local
619 int displayWidth = store.getInt(PREFS_DISPLAY_WIDTH); in createDisplayUi()
620 int displayHeight = store.getInt(PREFS_DISPLAY_HEIGHT); in createDisplayUi()
813 IPreferenceStore store = DdmUiPreferences.getStore(); in loadEventDisplays() local
814 String storage = store.getString(PREFS_EVENT_DISPLAY); in loadEventDisplays()
832 IPreferenceStore store = DdmUiPreferences.getStore(); in saveEventDisplays() local
850 store.setValue(PREFS_EVENT_DISPLAY, sb.toString()); in saveEventDisplays()
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
DLogCatView.java178 IPreferenceStore store = DdmsPlugin.getDefault().getPreferenceStore(); in switchPerspective() local
179 if (store.getBoolean(PreferenceInitializer.ATTR_SWITCH_PERSPECTIVE)) { in switchPerspective()
183 String perspectiveId = store.getString(PreferenceInitializer.ATTR_PERSPECTIVE_ID); in switchPerspective()
221 IPreferenceStore store = DdmsPlugin.getDefault().getPreferenceStore(); in onDoubleClick() local
222 String jumpToLocation = store.getString(PreferenceInitializer.ATTR_LOGCAT_GOTO_PROBLEM); in onDoubleClick()
DOldLogCatView.java442 IPreferenceStore store = DdmsPlugin.getDefault().getPreferenceStore(); in switchPerspective() local
443 if (store.getBoolean(PreferenceInitializer.ATTR_SWITCH_PERSPECTIVE)) { in switchPerspective()
447 String perspectiveId = store.getString(PreferenceInitializer.ATTR_PERSPECTIVE_ID); in switchPerspective()
461 IPreferenceStore store = DdmsPlugin.getDefault().getPreferenceStore(); in goToErrorLine() local
462 String value = store.getString(PreferenceInitializer.ATTR_LOGCAT_GOTO_PROBLEM); in goToErrorLine()
/sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/
DPdtPlugin.java68 IPreferenceStore store = sPlugin.getPreferenceStore(); in getDevTree() local
71 String devTree = store.getString(PrefPage.PREFS_DEVTREE_DIR); in getDevTree()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/formatting/
DXmlPrettyPrinterTest.java33 PreferenceStore store = new PreferenceStore(); in setUp() local
34 AdtPrefs.init(store); in setUp()
36 prefs.initializeStoreWithDefaults(store); in setUp()
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/explorer/
DDeviceExplorer.java179 IPreferenceStore store = DdmUiPreferences.getStore(); in createControl() local
183 "0000drwxrwxrwx", COLUMN_NAME, store); //$NON-NLS-1$ in createControl()
185 "000000", COLUMN_SIZE, store); //$NON-NLS-1$ in createControl()
187 "2007-08-14", COLUMN_DATE, store); //$NON-NLS-1$ in createControl()
189 "20:54", COLUMN_TIME, store); //$NON-NLS-1$ in createControl()
191 "drwxrwxrwx", COLUMN_PERMISSIONS, store); //$NON-NLS-1$ in createControl()
193 "drwxrwxrwx", COLUMN_INFO, store); //$NON-NLS-1$ in createControl()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
DResourceExplorerView.java98 final IPreferenceStore store = AdtPlugin.getDefault().getPreferenceStore(); in createPartControl() local
102 "abcdefghijklmnopqrstuvwxz", -1, PREFS_COLUMN_RES, store); //$NON-NLS-1$ in createPartControl()
104 "0123456789", -1, PREFS_COLUMN_2, store); //$NON-NLS-1$ in createPartControl()
/sdk/testapps/basicProjectWithLib/
Dbuild.properties14 # 'key.store' for the location of your keystore and
/sdk/testapps/basicLib/
Dbuild.properties14 # 'key.store' for the location of your keystore and
/sdk/testapps/basicProject/
Dbuild.properties14 # 'key.store' for the location of your keystore and
/sdk/testapps/basicProjectWithJar/
Dbuild.properties14 # 'key.store' for the location of your keystore and

12