Searched refs:parameters (Results 1 - 25 of 40) sorted by relevance

12

/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
H A DSimpleImageFilter.java30 FilterBasicRepresentation parameters = (FilterBasicRepresentation) representation;
31 mParameters = parameters;
H A DImageFilterRedEye.java54 FilterRedEyeRepresentation parameters = (FilterRedEyeRepresentation) representation;
55 mParameters = parameters;
H A DImageFilterBorder.java42 FilterImageBorderRepresentation parameters = (FilterImageBorderRepresentation) representation;
43 mParameters = parameters;
H A DImageFilterFx.java46 FilterFxRepresentation parameters = (FilterFxRepresentation) representation;
47 mParameters = parameters;
H A DImageFilterSharpen.java46 FilterBasicRepresentation parameters = (FilterBasicRepresentation) representation;
47 mParameters = parameters;
H A DImageFilterColorBorder.java43 FilterColorBorderRepresentation parameters =
45 mParameters = parameters;
H A DImageFilterCurves.java35 FilterCurvesRepresentation parameters = (FilterCurvesRepresentation) representation;
36 mParameters = parameters;
H A DImageFilterTinyPlanet.java60 FilterTinyPlanetRepresentation parameters = (FilterTinyPlanetRepresentation) representation;
61 mParameters = parameters;
/packages/apps/OMA-DM/engine/dmlib/tool-src/dmt_validate/com/mot/treetest/
H A DTreeTest.java87 rootNode.parameters = getParms(rootFile.getAbsolutePath());
97 Object nodatagen = parentNode.parameters.get("nodatagen");
98 Object storesPD = parentNode.parameters.get("storesPD");
120 node.parameters = getParms(f.getAbsolutePath());
122 tmp = (String) node.parameters.get("type");
127 nodatagen = node.parameters.get("nodatagen");
128 storesPD = node.parameters.get("storesPD");
144 String nValues = (String) node.parameters.get("nValues");
184 HashMap parameters = new HashMap();
209 parameters
[all...]
H A DNode.java8 HashMap parameters = new HashMap(); field in class:Node
H A DUtil.java66 String parmValue = (String) n.parameters.get("access");
88 parmValue = (String) n.parameters.get("parentAccess");
104 String type = (String) n.parameters.get("type");
129 String values = (String) n.parameters.get("values");
138 String type = (String) n.parameters.get("type");
140 String min = (String) n.parameters.get("min");
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/
H A DContentTypeField.java72 private Map<String, String> parameters = null; field in class:ContentTypeField
75 protected ContentTypeField(String name, String body, String raw, String mimeType, Map<String, String> parameters, ParseException parseException) { argument
78 this.parameters = parameters;
134 return parameters != null
135 ? parameters.get(name.toLowerCase())
140 * Gets all parameters.
142 * @return the parameters.
145 if (parameters != null) {
146 return Collections.unmodifiableMap(parameters);
[all...]
/packages/apps/OMA-DM/engine/dmlib/tool-src/dmt_gen_tool/com/mot/dm/core/
H A DDMTValidator.java179 // Create our parameters HashMap and access ArrayList
181 HashMap parameters = new HashMap();
190 // Get parameters from the current branch
194 getParms(filename, parameters, access);
209 String nodeType = (String) parameters.get("Type");
231 String defValue = (String) parameters.get("Default");
249 checkValues(defValue,parameters,nodepath,nodeType,"Default");
256 if (!isMultiNode && (parameters.get("storesPD") != null))
266 if ((parameters.get("auto") != null) && (nodeType != null && !nodeType.equalsIgnoreCase("node")) &&
277 String fkStr = (String) parameters
696 checkValues(String value,HashMap parameters,String nodepath,String nodeType,String type) argument
1126 getParms(String fileName,HashMap parameters,ArrayList access) argument
[all...]
H A DGen.java1680 HashMap parameters = new HashMap();
1681 //YXU parameters.put("Format", "node");
1683 parameters.put("Type", "chr");
1686 parameters.put("Type", "node");
1689 parameters.put("Mime", "text/plain");
1695 parameters.put("AccessType", access); //YXU "text/plain");
1697 parameters.put("URI", nodepath);
1698 parameters.put("NodeName", nodeName);
1702 // Get parameters from the current branch
1708 getParms(filename, parameters, acces
2392 getParms(String fileName, HashMap parameters, ArrayList access, MDFNode mdf, boolean notMultiNode, boolean noMetaData) argument
[all...]
/packages/apps/Settings/src/com/android/settings/inputmethod/
H A DUserDictionaryAddWordActivity.java97 final Bundle parameters = new Bundle();
98 final int resultCode = mContents.apply(this, parameters);
99 reportBackToCaller(resultCode, parameters);
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
H A DBodyDescriptor.java39 private Map<String, String> parameters = new HashMap<String, String>(); field in class:BodyDescriptor
142 * Add all other parameters to parameters.
144 parameters.putAll(params);
145 parameters.remove("");
146 parameters.remove("boundary");
147 parameters.remove("charset");
154 // split main value and parameters
361 * Return all parameters for the BodyDescriptor
364 return parameters;
[all...]
/packages/experimental/CameraPreviewTest/src/com/example/android/videochatcameratest/
H A DVideoChatTestActivity.java336 Camera.Parameters parameters = camera.getParameters();
338 publishProgress("Changing preview parameters " + width + "x" + height + baseStatus);
340 parameters.setPreviewSize(width, height);
341 parameters.setPreviewFormat(ImageFormat.NV21);
343 parameters.setPreviewFrameRate(frameRate);
344 camera.setParameters(parameters);
346 publishProgress("Validating preview parameters " + baseStatus);
348 parameters = camera.getParameters();
349 Size setSize = parameters.getPreviewSize();
356 if (parameters
[all...]
/packages/apps/LegacyCamera/src/com/android/camera/
H A DUtil.java453 public static void dumpParameters(Parameters parameters) { argument
454 String flattened = parameters.flatten();
456 Log.d(TAG, "Dump all camera parameters:");
618 public static void setRotationParameter(Parameters parameters, int cameraId, int orientation) { argument
630 parameters.setRotation(rotation);
633 public static void setGpsParameters(Parameters parameters, Location loc) { argument
634 // Clear previous GPS location from the parameters.
635 parameters.removeGpsData();
638 parameters.setGpsTimestamp(System.currentTimeMillis() / 1000);
648 parameters
[all...]
H A DCameraSettings.java70 public CameraSettings(Activity activity, Parameters parameters, argument
73 mParameters = parameters;
96 Context context, Parameters parameters) {
100 List<Size> supported = parameters.getSupportedPictureSizes();
104 if (setCameraPictureSize(candidate, supported, parameters)) {
121 String candidate, List<Size> supported, Parameters parameters) {
128 parameters.setPictureSize(width, height);
422 ComboPreferences preferences, Parameters parameters) {
448 // Write back the current camera id because parameters are related to
451 initialCameraPictureSize(context, parameters);
95 initialCameraPictureSize( Context context, Parameters parameters) argument
120 setCameraPictureSize( String candidate, List<Size> supported, Parameters parameters) argument
421 restorePreferences(Context context, ComboPreferences preferences, Parameters parameters) argument
[all...]
/packages/apps/OMA-DM/engine/javaplugin/api/com/android/omadm/plugin/impl/
H A DDmtPluginManager.java149 * @param parameters initial parameters of the plug-in, as an array of strings.
152 public boolean initJavaPlugin(String path, String[] parameters) { argument
154 if (DBG) logd("parameters are: " + Arrays.toString(parameters));
166 if (DBG) logd("Parameters count is " + parameters.length);
167 if (parameters.length % 2 != 0) {
174 for (int i = 0; i < parameters.length; i += 2 ) {
175 params.put(parameters[i], parameters[
[all...]
/packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/
H A DSelectAccountDialogFragment.java44 final Bundle parameters = getArguments();
82 null, parameters.getInt(EXTRA_TAG));
/packages/apps/OMA-DM/engine/javaplugin/api/com/android/omadm/plugin/
H A DIDmtPlugin.aidl28 * @param parameters initial parameters of the plug-in. Type of the parameter is Map<String, String> type.
31 boolean init(String rootPath, in Map parameters);
/packages/apps/Camera/src/com/android/camera/
H A DFocusOverlayManager.java125 Parameters parameters, Listener listener,
131 setParameters(parameters);
141 public void setParameters(Parameters parameters) { argument
142 // parameters can only be null when onConfigurationChanged is called
144 // parameters will be set again later with the right parameters after
146 if (parameters == null) return;
147 mParameters = parameters;
148 mFocusAreaSupported = Util.isFocusAreaSupported(parameters);
149 mMeteringAreaSupported = Util.isMeteringAreaSupported(parameters);
124 FocusOverlayManager(ComboPreferences preferences, String[] defaultFocusModes, Parameters parameters, Listener listener, boolean mirror, Looper looper) argument
[all...]
H A DCameraSettings.java78 public CameraSettings(Activity activity, Parameters parameters, argument
81 mParameters = parameters;
107 Context context, Parameters parameters) {
111 List<Size> supported = parameters.getSupportedPictureSizes();
115 if (setCameraPictureSize(candidate, supported, parameters)) {
132 String candidate, List<Size> supported, Parameters parameters) {
139 parameters.setPictureSize(width, height);
496 ComboPreferences preferences, Parameters parameters) {
522 // Write back the current camera id because parameters are related to
525 initialCameraPictureSize(context, parameters);
106 initialCameraPictureSize( Context context, Parameters parameters) argument
131 setCameraPictureSize( String candidate, List<Size> supported, Parameters parameters) argument
495 restorePreferences(Context context, ComboPreferences preferences, Parameters parameters) argument
[all...]
/packages/apps/LegacyCamera/src/com/android/camera/panorama/
H A DPanoramaActivity.java351 Parameters parameters = mCameraDevice.getParameters();
352 setupCaptureParams(parameters);
353 configureCamera(parameters);
397 private void setupCaptureParams(Parameters parameters) { argument
398 List<Size> supportedSizes = parameters.getSupportedPreviewSizes();
407 parameters.setPreviewSize(mPreviewWidth, mPreviewHeight);
409 List<int[]> frameRates = parameters.getSupportedPreviewFpsRange();
413 parameters.setPreviewFpsRange(minFps, maxFps);
416 List<String> supportedFocusModes = parameters.getSupportedFocusModes();
418 parameters
438 configureCamera(Parameters parameters) argument
[all...]

Completed in 542 milliseconds

12