Searched defs:composite (Results 1 - 25 of 33) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGFECompositeElement.cpp130 FEComposite* composite = static_cast<FEComposite*>(effect); local
132 return composite->setOperation(svgOperatorCurrentValue());
134 return composite->setK1(k1CurrentValue());
136 return composite->setK2(k2CurrentValue());
138 return composite->setK3(k3CurrentValue());
140 return composite->setK4(k4CurrentValue());
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
H A DGridLayoutFactory.java30 private GridLayoutFactory(Composite composite, GridLayout layout) { argument
32 composite.setLayout(m_layout);
35 public static GridLayoutFactory create(Composite composite) { argument
36 return new GridLayoutFactory(composite, new GridLayout());
39 public static GridLayoutFactory modify(Composite composite) { argument
40 Layout layout = composite.getLayout();
42 return new GridLayoutFactory(composite, (GridLayout) layout);
44 return create(composite);
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DKeyframeAnimationEffect.h60 void setComposite(AnimationEffect::CompositeOperation composite) { m_composite = composite; } argument
61 AnimationEffect::CompositeOperation composite() const { return m_composite; } function in class:WebCore::Keyframe
H A DKeyframeAnimationEffect.cpp202 new PropertySpecificKeyframe(keyframe->offset(), keyframe->propertyValue(property), keyframe->composite())));
214 KeyframeAnimationEffect::PropertySpecificKeyframe::PropertySpecificKeyframe(double offset, const AnimatableValue* value, CompositeOperation composite) argument
216 , m_value(composite == AnimationEffect::CompositeReplace ?
/external/chromium_org/webkit/support/
H A Dweb_layer_tree_view_impl_for_testing.cc131 void WebLayerTreeViewImplForTesting::composite() { function in class:webkit::WebLayerTreeViewImplForTesting
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
H A DTransparencyWin.cpp155 // This should be false, since calling composite() is mandatory.
159 void TransparencyWin::composite() function in class:WebCore::TransparencyWin
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
H A DCSpinner.java317 protected Point computeSize(Composite composite, int wHint, int hHint, boolean flushCache) { argument
334 protected void layout(Composite composite, boolean flushCache) { argument
335 Rectangle cRect = composite.getClientArea();
368 protected Point computeSize(Composite composite, int wHint, int hHint, boolean flushCache) { argument
385 protected void layout(Composite composite, boolean flushCache) { argument
386 Rectangle cRect = composite.getClientArea();
419 protected Point computeSize(Composite composite, int wHint, int hHint, boolean flushCache) { argument
434 protected void layout(Composite composite, boolean flushCache) { argument
435 Rectangle cRect = composite.getClientArea();
467 protected Point computeSize(Composite composite, in argument
484 layout(Composite composite, boolean flushCache) argument
509 computeSize(Composite composite, int wHint, int hHint, boolean flushCache) argument
526 layout(Composite composite, boolean flushCache) argument
[all...]
/external/chromium_org/content/renderer/
H A Drender_widget_fullscreen_pepper.cc192 virtual void composite(bool finish) { function in class:content::__anon8089::PepperWidget
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DFillLayer.h78 CompositeOperator composite() const { return static_cast<CompositeOperator>(m_composite); } function in class:WebCore::FillLayer
/external/chromium_org/third_party/skia/src/animator/
H A DSkDrawExtraPathEffect.cpp374 SkPathEffect* composite = new SkComposePathEffect(e1, e2); local
377 return composite;
/external/skia/src/animator/
H A DSkDrawExtraPathEffect.cpp374 SkPathEffect* composite = new SkComposePathEffect(e1, e2); local
377 return composite;
/external/chromium_org/third_party/icu/source/tools/gennorm2/
H A Dn2builder.cpp94 CompositionPair(UChar32 t, UChar32 c) : trail(t), composite(c) {}
95 UChar32 trail, composite; member in struct:CompositionPair
128 UVector32 *compositions; // (trail, composite) pairs
352 // Insert (trail, composite) pair into compositions list for the lead character.
402 return pairs[i].composite;
553 void setComposite(UChar32 composite, int32_t combMarkIndex) { argument
554 fArray[fLastStarterIndex]=composite<<8;
555 // Remove the combining mark that contributed to the composite.
623 return FALSE; // the composite does not combine further
690 // 22 bits for the composite characte
[all...]
/external/chromium_org/cc/trees/
H A Dlayer_tree_host_common_unittest.cc668 // grand_child should receive the non-flattened composite transform.
787 // surface's subtree is drawn must be removed from the composite transform.
1144 // (10,10). matrix "A" is the composite layer transform used in all layers,
1147 // is the composite replica transform used in all replica layers.
1596 gfx::Transform composite; local
1597 composite.ConcatTransform(translate);
1598 composite.ConcatTransform(scale);
1599 composite.ConcatTransform(rotate);
1603 root.get(), root->bounds(), composite, &render_surface_layer_list);
1606 EXPECT_EQ(composite, roo
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Dnormalizer2impl.cpp638 * Bits 21..1 composite character
639 * Bit 0 set if the composite is a forward-combining starter
715 UChar32 composite=compositeAndFwd>>1; local
717 addComposites(getCompositionsListForComposite(getNorm16(composite)), set);
719 set.add(composite);
805 UChar32 composite=compositeAndFwd>>1; local
807 // Replace the starter with the composite, remove the combining mark.
810 if(U_IS_SUPPLEMENTARY(composite)) {
812 starter[0]=U16_LEAD(composite);
813 starter[1]=U16_TRAIL(composite);
[all...]
/external/icu4c/common/
H A Dnormalizer2impl.cpp713 * Bits 21..1 composite character
714 * Bit 0 set if the composite is a forward-combining starter
790 UChar32 composite=compositeAndFwd>>1; local
792 addComposites(getCompositionsListForComposite(getNorm16(composite)), set);
794 set.add(composite);
880 UChar32 composite=compositeAndFwd>>1; local
882 // Replace the starter with the composite, remove the combining mark.
885 if(U_IS_SUPPLEMENTARY(composite)) {
887 starter[0]=U16_LEAD(composite);
888 starter[1]=U16_TRAIL(composite);
[all...]
/external/icu4c/tools/gennorm2/
H A Dn2builder.cpp94 CompositionPair(UChar32 t, UChar32 c) : trail(t), composite(c) {}
95 UChar32 trail, composite; member in struct:CompositionPair
129 UVector32 *compositions; // (trail, composite) pairs
377 // Insert (trail, composite) pair into compositions list for the lead character.
427 return pairs[i].composite;
584 void setComposite(UChar32 composite, int32_t combMarkIndex) { argument
585 fArray[fLastStarterIndex]=composite<<8;
586 // Remove the combining mark that contributed to the composite.
662 return FALSE; // the composite does not combine further
768 // 22 bits for the composite characte
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DGrammar.java300 /** If this grammar is part of a larger composite grammar via delegate
301 * statement, then this points at the composite. The composite holds
304 public CompositeGrammar composite; field in class:Grammar
515 public Grammar(Tool tool, String fileName, CompositeGrammar composite) { argument
516 this.composite = composite;
519 // ensure we have the composite set to something
520 if ( composite.delegateGrammarTreeRoot==null ) {
521 composite
[all...]
/external/icu4c/test/cintltst/
H A Dcucdtst.c1091 UChar32 a, b, composite; local
1096 composite=unorm2_composePair(nfc, a, b);
1097 if(composite!=c) {
1099 (long)c, (long)a, (long)b, (long)composite);
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DSerializedScriptValue.cpp279 // information used to reconstruct composite types.
786 v8::Handle<v8::Value> composite() { return m_composite; } function in class:WebCore::__anon10143::Serializer::StateBase
788 // Serializes (a part of) the current composite and returns
798 StateBase(v8::Handle<v8::Value> composite, StateBase* next) argument
799 : m_composite(composite)
827 v8::Handle<T> composite() { return v8::Handle<T>::Cast(StateBase::composite()); } function in class:WebCore::__anon10143::Serializer::State
830 State(v8::Handle<T> composite, StateBase* next) argument
831 : StateBase(composite, next)
863 bool hasStringProperty = propertyName->IsString() && composite()
2031 v8::Local<v8::Value> composite; local
2061 v8::Local<v8::Value> composite; local
2076 v8::Local<v8::Value> composite; local
2091 v8::Local<v8::Value> composite; local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.forms_3.5.2.r36_v20100702.jar ... void run () org.eclipse.swt.widgets.Composite parent } org/eclipse/ui/forms/DetailsPart$PageBag.class ...
H A Dorg.eclipse.ui.ide_3.6.2.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 560 milliseconds

12