HomeSort by relevance Sort by last modified time
    Searched refs:component (Results 1 - 25 of 647) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/ui/base/
latency_info_unittest.cc 25 LatencyInfo::LatencyComponent component; local
27 info.FindLatency(INPUT_EVENT_LATENCY_UI_COMPONENT, 0, &component));
29 info.FindLatency(INPUT_EVENT_LATENCY_RWH_COMPONENT, 1, &component));
31 info.FindLatency(INPUT_EVENT_LATENCY_RWH_COMPONENT, 0, &component));
32 EXPECT_EQ(component.sequence_number, 1);
33 EXPECT_EQ(component.event_count, 1u);
34 EXPECT_EQ(component.event_time.ToInternalValue(), 100);
36 info.FindLatency(INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT, 1, &component));
37 EXPECT_EQ(component.sequence_number, 5);
38 EXPECT_EQ(component.event_count, 2u)
56 LatencyInfo::LatencyComponent component; local
84 LatencyInfo::LatencyComponent component; local
117 LatencyInfo::LatencyComponent component; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_util.h 46 unsigned component );
52 unsigned component );
58 unsigned component );
68 unsigned component );
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_util.h 46 unsigned component );
52 unsigned component );
58 unsigned component );
68 unsigned component );
  /external/chromium_org/third_party/skia/include/core/
