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

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
transportchannel.h 58 explicit TransportChannel(const std::string& content_name, int component)
60 component_(component),
69 int component() const { return component_; } function in class:cricket::TransportChannel
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_wm_pass0.c 81 GLuint component,
89 c->pass0_fp_reg[file][idx][component] = ref;
96 GLuint component,
99 c->pass0_fp_reg[file][idx][component] = src_ref;
169 GLuint component )
171 const struct brw_wm_ref *ref = c->pass0_fp_reg[file][idx][component];
183 ref = get_param_ref(c, &c->fp->program.Base.LocalParams[idx][component]);
187 ref = get_param_ref(c, &c->env_param[idx][component]);
207 ref = get_const_ref(c, &plist->ParameterValues[idx][component].f);
214 ref = get_param_ref(c, &plist->ParameterValues[idx][component].f )
267 GLuint component = GET_SWZ(src.Swizzle,i); local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_wm_pass0.c 81 GLuint component,
89 c->pass0_fp_reg[file][idx][component] = ref;
96 GLuint component,
99 c->pass0_fp_reg[file][idx][component] = src_ref;
169 GLuint component )
171 const struct brw_wm_ref *ref = c->pass0_fp_reg[file][idx][component];
183 ref = get_param_ref(c, &c->fp->program.Base.LocalParams[idx][component]);
187 ref = get_param_ref(c, &c->env_param[idx][component]);
207 ref = get_const_ref(c, &plist->ParameterValues[idx][component].f);
214 ref = get_param_ref(c, &plist->ParameterValues[idx][component].f )
267 GLuint component = GET_SWZ(src.Swizzle,i); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
MediaStreamTrack.cpp 41 PassRefPtr<MediaStreamTrack> MediaStreamTrack::create(ScriptExecutionContext* context, MediaStreamComponent* component)
43 RefPtr<MediaStreamTrack> track = adoptRef(new MediaStreamTrack(context, component));
48 MediaStreamTrack::MediaStreamTrack(ScriptExecutionContext* context, MediaStreamComponent* component)
51 , m_component(component)
165 MediaStreamComponent* MediaStreamTrack::component() function in class:WebCore::MediaStreamTrack
RTCStatsRequestImpl.h 48 virtual MediaStreamComponent* component() OVERRIDE;
  /external/chromium_org/tools/win/sizeviewer/
sizeviewer.py 20 def FindNode(node, component):
22 if child['name'] == component:
30 for index, component in enumerate(components):
31 data = FindNode(node, component)
33 data = { 'name': component }
  /external/llvm/utils/
llvm-compilers-check 163 for component in components:
164 component = component.rstrip("2")
165 compsrc = src + "/" + component
176 # back through path components until it finds unique component names
179 # Find the number of common starting characters in the last component
185 # Find a unique component of each path.
277 def execute(self, command, execdir, env, component):
278 prefix = self.component_abbrev[component.replace("-", "_")]
447 for component in components
    [all...]
  /external/chromium_org/chrome/browser/themes/
theme_properties.cc 140 for (std::vector<std::string>::iterator component(split.begin());
141 component != split.end(); ++component) {
142 if (LowerCaseEqualsASCII(*component, kAlignmentTop))
144 else if (LowerCaseEqualsASCII(*component, kAlignmentBottom))
146 else if (LowerCaseEqualsASCII(*component, kAlignmentLeft))
148 else if (LowerCaseEqualsASCII(*component, kAlignmentRight))
156 const char* component = tiling.c_str(); local
158 if (base::strcasecmp(component, kTilingRepeatX) == 0)
160 if (base::strcasecmp(component, kTilingRepeatY) == 0
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_util.c 54 unsigned component )
56 switch( component ) {
75 unsigned component )
79 component );
86 unsigned component )
88 switch( component ) {
109 unsigned component )
265 /* Note that the SHADOW variants use the Z component too */
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_util.c 54 unsigned component )
56 switch( component ) {
75 unsigned component )
79 component );
86 unsigned component )
88 switch( component ) {
109 unsigned component )
265 /* Note that the SHADOW variants use the Z component too */
  /frameworks/av/media/libstagefright/omx/
