Searched defs:component (Results 201 - 225 of 255) sorted by relevance

1234567891011

/external/chromium_org/chrome/installer/util/
H A Dshell_util.cc1730 // There is only one component (i.e. the suffixed appid) in this case, but it
1741 // Find the maximum numbers of characters allowed in each component
1742 // (accounting for the dots added between each component).
1761 const base::string16& component = *it; local
1762 DCHECK(!component.empty());
1763 if (component.length() > max_component_length) {
1764 // Append a shortened version of this component. Cut in the middle to try
1765 // to avoid losing the unique parts of this component (which are usually
1767 app_id.append(component.c_str(), 0, max_component_length / 2);
1768 app_id.append(component
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorCSSAgent.cpp835 static bool extractRangeComponent(ErrorString* errorString, const RefPtr<JSONObject>& range, const String& component, unsigned& result) argument
838 if (!range->getNumber(component, &parsedValue) || parsedValue < 0) {
839 *errorString = "range." + component + " must be a non-negative integer";
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dp2ptransportchannel_unittest.cc317 int component,
323 "test content name", component, NULL, GetAllocator(endpoint));
669 LOG(LS_INFO) << "Candidate(" << data->channel->component() << "->"
670 << rch->component() << "): " << c.type() << ", " << c.protocol()
315 CreateChannel( int endpoint, int component, const std::string& local_ice_ufrag, const std::string& local_ice_pwd, const std::string& remote_ice_ufrag, const std::string& remote_ice_pwd) argument
H A Dsession.cc71 TransportChannel* TransportProxy::GetChannel(int component) { argument
73 return GetChannelProxy(component);
77 const std::string& name, int component) {
79 ASSERT(GetChannel(component) == NULL);
80 ASSERT(!transport_->get()->HasChannel(component));
84 new TransportChannelProxy(content_name(), name, component);
85 channels_[component] = channel;
90 SetupChannelProxy_w(component, channel);
92 GetOrCreateChannelProxyImpl_w(component);
97 bool TransportProxy::HasChannel(int component) { argument
76 CreateChannel( const std::string& name, int component) argument
101 DestroyChannel(int component) argument
160 GetChannelNameFromComponent( int component, std::string* channel_name) const argument
199 GetOrCreateChannelProxyImpl( int component) argument
205 GetOrCreateChannelProxyImpl_w( int component) argument
215 SetupChannelProxy( int component, TransportChannelProxy* transproxy) argument
221 SetupChannelProxy_w( int component, TransportChannelProxy* transproxy) argument
524 CreateChannel(const std::string& content_name, const std::string& channel_name, int component) argument
534 GetChannel(const std::string& content_name, int component) argument
543 DestroyChannel(const std::string& content_name, int component) argument
[all...]
H A Dsession_unittest.cc162 // TODO: Use the component id instead of the channel name to
593 int component,
597 : PortAllocatorSession(content_name, component, ice_ufrag, ice_pwd, 0),
666 int component,
670 return new TestPortAllocatorSession(content_name, component,
972 int component) const {
975 session->GetChannel(content_name, component);
976 return channel != NULL && (component == channel->component());
980 int component) cons
592 TestPortAllocatorSession(const std::string& content_name, int component, const std::string& ice_ufrag, const std::string& ice_pwd, const int port_offset) argument
664 CreateSessionInternal( const std::string& content_name, int component, const std::string& ice_ufrag, const std::string& ice_pwd) argument
[all...]
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dmediasession.cc1833 int component, MediaType media_type, std::string* channel_name) {
1835 if (component == ICE_CANDIDATE_COMPONENT_RTP) {
1838 } else if (component == ICE_CANDIDATE_COMPONENT_RTCP) {
1843 if (component == ICE_CANDIDATE_COMPONENT_RTP) {
1846 } else if (component == ICE_CANDIDATE_COMPONENT_RTCP) {
1851 if (component == ICE_CANDIDATE_COMPONENT_RTP) {
1854 } else if (component == ICE_CANDIDATE_COMPONENT_RTCP) {
1864 const std::string& channel_name, int* component) {
1868 *component = ICE_CANDIDATE_COMPONENT_RTP;
1873 *component
1832 GetMediaChannelNameFromComponent( int component, MediaType media_type, std::string* channel_name) argument
1863 GetMediaComponentFromChannelName( const std::string& channel_name, int* component) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dir_to_mesa.cpp453 /* If there is another enabled component in the destination that is
491 * component and another value to the \c y component.
511 const unsigned component = (op == OPCODE_SIN) ? 0 : 1; local
512 const unsigned scs_mask = (1U << component);
518 /* If there are compnents in the destination that differ from the component
532 /* The source swizzle specified which component of the source generates
533 * sine / cosine for the current component in the destination. The SCS
534 * instruction requires that this value be swizzle to the X component.
536 * the X component
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkXfermode.cpp987 char component = kComponents[i]; local
988 fsBuilder->codeAppendf("\t\tif (2.0 * %s.%c <= %s.a) {\n", src, component, src);
989 fsBuilder->codeAppendf("\t\t\t%s.%c = 2.0 * %s.%c * %s.%c;\n", final, component, src, component, dst, component);
992 final, component, src, dst, dst, dst, component, src, src, component);
999 // Does one component of color-dodge
1004 const char component) {
1000 ColorDodgeComponent(GrGLFragmentShaderBuilder* fsBuilder, const char* final, const char* src, const char* dst, const char component) argument
1024 ColorBurnComponent(GrGLFragmentShaderBuilder* fsBuilder, const char* final, const char* src, const char* dst, const char component) argument
1045 SoftLightComponentPosDstAlpha(GrGLFragmentShaderBuilder* fsBuilder, const char* final, const char* src, const char* dst, const char component) argument
[all...]
/external/chromium_org/ui/aura/gestures/
H A Dgesture_recognizer_unittest.cc4080 ui::LatencyInfo::LatencyComponent component; local
4084 ui::INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT, 0, &component));
4085 EXPECT_EQ(time_original, component.event_time);
4088 ui::INPUT_EVENT_LATENCY_UI_COMPONENT, 0, &component));
4089 EXPECT_EQ(time_ui, component.event_time);
4092 ui::INPUT_EVENT_LATENCY_ACKED_TOUCH_COMPONENT, 0, &component));
4093 EXPECT_EQ(time_acked, component.event_time);
/external/chromium_org/ui/views/widget/
H A Dwidget.cc1175 int component = non_client_view_ ? local
1179 if (movement_disabled_ && (component == HTCAPTION || component == HTSYSMENU))
1182 return component;
/external/libpng/
H A Dpngread.c2159 /* 255 is used here for the component values for consistency with the code
2567 * requires inverting the encoding for each component. The input
3450 png_uint_32 component = inrow[c]; local
3452 if (alpha < 255) /* else just use component */
3454 /* This is PNG_OPTIMIZED_ALPHA, the component value
3460 component *= 257*255; /* =65535 */
3461 component += (255-alpha)*png_sRGB_table[outrow[c]];
3463 /* So 'component' is scaled by 255*65535 and is
3467 component = PNG_sRGB_FROM_LINEAR(component);
3608 png_uint_32 component = inrow[0]; local
3653 png_uint_32 component = inrow[0]; local
3742 png_uint_32 component = inrow[0]; local
[all...]
H A Dpngrtran.c1517 * component this will also happen after PNG_COMPOSE and so the background
1890 int component = png_ptr->palette[i].red; local
1892 component >>= shift;
1893 png_ptr->palette[i].red = (png_byte)component;
1900 int component = png_ptr->palette[i].green; local
1902 component >>= shift;
1903 png_ptr->palette[i].green = (png_byte)component;
1910 int component = png_ptr->palette[i].blue; local
1912 component >>= shift;
1913 png_ptr->palette[i].blue = (png_byte)component;
[all...]
/external/mesa3d/src/mesa/program/
H A Dir_to_mesa.cpp453 /* If there is another enabled component in the destination that is
491 * component and another value to the \c y component.
511 const unsigned component = (op == OPCODE_SIN) ? 0 : 1; local
512 const unsigned scs_mask = (1U << component);
518 /* If there are compnents in the destination that differ from the component
532 /* The source swizzle specified which component of the source generates
533 * sine / cosine for the current component in the destination. The SCS
534 * instruction requires that this value be swizzle to the X component.
536 * the X component
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DGameObjectFactory.java260 ComponentClass component = componentTypes[x];
261 mComponentPools.add(new GameComponentPool(component.type, component.poolSize));
287 GameComponent component = null;
289 component = pool.allocate();
291 return component;
294 protected void releaseComponent(GameComponent component) { argument
295 GameComponentPool pool = getComponentPool(component.getClass());
298 component.reset();
299 component
[all...]
/external/skia/src/core/
H A DSkXfermode.cpp986 char component = kComponents[i]; local
987 builder->fsCodeAppendf("\t\tif (2.0 * %s.%c <= %s.a) {\n", src, component, src);
988 builder->fsCodeAppendf("\t\t\t%s.%c = 2.0 * %s.%c * %s.%c;\n", final, component, src, component, dst, component);
991 final, component, src, dst, dst, dst, component, src, src, component);
998 // Does one component of color-dodge
1003 const char component) {
999 ColorDodgeComponent(GrGLShaderBuilder* builder, const char* final, const char* src, const char* dst, const char component) argument
1023 ColorBurnComponent(GrGLShaderBuilder* builder, const char* final, const char* src, const char* dst, const char component) argument
1044 SoftLightComponentPosDstAlpha(GrGLShaderBuilder* builder, const char* final, const char* src, const char* dst, const char component) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_glsl_to_tgsi.cpp726 /* If there is another enabled component in the destination that is
775 * destination, it writes one value to the \c x component and another value to
776 * the \c y component.
796 const unsigned component = (op == TGSI_OPCODE_SIN) ? 0 : 1; local
797 const unsigned scs_mask = (1U << component);
803 /* If there are compnents in the destination that differ from the component
817 /* The source swizzle specified which component of the source generates
818 * sine / cosine for the current component in the destination. The SCS
819 * instruction requires that this value be swizzle to the X component.
821 * the X component
[all...]
/external/mesa3d/src/mesa/state_tracker/
H A Dst_glsl_to_tgsi.cpp726 /* If there is another enabled component in the destination that is
775 * destination, it writes one value to the \c x component and another value to
776 * the \c y component.
796 const unsigned component = (op == TGSI_OPCODE_SIN) ? 0 : 1; local
797 const unsigned scs_mask = (1U << component);
803 /* If there are compnents in the destination that differ from the component
817 /* The source swizzle specified which component of the source generates
818 * sine / cosine for the current component in the destination. The SCS
819 * instruction requires that this value be swizzle to the X component.
821 * the X component
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.ds_1.2.1.R36x_v20100803.jar ... apache/felix/ org/apache/felix/scr/ org/apache/felix/scr/Component.class Component.java package org.apache. ...
H A Dorg.mortbay.jetty.util_6.1.23.v201004211559.jar ... public boolean isFailed () public void addLifeCycleListener (org.mortbay.component.LifeCycle$Listener) org.mortbay.component. ...
/external/chromium_org/ui/views/win/
H A Dhwnd_message_handler.cc1753 int component = delegate_->GetNonClientComponent(gfx::Point(temp)); local
1754 if (component != HTNOWHERE)
1755 return component;
/external/chromium_org/v8/src/
H A Druntime.cc5017 Handle<Object> component) {
5018 if (component->IsUndefined()) return isolate->factory()->undefined_value();
5020 Handle<FunctionTemplateInfo>::cast(component);
10876 AccessorComponent component = flag == 0 ? ACCESSOR_GETTER : ACCESSOR_SETTER;
10881 JSObject::GetAccessor(Handle<JSObject>::cast(receiver), name, component));
5016 InstantiateAccessorComponent(Isolate* isolate, Handle<Object> component) argument
H A Dobjects.cc6259 AccessorComponent component) {
6292 return handle(AccessorPair::cast(element)->GetComponent(component),
6324 AccessorPair::cast(*maybe_pair)->GetComponent(component),
6807 AccessorComponent component,
6853 if (pair->get(component) != *accessor) {
6878 Object* current = Handle<AccessorPair>::cast(maybe_pair)->get(component);
6893 pair->set(component, *accessor);
7901 Object* AccessorPair::GetComponent(AccessorComponent component) { argument
7902 Object* accessor = get(component);
6257 GetAccessor(Handle<JSObject> object, Handle<Name> name, AccessorComponent component) argument
6805 TransitionToAccessorProperty(Handle<Map> map, Handle<Name> name, AccessorComponent component, Handle<Object> accessor, PropertyAttributes attributes) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/121/1/.cp/lib/
H A Dapitooling-ant.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Djdepend-2.9.jarMETA-INF/ META-INF/MANIFEST.MF jdepend/ jdepend/framework/ jdepend/framework/AbstractParser.class AbstractParser. ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100/
H A Djunit.jar ... addGrid (java.awt.Panel, java.awt.Component, int, int, int, int, double, int) java.awt. ...

Completed in 332 milliseconds

1234567891011