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

12

/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.java193 public void onHandleAssist(Bundle data, AssistStructure structure, AssistContent content) { argument
195 mAssistStructure = structure;
208 public void onHandleAssistSecondary(final Bundle data, final AssistStructure structure, argument
211 Log.i(TAG, "Showing assist structure after a few seconds...");
214 onHandleAssist(data, structure, content);
/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.java233 public void handleAssist(final Bundle data, final AssistStructure structure,
238 // structure), we don't block other incoming IPCs (such as the screenshot) to
244 if (structure != null) {
246 structure.ensureData();
253 data, failure == null ? structure : null, failure, content,
841 + " structure=" + args.arg2 + " content=" + args.arg3
1419 void doOnHandleAssist(Bundle data, AssistStructure structure, Throwable failure, argument
1424 onHandleAssist(data, structure, content);
1427 void doOnHandleAssistSecondary(Bundle data, AssistStructure structure, Throwable failure, argument
1432 onHandleAssistSecondary(data, structure, conten
1466 onHandleAssist(@ullable Bundle data, @Nullable AssistStructure structure, @Nullable AssistContent content) argument
1505 onHandleAssistSecondary(@ullable Bundle data, @Nullable AssistStructure structure, @Nullable AssistContent content, int index, int count) argument
[all...]
/frameworks/base/services/autofill/java/com/android/server/autofill/
H A DHelper.java150 public static ViewNode findViewNodeByAutofillId(@NonNull AssistStructure structure, argument
152 return findViewNode(structure, (node) -> {
157 private static ViewNode findViewNode(@NonNull AssistStructure structure, argument
160 final int numWindowNodes = structure.getWindowNodeCount();
162 nodesToProcess.add(structure.getWindowNodeAt(i).getRootViewNode());
180 * @param structure Assist structure
186 public static ViewNode sanitizeUrlBar(@NonNull AssistStructure structure, argument
188 final ViewNode urlBarNode = findViewNode(structure, (node) -> {
H A DSession.java246 final AssistStructure structure = resultData.getParcelable(ASSIST_KEY_STRUCTURE);
247 if (structure == null) {
248 Slog.e(TAG, "No assist structure - app might have crashed providing it");
261 Slog.v(TAG, "New structure for requestId " + requestId + ": " + structure);
267 // even if if the activity is gone by then, but structure .ensureData() gives a
272 structure.ensureDataForAutofill();
274 wtf(e, "Exception lazy loading assist structure for %s: %s",
275 structure.getActivityComponent(), e);
279 // Sanitize structure befor
[all...]
/frameworks/rs/script_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
/frameworks/base/core/java/android/service/autofill/
H A DFillContext.java61 public FillContext(int requestId, @NonNull AssistStructure structure) { argument
63 mStructure = structure;
/frameworks/base/core/java/android/widget/
H A DRadioGroup.java425 public void onProvideAutofillStructure(ViewStructure structure, int flags) { argument
426 super.onProvideAutofillStructure(structure, flags);
427 structure.setDataIsSensitive(mCheckedId != mInitialCheckedId);
H A DSwitch.java1412 public void onProvideStructure(ViewStructure structure) { argument
1413 super.onProvideStructure(structure);
1414 onProvideAutoFillStructureForAssistOrAutofill(structure);
1418 public void onProvideAutofillStructure(ViewStructure structure, int flags) { argument
1419 super.onProvideAutofillStructure(structure, flags);
1420 onProvideAutoFillStructureForAssistOrAutofill(structure);
1424 private void onProvideAutoFillStructureForAssistOrAutofill(ViewStructure structure) { argument
1427 CharSequence oldText = structure.getText();
1429 structure.setText(switchText);
1433 structure
[all...]
H A DCompoundButton.java578 public void onProvideAutofillStructure(ViewStructure structure, int flags) { argument
579 super.onProvideAutofillStructure(structure, flags);
581 structure.setDataIsSensitive(!mCheckedFromResource);
H A DDatePicker.java800 public void dispatchProvideAutofillStructure(ViewStructure structure, int flags) { argument
804 structure.setAutofillId(getAutofillId());
805 onProvideAutofillStructure(structure, flags);
H A DTimePicker.java556 public void dispatchProvideAutofillStructure(ViewStructure structure, int flags) { argument
560 structure.setAutofillId(getAutofillId());
561 onProvideAutofillStructure(structure, flags);
H A DAdapterView.java1291 * <p>It also sets the autofill options in the structure; when overridden, it should set it as
1293 * or implicitly by calling {@code super.onProvideAutofillStructure(structure, flags)}.
1296 public void onProvideAutofillStructure(ViewStructure structure, int flags) { argument
1297 super.onProvideAutofillStructure(structure, flags);
1304 structure.setAutofillOptions(options);
H A DTextView.java2685 // Clearing drawables... can we free the data structure?
2691 // out all of the fields in the existing structure.
2888 // Clearing drawables... can we free the data structure?
2894 // out all of the fields in the existing structure.
10559 public void onProvideStructure(ViewStructure structure) { argument
10560 super.onProvideStructure(structure);
10561 onProvideAutoStructureForAssistOrAutofill(structure, false);
10565 public void onProvideAutofillStructure(ViewStructure structure, int flags) { argument
10566 super.onProvideAutofillStructure(structure, flags);
10567 onProvideAutoStructureForAssistOrAutofill(structure, tru
10570 onProvideAutoStructureForAssistOrAutofill(ViewStructure structure, boolean forAutofill) argument
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java330 public void onProvideVirtualStructure(android.view.ViewStructure structure); argument
333 @SuppressWarnings("unused") android.view.ViewStructure structure,
332 onProvideAutofillVirtualStructure( @uppressWarnings�) android.view.ViewStructure structure, @SuppressWarnings(�) int flags) argument
H A DWebView.java2853 public void onProvideVirtualStructure(ViewStructure structure) { argument
2854 mProvider.getViewDelegate().onProvideVirtualStructure(structure);
2873 * the view structure until the user taps a field from a {@code FORM} inside the
2888 * {@code structure.setDataIsSensitive(false)}.
2902 * int index = structure.addChildCount(2);
2903 * ViewStructure username = structure.newChild(index);
2904 * username.setAutofillId(structure.getAutofillId(), 1); // id 1 - first child
2917 * ViewStructure password = structure.newChild(index + 1);
2918 * username.setAutofillId(structure, 2); // id 2 - second child
2930 public void onProvideAutofillVirtualStructure(ViewStructure structure, in argument
[all...]
/frameworks/base/lowpan/tests/
H A DAndroid.mk34 # This only works if the class name matches the file name and the directory structure
/frameworks/base/wifi/tests/
H A DAndroid.mk34 # This only works if the class name matches the file name and the directory structure
/frameworks/base/core/java/android/view/
H A DView.java593 * themselves rather than by putting them in a separate structure.
7788 * Called when assist structure is being retrieved from a view as part of
7790 * @param structure Fill in with structured view data. The default implementation
7793 public void onProvideStructure(ViewStructure structure) { argument
7794 onProvideStructureForAssistOrAutofill(structure, false, 0);
7800 * <p>The structure should contain at least the following properties:
7808 * <p>It's also recommended to set the following properties - the more properties the structure
7810 * using the structure:
7849 * {@link ViewGroup#isImportantForAutofill()} predecessor view included in the structure.
7861 * @param structure fil
7866 onProvideAutofillStructure(ViewStructure structure, @AutofillFlags int flags) argument
7870 onProvideStructureForAssistOrAutofill(ViewStructure structure, boolean forAutofill, @AutofillFlags int flags) argument
7978 onProvideVirtualStructure(ViewStructure structure) argument
7988 onProvideVirtualStructureCompat(ViewStructure structure, boolean forAutofill) argument
8067 onProvideAutofillVirtualStructure(ViewStructure structure, int flags) argument
8496 populateVirtualStructure(ViewStructure structure, AccessibilityNodeProvider provider, AccessibilityNodeInfo info, boolean forAutofill) argument
8591 dispatchProvideStructure(ViewStructure structure) argument
8632 dispatchProvideAutofillStructure(@onNull ViewStructure structure, @AutofillFlags int flags) argument
8637 dispatchProvideStructureForAssistOrAutofill(ViewStructure structure, boolean forAutofill, @AutofillFlags int flags) argument
[all...]
/frameworks/opt/net/lowpan/libandroid_net_lowpan/tests/
H A DAndroid.mk34 # This only works if the class name matches the file name and the directory structure
/frameworks/opt/net/wifi/tests/wifitests/
H A DAndroid.mk35 # This only works if the class name matches the file name and the directory structure
/frameworks/base/packages/SystemUI/tests/
H A DAndroid.mk102 # This only works if the class name matches the file name and the directory structure
/frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/
H A DVoiceInteractionSessionConnection.java257 final AssistStructure structure = data.getParcelable(ASSIST_KEY_STRUCTURE);
276 mSession.handleAssist(assistData, structure, content, activityIndex,

Completed in 535 milliseconds

12