SkUnPreMultiply.h 45 static U8CPU ApplyScale(Scale scale, U8CPU component) {
46 SkASSERT(component <= 255);
47 return (scale * component + (1 << 23)) >> 24;
  /external/javassist/src/main/javassist/bytecode/analysis/
MultiArrayType.java 27 private MultiType component; field in class:MultiArrayType
30 public MultiArrayType(MultiType component, int dims) {
32 this.component = component;
37 CtClass clazz = component.getCtClass();
55 return component.popChanged();
63 return dims == 1 ? (Type)component : new MultiArrayType(component, dims - 1);
114 return component.isAssignableTo(typeRoot);
122 return component.equals(multi.component) && dims == multi.dims
    [all...]
  /external/skia/include/core/
SkUnPreMultiply.h 45 static U8CPU ApplyScale(Scale scale, U8CPU component) {
46 SkASSERT(component <= 255);
47 return (scale * component + (1 << 23)) >> 24;
  /external/chromium_org/third_party/WebKit/Source/core/platform/mediastream/
MediaStreamDescriptor.cpp 54 void MediaStreamDescriptor::addComponent(PassRefPtr<MediaStreamComponent> component)
56 switch (component->source()->type()) {
58 if (m_audioComponents.find(component) == notFound)
59 m_audioComponents.append(component);
62 if (m_videoComponents.find(component) == notFound)
63 m_videoComponents.append(component);
68 void MediaStreamDescriptor::removeComponent(PassRefPtr<MediaStreamComponent> component)
71 switch (component->source()->type()) {
73 pos = m_audioComponents.find(component);
78 pos = m_videoComponents.find(component);
    [all...]
MediaStreamCenter.cpp 69 void MediaStreamCenter::didSetMediaStreamTrackEnabled(MediaStreamDescriptor* stream, MediaStreamComponent* component)
72 if (component->enabled())
73 m_private->didEnableMediaStreamTrack(stream, component);
75 m_private->didDisableMediaStreamTrack(stream, component);
79 bool MediaStreamCenter::didAddMediaStreamTrack(MediaStreamDescriptor* stream, MediaStreamComponent* component)
81 return m_private && m_private->didAddMediaStreamTrack(stream, component);
84 bool MediaStreamCenter::didRemoveMediaStreamTrack(MediaStreamDescriptor* stream, MediaStreamComponent* component)
86 return m_private && m_private->didRemoveMediaStreamTrack(stream, component);
  /cts/tests/tests/calendarcommon/src/com/android/calendarcommon2/
RecurrenceSet.java 31 public static void addPropertiesForRuleStr(ICalendar.Component component,
34 component.addProperty(new ICalendar.Property(CTS_PROPERTY_NAME));
  /external/chromium_org/url/
url_util_internal.h 22 const url_parse::Component& component,
25 const url_parse::Component& component,
  /external/proguard/src/proguard/gui/
TabbedPane.java 66 * Adds a component with a given title to the tabbed pane.
69 * @param component the component that will be added as a tab.
71 public Component add(final String title, Component component)
137 cardPanel.add(title, component);
139 return component;
148 * @return the component containing the image.
150 public Component addImage(final Image image
158 JButton component = new JButton(new ImageIcon(image)); local
    [all...]
  /external/libyuv/files/include/libyuv/
mjpeg_decoder.h 81 // Sample factors of the n-th component.
82 int GetHorizSampFactor(int component);
84 int GetVertSampFactor(int component);
86 int GetHorizSubSampFactor(int component);
88 int GetVertSubSampFactor(int component);
94 int GetComponentScanlinesPerImcuRow(int component);
96 // Width of a component in bytes.
97 int GetComponentWidth(int component);
99 // Height of a component.
100 int GetComponentHeight(int component);
    [all...]
  /external/libselinux/src/
context.c 14 char *(component[4]); member in struct:__anon22861
19 * 4 colon-separated components and no whitespace in any component other
20 * than the MLS component.
38 n->current_str = n->component[0] = n->component[1] = n->component[2] =
39 n->component[3] = 0;
62 n->component[3] = 0;
67 /* MLS range is one component */
71 n->component[i] = (char *)malloc(p - tok + 1)
    [all...]
  /libcore/libart/src/main/java/sun/misc/
Unsafe.java 80 Class<?> component = clazz.getComponentType(); local
81 if (component == null) {
86 if (component == long.class || component == double.class) {
99 Class<?> component = clazz.getComponentType(); local
100 if (component == null) {
104 if (!component.isPrimitive()) {
106 } else if (component == long.class || component == double.class) {
108 } else if (component == int.class || component == float.class)
    [all...]
  /external/chromium_org/ash/wm/gestures/
two_finger_drag_handler.cc 21 bool IsTopEdge(int component) {
22 return component == HTTOPLEFT ||
23 component == HTTOP ||
24 component == HTTOPRIGHT;
27 bool IsBottomEdge(int component) {
28 return component == HTBOTTOMLEFT ||
29 component == HTBOTTOM ||
30 component == HTBOTTOMRIGHT;
33 bool IsRightEdge(int component) {
34 return component == HTTOPRIGHT |
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
ICalendarTest.java 39 ICalendar.Component component = new ICalendar.Component("DUMMY", null); local
41 component.addProperty(new ICalendar.Property("prop2", "value3"));
42 component.addProperty(new ICalendar.Property("prop1", "value1"));
43 component.addProperty(new ICalendar.Property("prop1", "value2"));
44 assertEquals(text, component.toString());
57 ICalendar.Component parent = new ICalendar.Component("DUMMY", null);
59 ICalendar.Component child = new ICalendar.Component("DUMMY2", parent)
75 ICalendar.Component component = ICalendar.parseComponent(text); local
93 ICalendar.Component component local
110 ICalendar.Component component local
146 ICalendar.Component component = new ICalendar.Component("DUMMY", null); local
250 ICalendar.Component component = ICalendar.parseComponent(text); local
259 ICalendar.Component component = ICalendar.parseComponent(text); local
268 ICalendar.Component component = ICalendar.parseComponent(text); local
    [all...]
RecurrenceSetTest.java 105 ICalendar.Component component = new ICalendar.Component(MOCK_COMPONENT_NAME, null); local
112 assertTrue(RecurrenceSet.populateComponent(values, component));
113 List<ICalendar.Property> list = component.getProperties("DTSTART");
117 list = component.getProperties("RRULE");
121 component = new ICalendar.Component(MOCK_COMPONENT_NAME, null);
128 assertTrue(RecurrenceSet.populateComponent(values, component));
130 list = component.getProperties("RRULE")
    [all...]
  /frameworks/av/media/libstagefright/omx/
SoftOMXComponent.cpp 31 OMX_COMPONENTTYPE **component)
63 *component = mComponent;
112 OMX_HANDLETYPE component,
118 ((OMX_COMPONENTTYPE *)component)->pComponentPrivate;
125 OMX_HANDLETYPE component,
130 ((OMX_COMPONENTTYPE *)component)->pComponentPrivate;
137 OMX_HANDLETYPE component,
142 ((OMX_COMPONENTTYPE *)component)->pComponentPrivate;
149 OMX_HANDLETYPE component,
154 ((OMX_COMPONENTTYPE *)component)->pComponentPrivate
    [all...]
  /cts/tests/tests/calendarcommon/src/android/calendarcommon2/cts/
Calendarcommon2Test.java 38 ICalendar.Component component = new ICalendar.Component("CTS", null); local
40 component.getProperties(RecurrenceSet.CTS_PROPERTY_NAME);
43 recurSet.addPropertiesForRuleStr(component, null, null);
48 properties = component.getProperties(RecurrenceSet.CTS_PROPERTY_NAME);
  /external/chromium_org/chromeos/
chromeos_test_utils.h 18 bool GetTestDataPath(const std::string& component,
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
cppdefault.h 38 const char *const component; /* The component containing the directory member in struct:default_include
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
cppdefault.h 38 const char *const component; /* The component containing the directory member in struct:default_include
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
cppdefault.h 38 const char *const component; /* The component containing the directory member in struct:default_include
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
cppdefault.h 38 const char *const component; /* The component containing the directory member in struct:default_include
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/core/
Exynos_OMX_Component_Register.c 20 * @brief Exynos OpenMAX IL Component Register
99 Exynos_OSAL_Strcpy(componentList[totalCompNum].component.componentName, exynosComponentsTemp[i]->componentName);
101 Exynos_OSAL_Strcpy(componentList[totalCompNum].component.roles[j], exynosComponentsTemp[i]->roles[j]);
102 componentList[totalCompNum].component.totalRoleNum = exynosComponentsTemp[i]->totalRoleNum;
122 /* not a component name line. skip */
150 OMX_ERRORTYPE Exynos_OMX_ComponentAPICheck(OMX_COMPONENTTYPE *component)
154 if ((NULL == component->GetComponentVersion) ||
155 (NULL == component->SendCommand) ||
156 (NULL == component->GetParameter) ||
157 (NULL == component->SetParameter) |
    [all...]

Completed in 1062 milliseconds

1 2 3 4 5 6 7 8 91011>>