Searched refs:structure (Results 1 - 19 of 19) sorted by relevance

/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
H A DAsyncStructure.java27 * Test for asynchronously creating additional assist structure.
35 public void onProvideVirtualStructure(ViewStructure structure) { argument
36 structure.setChildCount(1);
37 final ViewStructure child = structure.asyncNewChild(0);
H A DMainInteractionSession.java171 public void onHandleAssist(Bundle data, AssistStructure structure, AssistContent content) { argument
172 mAssistStructure = structure;
/frameworks/base/core/java/android/service/voice/
H A DIVoiceInteractionSession.aidl33 void handleAssist(in Bundle assistData, in AssistStructure structure, in AssistContent content);
H A DVoiceInteractionSession.java222 public void handleAssist(final Bundle data, final AssistStructure structure,
227 // structure), we don't block other incoming IPCs (such as the screenshot) to
233 if (structure != null) {
235 structure.ensureData();
242 data, failure == null ? structure : null, failure, content));
825 + " structure=" + args.arg2 + " content=" + args.arg3);
1306 void doOnHandleAssist(Bundle data, AssistStructure structure, Throwable failure, argument
1311 onHandleAssist(data, structure, content);
1335 * @param structure If available, the structure definitio
1345 onHandleAssist(@ullable Bundle data, @Nullable AssistStructure structure, @Nullable AssistContent content) argument
[all...]
/frameworks/base/tools/aidl/
H A DAndroid.mk3 # Copies files into the directory structure described by a manifest
/frameworks/rs/api/
H A Drs_time.spec49 summary: Date and time structure
51 Data structure for broken-down time components.
64 arg: rs_tm* local, "Pointer to time structure where the local time will be stored."
68 Converts the time specified by timer into a @rs_tm structure that provides year, month,
H A Drs_object_info.spec52 C structure definitions.
64 Samplers objects define how Allocations can be read as structure within a kernel.
202 If the Element describes a structure, RS_TYPE_NONE is returned. Use the rsElementGetSub*
214 For Elements that represents a structure, this function returns the sub-element at the
217 If the Element is not a structure or the index is greater or equal to the number of
241 Elements can be simple, such as an int or a float, or a structure with multiple
H A Drs_for_each.spec80 This structure is used to provide iteration information to a rsForEach call.
137 arg: size_t usrDataLen, "Size of the userData structure. This will be used to perform a shallow copy of the data if necessary."
323 a very efficient structure. It also contains rarely used indexes.
/frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/
H A DVoiceInteractionSessionConnection.java339 AssistStructure structure;
343 structure = mAssistData.getParcelable("structure");
364 structure = null;
368 mSession.handleAssist(assistData, structure, content);
/frameworks/base/core/java/android/widget/
H A DSwitch.java1397 public void onProvideStructure(ViewStructure structure) { argument
1398 super.onProvideStructure(structure);
1401 CharSequence oldText = structure.getText();
1403 structure.setText(switchText);
1407 structure.setText(newText);
H A DTextView.java2131 // Clearing drawables... can we free the data structure?
2137 // out all of the fields in the existing structure.
2334 // Clearing drawables... can we free the data structure?
2340 // out all of the fields in the existing structure.
8780 public void onProvideStructure(ViewStructure structure) { argument
8781 super.onProvideStructure(structure);
8792 structure.setText(getText(), getSelectionStart(), getSelectionEnd());
8848 structure.setText(text, selStart-expandedTopChar, selEnd-expandedTopChar);
8856 structure.setTextLines(lineOffsets, lineBaselines);
8883 structure
[all...]
/frameworks/base/core/java/android/view/
H A DView.java577 * themselves rather than by putting them in a separate structure.
6164 * Called when assist structure is being retrieved from a view as part of
6166 * @param structure Fill in with structured view data. The default implementation
6169 public void onProvideStructure(ViewStructure structure) { argument
6182 structure.setId(id, pkg, type, entry);
6184 structure.setId(id, null, null, null);
6186 structure.setDimens(mLeft, mTop, mScrollX, mScrollY, mRight - mLeft, mBottom - mTop);
6188 structure.setTransformation(getMatrix());
6190 structure.setElevation(getZ());
6191 structure
6235 onProvideVirtualStructure(ViewStructure structure) argument
6246 populateVirtualStructure(ViewStructure structure, AccessibilityNodeProvider provider, AccessibilityNodeInfo info) argument
6307 dispatchProvideStructure(ViewStructure structure) argument
[all...]
H A DViewGroup.java2899 public void dispatchProvideStructure(ViewStructure structure) { argument
2900 super.dispatchProvideStructure(structure);
2902 if (structure.getChildCount() == 0) {
2905 structure.setChildCount(childrenCount);
2960 ViewStructure cstructure = structure.newChild(i);
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java305 public void onProvideVirtualStructure(android.view.ViewStructure structure); argument
H A DWebView.java2442 public void onProvideVirtualStructure(ViewStructure structure) { argument
2443 mProvider.getViewDelegate().onProvideVirtualStructure(structure);
/frameworks/base/core/java/android/app/
H A DActivityThread.java2571 AssistStructure structure = mLastAssistStructure.get();
2572 if (structure != null) {
2573 structure.clearSendChannel();
2577 AssistStructure structure = null;
2586 structure = new AssistStructure(r.activity);
2602 if (structure == null) {
2603 structure = new AssistStructure();
2605 mLastAssistStructure = new WeakReference<>(structure);
2608 mgr.reportAssistContextExtras(cmd.requestToken, data, structure, content, referrer);
H A DIActivityManager.java441 AssistStructure structure, AssistContent content, Uri referrer) throws RemoteException;
440 reportAssistContextExtras(IBinder token, Bundle extras, AssistStructure structure, AssistContent content, Uri referrer) argument
H A DActivityManagerNative.java2207 AssistStructure structure = AssistStructure.CREATOR.createFromParcel(data);
2210 reportAssistContextExtras(token, extras, structure, content, referrer);
5418 public void reportAssistContextExtras(IBinder token, Bundle extras, AssistStructure structure, argument
5425 structure.writeToParcel(data, 0);
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java508 public AssistStructure structure = null; field in class:ActivityManagerService.PendingAssistExtras
878 * This optimized lookup structure maps from {@link UriPermission#targetUid}
10920 public void reportAssistContextExtras(IBinder token, Bundle extras, AssistStructure structure, argument
10925 pae.structure = structure;
10953 sendBundle.putParcelable("structure", pae.structure);

Completed in 9149 milliseconds