/frameworks/base/awt/java/awt/image/renderable/ |
D | ParameterBlock.java | 50 protected Vector<Object> parameters = new Vector<Object>(); field in ParameterBlock 60 public ParameterBlock(Vector<Object> sources, Vector<Object> parameters) { in ParameterBlock() argument 62 setParameters(parameters); in ParameterBlock() 109 if (parameters.size() < index + 1) { in set() 110 parameters.setSize(index + 1); in set() 112 parameters.setElementAt(obj, index); in set() 136 parameters.addElement(obj); in add() 158 public void setParameters(Vector<Object> parameters) { in setParameters() argument 159 this.parameters = parameters; in setParameters() 177 return parameters; in getParameters() [all …]
|
/frameworks/base/core/java/android/net/http/ |
D | HttpAuthHeader.java | 266 String parameters = parseScheme(header); in parseHeader() local 267 if (parameters != null) { in parseHeader() 270 parseParameters(parameters); in parseHeader() 310 private void parseParameters(String parameters) { in parseParameters() argument 313 " parameters: " + parameters); in parseParameters() 316 if (parameters != null) { in parseParameters() 319 i = parameters.indexOf(','); in parseParameters() 322 parseParameter(parameters); in parseParameters() 324 parseParameter(parameters.substring(0, i)); in parseParameters() 325 parameters = parameters.substring(i + 1); in parseParameters()
|
/frameworks/base/services/java/com/android/server/ |
D | ViewServer.java | 170 String parameters; in run() local 175 parameters = ""; in run() 178 parameters = request.substring(index + 1); in run() 190 command, parameters); in run()
|
/frameworks/base/keystore/java/android/security/ |
D | KeyStore.java | 151 private byte[][] execute(int code, byte[]... parameters) { in execute() argument 154 for (byte[] parameter : parameters) { in execute() 166 for (byte[] parameter : parameters) { in execute()
|
/frameworks/base/tools/aidl/ |
D | generate_java.cpp | 110 onTransact->parameters.push_back(this->transact_code); in StubClass() 111 onTransact->parameters.push_back(this->transact_data); in StubClass() 112 onTransact->parameters.push_back(this->transact_reply); in StubClass() 113 onTransact->parameters.push_back(this->transact_flags); in StubClass() 143 m->parameters.push_back(obj); in make_as_interface() 215 ctor->parameters.push_back(remote); in ProxyClass() 344 decl->parameters.push_back(new Variable( in generate_method() 457 proxy->parameters.push_back(new Variable( in generate_method()
|
D | AST.cpp | 661 N = this->parameters.size(); in GatherTypes() 663 this->parameters[i]->GatherTypes(types); in GatherTypes() 694 N = this->parameters.size(); in Write() 696 this->parameters[i]->WriteDeclaration(to); in Write()
|
D | AST.h | 302 vector<Variable*> parameters; member
|
/frameworks/base/awt/resources/org/apache/harmony/beans/internals/nls/ |
D | messages.properties | 24 beans.06=Number of parameters in setter method is not equal to 1. 26 beans.08=Number of parameters in getter method is not equal to 0. 52 beans.22=Number of parameters in getter method is not equal to 1. 56 beans.26=Number of parameters in indexed setter method is not equal to 2.
|
/frameworks/base/core/java/android/view/ |
D | IWindow.aidl | 44 void executeCommand(String command, String parameters, in ParcelFileDescriptor descriptor); in executeCommand() argument
|
D | ViewDebug.java | 417 public static void trace(View view, RecyclerTraceType type, int... parameters) { in trace() argument 431 trace.position = parameters[0]; in trace() 432 trace.indexOnScreen = parameters[1]; in trace() 678 static void dispatchCommand(View view, String command, String parameters, in dispatchCommand() argument 687 final String[] params = parameters.split(" "); in dispatchCommand()
|
D | SurfaceView.java | 579 public void executeCommand(String command, String parameters, ParcelFileDescriptor out) { in executeCommand() argument
|
/frameworks/base/core/java/android/net/ |
D | UrlQuerySanitizer.java | 701 public void registerParameters(String[] parameters, in registerParameters() argument 703 int length = parameters.length; in registerParameters() 705 mSanitizers.put(parameters[i], valueSanitizer); in registerParameters()
|
/frameworks/base/docs/html/guide/topics/views/ |
D | custom-views.jd | 126 take attributes and parameters from the XML, and you can also consume 127 your own such attributes and parameters (perhaps the color and range of 174 <code>heighMeasureSpec</code> parameters, both are integer codes 319 <li>Parameterized constructor that takes the view inflation parameters 320 (parameters defined in the XML). Some of these are passed through to the 335 namespace parameters and custom <code>app:</code> namespace parameters. These 336 <code>app:</code> parameters are the custom ones that the LabelView recognizes 371 In the constructor for the new class, take whatever parameters the 376 parameters into the XML that can be pulled out and used by your 486 EditText is created with these parameters when it is inflated from an [all …]
|
/frameworks/base/docs/html/guide/topics/ui/ |
D | custom-components.jd | 132 take attributes and parameters from the XML, and you can also consume 133 your own such attributes and parameters (perhaps the color and range of 183 <code>heightMeasureSpec</code> parameters, both are integer codes 328 <li>Parameterized constructor that takes the view inflation parameters 329 (parameters defined in the XML). Some of these are passed through to the 344 namespace parameters and custom <code>app:</code> namespace parameters. These 345 <code>app:</code> parameters are the custom ones that the LabelView recognizes 380 In the constructor for the new class, take whatever parameters the 385 parameters into the XML that can be pulled out and used by your 494 EditText is created with these parameters when it is inflated from an [all …]
|
D | declaring-layout.jd | 131 the <code>id</code> attribute). And, other attributes are considered "layout parameters," which are 182 layout parameters for the View that are appropriate for the ViewGroup in which it resides.</p> 188 view group defines layout parameters for each child view (including the child view group).</p>
|
D | layout-objects.jd | 204 …parent object). The defined RelativeLayout parameters are: <code>width</code>, <code>height</code>… 206 …and <code>margin[Bottom|Left|Right|Top]</code>. Note that some of these parameters specifically su…
|
D | index.jd | 40 <p>A View object is a data structure whose properties store the layout parameters and content for a… 120 TableLayout, GridLayout and others. Each offers a unique set of layout parameters that are used to …
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/ |
D | MediaRecorderTest.java | 317 Camera.Parameters parameters = mCamera.getParameters(); in testPortraitH263() local 318 parameters.setPreviewSize(352, 288); in testPortraitH263() 319 parameters.set("orientation", "portrait"); in testPortraitH263() 320 mCamera.setParameters(parameters); in testPortraitH263()
|
/frameworks/base/core/java/com/android/internal/view/ |
D | BaseIWindow.java | 91 public void executeCommand(String command, String parameters, ParcelFileDescriptor out) { in executeCommand() argument
|
/frameworks/base/docs/html/guide/developing/tools/ |
D | aidl.jd | 38 generate code to marshall the parameters.</p> 68 methods, that can take parameters and return values. These parameters and return 121 // Methods can take 0 or more parameters, and 126 // Methods can even take other AIDL-defined parameters. 129 // All non-Java primitive parameters (e.g., int, bool, etc) require 132 // Limit the direction to what is truly needed, because marshalling parameters
|
/frameworks/base/docs/html/guide/publishing/ |
D | publishing.jd | 145 on Android Market, based on query parameters that you provide. For example, you 210 <td>Search using multiple query parameters and display the results.</td> 212 <td>Returns a list of applications meeting all the supplied parameters. </td>
|
/frameworks/base/docs/html/guide/topics/ui/notifiers/ |
D | toasts.jd | 43 This method takes three parameters: the application {@link android.content.Context}, 70 method. This accepts three parameters: a {@link android.view.Gravity} constant,
|
/frameworks/base/docs/html/guide/topics/media/jet/ |
D | jetcreator_manual.jd | 512 <p>The segment parameters do the following:</p> 609 parameters are available:</p> 717 button. The parameters are as follows:</p> 763 events you wish to move in time, then click the Move button. The parameters are 864 many of the parameters in the main window plus a few additional parameters.</p>
|
/frameworks/base/docs/html/guide/basics/ |
D | appmodel.jd | 127 with an Intent. These two parameters can work together in various ways 130 combinations of these parameters.</p>
|
/frameworks/base/docs/html/guide/tutorials/notepad/ |
D | notepad-ex2.jd | 173 the user selects an item from the list. It is passed four parameters: the 178 ignore the first two parameters (we only have one <code>ListView</code> it 231 …will only return a result if launched with <code>startActivityForResult</code>.) The parameters pr…
|