Searched refs:settings (Results 1 - 15 of 15) sorted by relevance

/frameworks/base/tools/localize/
H A Dlocalize.h30 int validate_config(const string& settingsFile, const map<string,Settings>& settings,
32 int validate_configs(const string& settingsFile, const map<string,Settings>& settings,
35 const map<string,Settings>& settings, const string& rootDir);
37 const map<string,Settings>& settings, const string& rootDir);
H A Dlocalize.cpp41 Settings settings; local
42 settings.id = configNode->GetAttribute("", "id", "");
43 if (settings.id == "") {
49 settings.oldVersion = configNode->GetAttribute("", "old-cl", "");
51 settings.currentVersion = configNode->GetAttribute("", "new-cl", "");
52 if (settings.currentVersion == "") {
72 settings.apps.push_back(dir);
104 settings.reject.push_back(reject);
107 (*result)[settings.id] = settings;
127 contains_reject(const Settings& settings, const string& file, const TransUnit& tu) argument
177 const Settings* settings = reinterpret_cast<const Settings*>(cookie); local
194 validate_config(const string& settingsFile, const map<string,Settings>& settings, const string& config) argument
206 validate_configs(const string& settingsFile, const map<string,Settings>& settings, const vector<string>& configs) argument
218 select_files(vector<string> *resFiles, const string& config, const map<string,Settings>& settings, const string& rootDir) argument
233 select_files(vector<vector<string> > *allResFiles, const vector<string>& configs, const map<string,Settings>& settings, const string& rootDir) argument
273 map<string,Settings> settings; local
445 pseudolocalize_string(const string& source, const PseudolocalizeSettings* settings) argument
451 pseudolocalize_xml_node(const XMLNode* source, const PseudolocalizeSettings* settings) argument
480 const PseudolocalizeSettings* settings = (PseudolocalizeSettings*)cookie; local
495 PseudolocalizeSettings settings; local
[all...]
H A Dlocalize_test.cpp122 map<string,Settings> settings; local
125 err = read_settings("testdata/config.xml", &settings, "//asdf");
131 for (it=settings.begin(); it!=settings.end(); it++) {
153 for (it=settings.begin(); it!=settings.end(); it++) {
/frameworks/base/include/utils/
H A DResourceTypes.h1340 // 'settings'.
1344 // settings is the requested settings
1345 inline bool match(const ResTable_config& settings) const {
1347 if ((settings.mcc != 0 && mcc != 0
1348 && mcc != settings.mcc) ||
1349 (settings.mcc == 0 && mcc != 0)) {
1352 if ((settings.mnc != 0 && mnc != 0
1353 && mnc != settings.mnc) ||
1354 (settings
[all...]
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsBackupAgent.java17 package com.android.providers.settings;
49 * Performs backup and restore of the System and Secure settings.
50 * List of settings that are backed up are stored in the Settings.java file
239 byte[] settings = new byte[data.getDataSize()];
241 data.readEntityData(settings, 0, settings.length);
247 while (pos < settings.length) {
248 int length = readInt(settings, pos);
250 String settingName = length > 0? new String(settings, pos, length) : null;
252 length = readInt(settings, po
[all...]
H A DSettingsHelper.java17 package com.android.providers.settings;
186 * Informs the audio service of changes to the settings so that
H A DSettingsProvider.java17 package com.android.providers.settings;
57 // Cache for settings, access-ordered for acting as LRU.
63 // Over this size we don't reject loading or saving settings but
199 String.format("Permission denial: writing to secure settings requires %1$s",
279 Log.w(TAG, "settings lookup error", e);
601 * In-memory LRU Cache of system and secure settings, along with
654 Log.w(TAG, "null name populating settings cache.");
682 * For suppressing duplicate/redundant settings inserts early,
H A DDatabaseHelper.java17 package com.android.providers.settings;
61 private static final String DATABASE_NAME = "settings.db";
66 // settings.
140 // Load inital settings values
146 Log.w(TAG, "Upgrading settings database from version " + oldVersion + " to "
228 // This introduces the new secure settings table.
553 * New settings for MountService
613 * New settings for new user interface noises.
638 /* Move the lockscreen related settings to Secure, including some private ones. */
655 // new vibration/silent mode settings
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
H A DCommandParams.java80 ToneSettings settings; field in class:PlayToneParams
86 this.settings = new ToneSettings(duration, tone, vibrate);
H A DStkCmdMessage.java38 * Container for Launch Browser command settings.
46 * Container for Call Setup command settings.
80 mToneSettings = params.settings;
/frameworks/base/core/java/android/webkit/
H A DFrameLoader.java53 FrameLoader(LoadListener listener, WebSettings settings, argument
59 mSettings = settings;
136 WebSettings settings) {
176 settings.getAllowFileAccess()).load();
182 settings.getAllowFileAccess())).sendToTarget();
135 handleLocalFile(String url, LoadListener loadListener, WebSettings settings) argument
H A DWebView.java185 * settings, and progress notification:</p>
950 WebSettings settings = getSettings();
953 && settings.supportZoom() && settings.getBuiltInZoomControls();
3131 * Return the WebSettings object used to control the settings for this
3134 * settings.
5177 WebSettings settings = getSettings();
5178 if (settings.supportZoom()
5179 && settings.getBuiltInZoomControls()
5185 int count = settings
[all...]
H A DBrowserFrame.java180 * @param settings A WebSettings object that holds all settings.
184 WebSettings settings, Map<String, Object> javascriptInterfaces) {
218 mSettings = settings;
183 BrowserFrame(Context context, WebViewCore w, CallbackProxy proxy, WebSettings settings, Map<String, Object> javascriptInterfaces) argument
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DTestShellActivity.java789 WebSettings settings = webview.getSettings();
790 settings.setAppCacheEnabled(true);
791 settings.setAppCachePath(getApplicationContext().getCacheDir().getPath());
792 settings.setAppCacheMaxSize(Long.MAX_VALUE);
793 settings.setJavaScriptEnabled(true);
794 settings.setJavaScriptCanOpenWindowsAutomatically(true);
795 settings.setSupportMultipleWindows(true);
796 settings.setLayoutAlgorithm(WebSettings.LayoutAlgorithm.NORMAL);
797 settings.setDatabaseEnabled(true);
798 settings
[all...]
/frameworks/base/core/java/android/content/
H A DSyncManager.java374 // force the sync loop to run if the settings change
1073 SyncStorageEngine.AuthorityInfo settings = mSyncStorageEngine.getOrCreateAuthority(
1075 SyncStatusInfo status = mSyncStorageEngine.getOrCreateSyncStatus(settings);
1076 pw.print(" "); pw.print(settings.authority);
1078 pw.print(" settings:");
1079 pw.print(" " + (settings.syncable > 0
1081 : (settings.syncable == 0 ? "not syncable" : "not initialized")));
1082 pw.print(", " + (settings.enabled ? "enabled" : "disabled"));
1083 if (settings.delayUntil > now) {
1085 + ((settings
[all...]

Completed in 233 milliseconds