HomeSort by relevance Sort by last modified time
    Searched full:interaction (Results 1 - 25 of 1168) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/test/545-tracing-and-jit/
info.txt 1 Tests interaction between the JIT and the method tracing
  /art/test/972-default-imt-collision/
info.txt 1 Test for interaction of miranda and non-miranda methods on interface dispatch.
  /frameworks/base/core/java/android/view/
package.html 4 screen layout and interaction with the user.
  /external/chromium-trace/catapult/telemetry/telemetry/web_perf/metrics/
single_event_unittest.py 18 Interaction = timeline_interaction_record.TimelineInteractionRecord
51 interactions = [Interaction('interaction', 10, 20),
52 Interaction('interaction', 30, 40)]
57 # The first event starts before the first interaction, so it is ignored.
58 # The second event starts before the first interaction, so it is ignored.
59 # The third event starts during the first interaction, and its duration is
61 # The fourth event starts during the first interaction, and its duration is
65 # The seventh event starts during the second interaction, and its duratio
    [all...]
jitter_timeline_unittest.py 15 Interaction = timeline_interaction_record.TimelineInteractionRecord
37 return Interaction(TEST_INTERACTION_LABEL, start, end)
46 # The first and the last event do not start during the interaction, so
47 # they are ignored. The second event starts during the interaction, and its
single_event.py 12 user interaction.
31 interaction.start <= event.start <= interaction.end
32 for interaction in interactions):
blob_timeline.py 34 def IsEventInInteraction(event, interaction):
35 return interaction.start <= event.start <= interaction.end
64 any(self.IsEventInInteraction(event, interaction)
65 for interaction in interactions)):
83 none_value_reason='No blob write events found for this interaction.',
90 not any(self.IsEventInInteraction(event, interaction)
91 for interaction in interactions)):
116 none_value_reason='No blob read events found for this interaction.',
blob_timeline_unittest.py 15 Interaction = timeline_interaction_record.TimelineInteractionRecord
47 return Interaction(TEST_INTERACTION_LABEL, start, end)
68 # The first event starts before the first interaction, so it is ignored.
69 # The second event starts before the first interaction, so it is ignored.
70 # The third event starts during the first interaction, and its duration is
72 # The fourth event starts during the first interaction, and its duration is
76 # The seventh event starts during the second interaction, and its duration
78 # The eighth event starts during the second interaction and its duration is
80 # The ninth event starts after the last interaction, so it is ignored.
100 # We ignore events outside of the interaction intervals, and we use th
    [all...]
memory_timeline.py 25 def ContainedIn(dump, interaction):
26 return interaction.start < dump.start and dump.end < interaction.end
32 # ... and fall within the span of an interaction record.
33 any(ContainedIn(dump, interaction) for interaction in interactions))
  /frameworks/base/docs/html/training/
best-ux.jd 1 page.title=Best Practices for Interaction and Engagement
9 the best interaction patterns for Android. For instance, to help users quickly discover content
10 in your app, your app should match their expectations for user interaction on Android.
  /external/chromium-trace/catapult/telemetry/telemetry/internal/testing/
interaction_enabled_page.html 36 console.time('Interaction.CenterAnimation');
38 console.timeEnd('Interaction.CenterAnimation');
41 console.time('Interaction.DrawerAnimation');
43 console.timeEnd('Interaction.DrawerAnimation');
64 console.time('Interaction.JankThreadJSRun');
66 console.timeEnd('Interaction.JankThreadJSRun');
70 console.time('Interaction.SlowThreadJsRun');
72 console.timeEnd('Interaction.SlowThreadJsRun');
  /packages/apps/Settings/src/com/android/settings/utils/
VoiceSettingsActivity.java 27 * Activity for modifying a setting using the Voice Interaction API. This activity
30 * by the current Voice Interaction Service.
41 // Only permit if this is a voice interaction.
47 Log.v(TAG, "Cannot modify settings without voice interaction");
53 * Modify the setting as a voice interaction. Should return true if the
54 * voice interaction is complete or false if more interaction is required.
59 * Send a notification that the interaction was successful. If {@param prompt} is
  /frameworks/base/core/java/com/android/internal/logging/
EventLogTags.logtags 5 # interaction logs
  /packages/apps/Dialer/tests/src/com/android/dialer/interactions/
