/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/ |
D | TestDelegates.java | 97 Class<?>[] parameters = originalMethod.getParameterTypes(); in compare() local 103 Class<?>[] newParameters = new Class<?>[parameters.length + 1]; in compare() 105 System.arraycopy(parameters, 0, newParameters, 1, parameters.length); in compare() 106 parameters = newParameters; in compare() 113 Class<?>[] newParameters = new Class<?>[parameters.length + 1]; in compare() 115 System.arraycopy(parameters, 0, newParameters, 1, parameters.length); in compare() 116 parameters = newParameters; in compare() 122 parameters); in compare() 143 String name = getMethodName(originalMethod, parameters); in compare() 175 private String getMethodName(Method method, Class<?>[] parameters) { in getMethodName() argument [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 | 237 String parameters; in run() local 242 parameters = ""; in run() 245 parameters = request.substring(index + 1); in run() 261 command, parameters); in run()
|
/frameworks/base/keystore/java/android/security/ |
D | KeyStore.java | 153 private ArrayList<byte[]> execute(int code, byte[]... parameters) { in execute() argument 156 for (byte[] parameter : parameters) { in execute() 168 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/core/java/android/view/ |
D | IWindow.aidl | 45 void executeCommand(String command, String parameters, in ParcelFileDescriptor descriptor); in executeCommand() argument
|
D | ViewDebug.java | 452 public static void trace(View view, RecyclerTraceType type, int... parameters) { in trace() argument 466 trace.position = parameters[0]; in trace() 467 trace.indexOnScreen = parameters[1]; in trace() 856 static void dispatchCommand(View view, String command, String parameters, in dispatchCommand() argument 867 final String[] params = parameters.split(" "); in dispatchCommand()
|
/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/core/java/com/android/internal/view/ |
D | BaseIWindow.java | 55 public void executeCommand(String command, String parameters, ParcelFileDescriptor out) { in executeCommand() argument
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/ |
D | MediaRecorderTest.java | 315 Camera.Parameters parameters = mCamera.getParameters(); in testPortraitH263() local 316 parameters.setPreviewSize(352, 288); in testPortraitH263() 317 parameters.set("orientation", "portrait"); in testPortraitH263() 318 mCamera.setParameters(parameters); in testPortraitH263()
|
/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>heightMeasureSpec</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 | 137 the <code>id</code> attribute). And, other attributes are considered "layout parameters," which are 188 layout parameters for the View that are appropriate for the ViewGroup in which it resides.</p> 194 view group defines layout parameters for each child view (including the child view group).</p>
|
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 …
|
D | layout-objects.jd | 206 …parent object). The defined RelativeLayout parameters are: <code>width</code>, <code>height</code>… 208 …and <code>margin[Bottom|Left|Right|Top]</code>. Note that some of these parameters specifically su…
|
/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 | 172 parameters that you provide, or </li> 180 that match the query parameters that you provide. To do so, your application 181 sends an ACTION_VIEW Intent that includes a URI and query parameters in this 221 parameters, the search results may include a list of one or more applications. 302 <td>Search using multiple query parameters and display the results.</td> 304 <td>Returns a list of applications meeting all the supplied parameters. </td>
|
/frameworks/base/docs/html/resources/articles/ |
D | tts.jd | 138 <h4>Using optional parameters to change the playback stream type</h4> 146 method allows you to pass to the TTS engine optional parameters, specified as 156 <h4>Using optional parameters for playback completion callbacks</h4> 174 // myHashAlarm now contains two optional parameters
|
D | layout-tricks-reuse.jd | 54 Similarly, you can override all the layout parameters. This means that any
|
D | layout-tricks-stubs.jd | 50 parameters specified on the stub will be applied to the roof of the
|
/frameworks/base/docs/html/guide/topics/ui/notifiers/ |
D | toasts.jd | 51 This method takes three parameters: the application {@link android.content.Context}, 78 method. This accepts three parameters: a {@link android.view.Gravity} constant,
|
/frameworks/base/tools/layoutlib/create/ |
D | README.txt | 131 method was native. We do not currently provide the parameters. The listener 135 direct calls to a delegate class, complete with parameters.
|
/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>
|