OMXMaster.cpp 84 ALOGE("A component of name '%s' already exists, ignoring this one.",
125 OMX_COMPONENTTYPE **component) {
128 *component = NULL;
138 plugin->makeComponentInstance(name, callbacks, appData, component);
144 mPluginByInstance.add(*component, plugin);
150 OMX_COMPONENTTYPE *component) {
153 ssize_t index = mPluginByInstance.indexOfKey(component);
162 return plugin->destroyComponentInstance(component);
  /external/libyuv/files/source/
mjpeg_decoder.cc 198 // Sample factors of the n-th component.
199 int MJpegDecoder::GetHorizSampFactor(int component) {
200 return decompress_struct_->comp_info[component].h_samp_factor;
203 int MJpegDecoder::GetVertSampFactor(int component) {
204 return decompress_struct_->comp_info[component].v_samp_factor;
207 int MJpegDecoder::GetHorizSubSampFactor(int component) {
209 GetHorizSampFactor(component);
212 int MJpegDecoder::GetVertSubSampFactor(int component) {
214 GetVertSampFactor(component);
221 int MJpegDecoder::GetComponentScanlinesPerImcuRow(int component) {
    [all...]
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
ICalendar.java 56 * A component within an iCalendar (VEVENT, VTODO, VJOURNAL, VFEEBUSY,
59 public static class Component {
74 private final Component mParent; // see if we can get rid of this
75 private LinkedList<Component> mChildren = null;
80 * Creates a new component with the provided name.
81 * @param name The name of the component.
83 public Component(String name, Component parent) {
89 * Returns the name of the component.
90 * @return The name of the component
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/quartz/
SDL_QuartzGL.m 251 GLint component;
254 glGetIntegerv (GL_RED_BITS, &component); bits += component;
255 glGetIntegerv (GL_GREEN_BITS,&component); bits += component;
256 glGetIntegerv (GL_BLUE_BITS, &component); bits += component;
257 glGetIntegerv (GL_ALPHA_BITS, &component); bits += component;
  /external/chromium/chrome/browser/profiles/
profile_dependency_manager.cc 18 ProfileKeyedServiceFactory* component) {
19 all_components_.push_back(component);
24 ProfileKeyedServiceFactory* component) {
27 component),
30 // Remove all dependency edges that contain this component.
36 if (temp->first == component || temp->second == component)
  /external/chromium_org/third_party/skia/include/gpu/
GrColor.h 23 // shift amount to assign a component to a GrColor int
48 // extract a component (byte) from a GrColor int
57 * each component==255 and alpha == 0 to be "illegal"
87 static inline char GrColorComponentFlagToChar(GrColorComponentFlags component) {
88 GrAssert(GrIsPow2(component));
89 switch (component) {
99 GrCrash("Invalid color component flag.");
  /external/skia/include/gpu/
GrColor.h 23 // shift amount to assign a component to a GrColor int
48 // extract a component (byte) from a GrColor int
57 * each component==255 and alpha == 0 to be "illegal"
87 static inline char GrColorComponentFlagToChar(GrColorComponentFlags component) {
88 GrAssert(GrIsPow2(component));
89 switch (component) {
99 GrCrash("Invalid color component flag.");
  /device/asus/flo/camera/mm-image-codec/qomx_core/
qomx_core.h 51 * @comp_name: name of the component
59 /** omx_core_component_t: OMX Component structure
60 * @handle: array of number of instances of the component
61 * @roles: array of roles played by the component
62 * @comp_info: Component information such as libname,
63 * component name
64 * @open: Is the component active
66 * @obj_ptr: Function ptr to get the instance of the component
69 * the component
73 char *roles[OMX_CORE_MAX_ROLES]; //Roles played by the component
91 omx_core_component_t component[OMX_COMP_MAX_NUM]; \/\/Array of pointers to components member in struct:_omx_core_t
    [all...]
  /external/chromium_org/components/browser_context_keyed_service/
browser_context_dependency_manager.cc 27 BrowserContextKeyedBaseFactory* component) {
28 dependency_graph_.AddNode(component);
32 BrowserContextKeyedBaseFactory* component) {
33 dependency_graph_.RemoveNode(component);
  /external/chromium_org/remoting/client/plugin/
pepper_port_allocator.h 33 int component,
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
WebMediaStream.cpp 146 MediaStreamComponent* component = audioTracks[i]; local
147 audio.append(component);
150 MediaStreamComponent* component = videoTracks[i]; local
151 video.append(component);
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
DOMFilePath.h 58 // Returns a new path by appending a separator and the supplied path component to the path.
59 static String append(const String& path, const String& component);
  /external/chromium_org/third_party/WebKit/public/platform/
WebRTCStatsRequest.h 88 // The stream() and component() accessors give the two pieces of information
93 WEBKIT_EXPORT const WebMediaStreamTrack component() const;
  /external/chromium_org/third_party/libjingle/source/talk/p2p/client/
fakeportallocator.h 26 int component,
29 : PortAllocatorSession(content_name, component, ice_ufrag, ice_pwd,
92 int component,
96 worker_thread_, factory_, content_name, component, ice_ufrag, ice_pwd);
  /external/chromium_org/ui/base/
latency_info.cc 43 void LatencyInfo::AddLatencyNumber(LatencyComponentType component,
46 AddLatencyNumberWithTimestamp(component, id, component_sequence_number,
50 void LatencyInfo::AddLatencyNumberWithTimestamp(LatencyComponentType component,
55 LatencyMap::key_type key = std::make_pair(component, id);

Completed in 851 milliseconds

1 2 34 5 6 7 8 91011>>