PhoneNumberInteractionTest.java 98 TestPhoneNumberInteraction interaction = new TestPhoneNumberInteraction( local
101 interaction.startInteraction(contactUri);
102 interaction.waitForLoader();
117 TestPhoneNumberInteraction interaction = new TestPhoneNumberInteraction( local
120 interaction.startInteraction(dataUri);
121 interaction.waitForLoader();
138 TestPhoneNumberInteraction interaction = new TestPhoneNumberInteraction( local
141 interaction.startInteraction(contactUri);
142 interaction.waitForLoader();
179 TestPhoneNumberInteraction interaction = new TestPhoneNumberInteraction local
197 TestPhoneNumberInteraction interaction = new TestPhoneNumberInteraction( local
218 TestPhoneNumberInteraction interaction = new TestPhoneNumberInteraction( local
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/web_perf/
timeline_interaction_record.py 26 return event_name.startswith('Interaction.')
33 'Unrecognized flag for a timeline interaction record: %s' % f)
36 """Computes the marker string of an interaction record.
40 interaction record..
43 label: The label used to identify the interaction record.
44 flags: the flags for the interaction record see FLAGS above.
47 The interaction record marker string (e.g., Interaction.Label/flag1,flag2).
53 marker = 'Interaction.%s' % label
59 """Represents an interaction that took place during a timeline recording
    [all...]
timeline_based_measurement_unittest.py 136 # Insert 2 interaction records to renderer_thread and 1 to foo_thread
138 marker='Interaction.LogicalName1')
140 marker='Interaction.LogicalName2')
142 marker='Interaction.LogicalName3')
147 # Assert the 2 interaction records of renderer_thread are in the map.
157 # Assert the 1 interaction records of foo_thread is in the map.
167 marker='Interaction.LogicalName1')
169 marker='Interaction.LogicalName2')
182 marker='Interaction.LogicalName/repeatable')
184 marker='Interaction.LogicalName'
    [all...]
timeline_interaction_record_unittest.py 17 'Interaction.Foo'))
19 'Interaction.Foo/Bar'))
40 r = self.CreateSimpleRecordWithName('Interaction.LogicalName')
44 r = self.CreateSimpleRecordWithName('Interaction.LogicalName/repeatable')
49 'Interaction.LogicalNameWith/Slash/repeatable')
56 self.assertEquals('Interaction.MyLabel/repeatable', repeatable_marker)
66 'cat', 'Interaction.Test',
98 'cat', 'Interaction.Test/repeatable',
105 'async_event=TimelineEvent(name=\'Interaction.Test/repeatable\','
120 'cat', 'Interaction.Test'
    [all...]
timeline_based_measurement.py 65 # TODO(nednguyen): Get rid of this results wrapper hack after we add interaction
93 'TimelineBasedMetric should create the interaction record label '
104 # TODO(nduca): Add support for page-load interaction record.
106 interaction = tir_module.TimelineInteractionRecord.FromAsyncEvent(event)
107 # Adjust the interaction record to match the synthetic gesture
109 interaction = (
111 model, interaction))
112 threads_to_records_map[curr_thread].append(interaction)
113 if interaction.label in interaction_labels_of_previous_threads:
115 'Interaction record label %s is duplicated on different
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
UserInteractionListener.java 20 // Called when a user interaction begins (for example, fling).
22 // Called when the user interaction ends.
  /art/test/965-default-verify/
info.txt 1 Smali-based tests for verification interaction with experimental interface
  /external/autotest/client/site_tests/graphics_dEQP/expectations/sandybridge/
dEQP-GLES3.functional.hasty.Fail.bz2 
  /frameworks/base/core/java/android/service/voice/
VoiceInteractionManagerInternal.java 30 * Start a new voice interaction session when requested from within an activity
38 * Returns whether the currently selected voice interaction service supports local voice
39 * interaction for launching from an Activity.
  /packages/apps/Dialer/src/com/android/dialer/logging/
Logger.java 70 * Logs an interaction that occurred
72 * @param interaction an integer representing what interaction occurred.
75 public static void logInteraction(int interaction) {
78 logger.logInteractionImpl(interaction);
  /frameworks/base/core/java/android/view/accessibility/
IAccessibilityInteractionCallback.aidl 34 * @param interactionId The interaction id to match the result with the request.
42 * @param interactionId The interaction id to match the result with the request.
51 * @param interactionId The interaction id to match the result with the request.
IAccessibilityInteractionConnectionCallback.aidl 35 * @param interactionId The interaction id to match the result with the request.
43 * @param interactionId The interaction id to match the result with the request.
52 * @param interactionId The interaction id to match the result with the request.

Completed in 3488 milliseconds

1 2 3 4 5 6 7 8 91011>>