Searched refs:component (Results 1 - 25 of 439) sorted by relevance

1234567891011>>

/external/chromium_org/ui/events/
H A Dlatency_info_unittest.cc25 LatencyInfo::LatencyComponent component; local
27 info.FindLatency(INPUT_EVENT_LATENCY_UI_COMPONENT, 0, &component));
29 info.FindLatency(INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT, 1, &component));
31 info.FindLatency(INPUT_EVENT_LATENCY_BEGIN_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
56 LatencyInfo::LatencyComponent component; local
[all...]
/external/chromium_org/url/
H A Durl_util_internal.h18 const Component& component,
21 const Component& component,
/external/llvm/tools/llvm-config/
H A DLibraryDependencies.inc10 /// The name of the component.
13 /// The name of the library for this component (or NULL).
16 /// Whether the component is installed.
19 /// The list of libraries required when linking this component.
/external/chromium_org/chrome/browser/resources/local_ntp/
H A Dinstant_iframe_validation.js30 * Validates a RGBA color component. It must be a number between 0 and 255.
31 * @param {number} component An RGBA component.
32 * @return {boolean} True if the component is valid.
34 function isValidRBGAComponent(component) {
35 return isFinite(component) && component >= 0 && component <= 255;
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_util.h46 unsigned component );
52 unsigned component );
58 unsigned component );
68 unsigned component );
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_util.h46 unsigned component );
52 unsigned component );
58 unsigned component );
68 unsigned component );
/external/chromium_org/chrome/browser/ui/views/panels/
H A Dx11_panel_resizer.cc18 // Returns true if the window can be resized via |component|.
19 bool IsWindowBorder(int component) { argument
20 return component == HTBOTTOM ||
21 component == HTBOTTOMLEFT ||
22 component == HTBOTTOMRIGHT ||
23 component == HTLEFT ||
24 component == HTRIGHT ||
25 component == HTTOP ||
26 component == HTTOPLEFT ||
27 component
51 int component = window_->delegate()->GetNonClientComponent(event->location()); local
[all...]
/external/chromium_org/third_party/skia/include/core/
H A DSkUnPreMultiply.h45 static U8CPU ApplyScale(Scale scale, U8CPU component) { argument
46 SkASSERT(component <= 255);
47 return (scale * component + (1 << 23)) >> 24;
/external/javassist/src/main/javassist/bytecode/analysis/
H A DMultiArrayType.java27 private MultiType component; field in class:MultiArrayType
30 public MultiArrayType(MultiType component, int dims) { argument
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
[all...]
/external/skia/include/core/
H A DSkUnPreMultiply.h45 static U8CPU ApplyScale(Scale scale, U8CPU component) { argument
46 SkASSERT(component <= 255);
47 return (scale * component + (1 << 23)) >> 24;
/external/chromium_org/third_party/WebKit/Source/platform/mediastream/
H A DMediaStreamDescriptor.cpp55 void MediaStreamDescriptor::addComponent(PassRefPtr<MediaStreamComponent> component) argument
57 switch (component->source()->type()) {
59 if (m_audioComponents.find(component) == kNotFound)
60 m_audioComponents.append(component);
63 if (m_videoComponents.find(component) == kNotFound)
64 m_videoComponents.append(component);
69 void MediaStreamDescriptor::removeComponent(PassRefPtr<MediaStreamComponent> component) argument
72 switch (component->source()->type()) {
74 pos = m_audioComponents.find(component);
79 pos = m_videoComponents.find(component);
86 addRemoteTrack(MediaStreamComponent* component) argument
94 removeRemoteTrack(MediaStreamComponent* component) argument
[all...]
H A DMediaStreamCenter.cpp72 void MediaStreamCenter::didSetMediaStreamTrackEnabled(MediaStreamComponent* component) argument
75 if (component->enabled()) {
76 m_private->didEnableMediaStreamTrack(component);
78 m_private->didDisableMediaStreamTrack(component);
83 bool MediaStreamCenter::didAddMediaStreamTrack(MediaStreamDescriptor* stream, MediaStreamComponent* component) argument
85 return m_private && m_private->didAddMediaStreamTrack(stream, component);
88 bool MediaStreamCenter::didRemoveMediaStreamTrack(MediaStreamDescriptor* stream, MediaStreamComponent* component) argument
90 return m_private && m_private->didRemoveMediaStreamTrack(stream, component);
/external/chromium_org/net/base/
H A Dfilename_util_icu.cc17 bool IsSafePortablePathComponent(const base::FilePath& component) { argument
19 base::FilePath::StringType sanitized = component.value();
21 base::FilePath::StringType extension = component.Extension();
24 return !component.empty() && (component == component.BaseName()) &&
25 (component == component.StripTrailingSeparators()) &&
26 FilePathToString16(component, &component16) &&
29 (sanitized == component
[all...]
/external/chromium_org/tools/findit/
H A Drepository_parser_interface.py13 component_path: A string, path of the component. Path is used because
14 path is unique while component name is not.
27 def ParseLineDiff(self, path, component, file_action, githash):
32 component: The component the file is from.
45 def ParseBlameInfo(self, component, file_path, line, revision):
49 component: The component this line is from.
/external/proguard/src/proguard/gui/
H A DTabbedPane.java66 * 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) argument
137 cardPanel.add(title, component);
139 return component;
148 * @return the component containing the image.
158 JButton component = new JButton(new ImageIcon(image));
159 component.setFocusPainted(false);
160 component
[all...]
/external/chromium_org/chrome/browser/ui/panels/
H A Dpanel_resize_controller.cc13 bool ResizingLeft(int component) { argument
14 return component == HTTOPLEFT ||
15 component == HTLEFT ||
16 component == HTBOTTOMLEFT;
19 bool ResizingRight(int component) { argument
20 return component == HTTOPRIGHT ||
21 component == HTRIGHT ||
22 component == HTBOTTOMRIGHT;
25 bool ResizingTop(int component) { argument
26 return component
31 ResizingBottom(int component) argument
44 StartResizing(Panel* panel, const gfx::Point& mouse_location, int component) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/include/libyuv/
H A Dmjpeg_decoder.h104 // Sample factors of the n-th component.
105 int GetHorizSampFactor(int component);
107 int GetVertSampFactor(int component);
109 int GetHorizSubSampFactor(int component);
111 int GetVertSubSampFactor(int component);
117 int GetComponentScanlinesPerImcuRow(int component);
119 // Width of a component in bytes.
120 int GetComponentWidth(int component);
122 // Height of a component.
123 int GetComponentHeight(int component);
[all...]
/external/chromium_org/third_party/libyuv/include/libyuv/
H A Dmjpeg_decoder.h104 // Sample factors of the n-th component.
105 int GetHorizSampFactor(int component);
107 int GetVertSampFactor(int component);
109 int GetHorizSubSampFactor(int component);
111 int GetVertSubSampFactor(int component);
117 int GetComponentScanlinesPerImcuRow(int component);
119 // Width of a component in bytes.
120 int GetComponentWidth(int component);
122 // Height of a component.
123 int GetComponentHeight(int component);
[all...]
/external/libyuv/files/include/libyuv/
H A Dmjpeg_decoder.h81 // 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/
H A Dcontext.c14 char *(component[4]); member in struct:__anon24634
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[
[all...]
/external/qemu/distrib/libselinux/src/
H A Dcontext.c14 char *(component[4]); member in struct:__anon29345
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[
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/
H A Dinterface_dependency_resolver.py66 def resolve_dependencies(self, definitions, component):
84 component:
89 A dictionary whose key is component and value is IdlDefinitions
115 component,
124 if component not in referenced_definitions:
128 component,
130 component))
132 resolved_definitions[component].update(referenced_definitions[component])
136 def merge_interface_dependencies(definitions, component, target_interfac
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebRTCStatsRequest.cpp69 const WebMediaStreamTrack WebRTCStatsRequest::component() const function in class:blink::WebRTCStatsRequest
71 return WebMediaStreamTrack(m_private->component());
/external/deqp/framework/randomshaders/
H A DrsgVariableValue.cpp63 float aMin = a.component(ndx).getMin().asFloat();
64 float aMax = a.component(ndx).getMax().asFloat();
65 float bMin = b.component(ndx).getMin().asFloat();
66 float bMax = b.component(ndx).getMax().asFloat();
78 int aMin = a.component(ndx).getMin().asInt();
79 int aMax = a.component(ndx).getMax().asInt();
80 int bMin = b.component(ndx).getMin().asInt();
81 int bMax = b.component(ndx).getMax().asInt();
91 bool aMin = a.component(ndx).getMin().asBool();
92 bool aMax = a.component(nd
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DPageRuleCollector.cpp89 for (const CSSSelector* component = selector; component; component = component->tagHistory()) {
90 if (component->match() == CSSSelector::Tag) {
91 const AtomicString& localName = component->tagQName().localName();
96 CSSSelector::PseudoType pseudoType = component->pseudoType();

Completed in 826 milliseconds

1234567891011>>