Searched refs:composite (Results 26 - 50 of 89) sorted by path

1234

/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
H A DDbg.stg67 ((Profiler)dbg).examineRuleMemoization(input, ruleIndex, stopIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
74 ((Profiler)dbg).memoize(input, ruleIndex, ruleStartIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
H A DJava.stg240 public String[] getTokenNames() { return <grammar.composite.rootGrammar.recognizerName>.tokenNames; }
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
H A DDbg.stg81 [(Profiler)dbg examineRuleMemoization:input, ruleIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames objectAtIndex:ruleIndex];
86 [((Profiler)dbg) memoize:input RuleIndex:ruleIndex StartIndex:ruleStartIndex [<grammar.composite.rootGrammar.recognizerName> ruleNames[ruleIndex]];
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
H A DDbg.stg103 ((Profiler)self._dbg).examineRuleMemoization(input, ruleIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
111 ((Profiler)self._dbg).memoize(input, ruleIndex, ruleStartIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
H A DPython.stg231 from <grammar.composite.rootGrammar.recognizerName> import tokenNames<\n>
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Ruby/
H A DRuby.stg222 require '<grammar.composite.rootGrammar.recognizerName>'
223 include <grammar.composite.rootGrammar.name>::TokenData<\n><\n>
1455 <if(grammar.grammarIsRoot)><grammar.name><else><grammar.composite.rootGrammar.name><endif>::<if(TREE_PARSER)>TreeParser<elseif(PARSER)>Parser<else>Lexer<endif>
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DTestCompositeGrammars.java211 CompositeGrammar composite = new CompositeGrammar();
212 Grammar g = new Grammar(antlr,tmpdir+"/M.g",composite);
213 composite.setDelegationRoot(g);
215 g.composite.assignTokenTypes();
222 realElements(g.composite.tokenIDToTypeMap).toString());
223 assertEquals(expectedStringLiteralToTypeMap, g.composite.stringLiteralToTypeMap.toString());
225 realElements(g.composite.typeToTokenList).toString());
249 CompositeGrammar composite = new CompositeGrammar();
250 Grammar g = new Grammar(antlr,tmpdir+"/M.g",composite);
251 composite
[all...]
H A DTestSymbolDefinitions.java786 CompositeGrammar composite = new CompositeGrammar();
787 Grammar g = new Grammar(antlr,tmpdir+"/B.g",composite);
789 g.composite.assignTokenTypes();
796 realElements(g.composite.tokenIDToTypeMap).toString());
797 assertEquals(expectedStringLiteralToTypeMap, g.composite.stringLiteralToTypeMap.toString());
799 realElements(g.composite.typeToTokenList).toString());
818 CompositeGrammar composite = new CompositeGrammar();
819 Grammar g = new Grammar(antlr,tmpdir+"/B.g",composite);
821 g.composite.assignTokenTypes();
828 realElements(g.composite
[all...]
/external/chromium_org/cc/trees/
H A Dlayer_tree_host_common_unittest.cc594 // surface's subtree is drawn must be removed from the composite transform.
758 // (10,10). matrix "A" is the composite layer transform used in all layers,
759 // Matrix "R" is the composite replica transform used in all replica layers.
1201 gfx::Transform composite; local
1202 composite.ConcatTransform(translate);
1203 composite.ConcatTransform(scale);
1204 composite.ConcatTransform(rotate);
1208 root.get(), root->bounds(), composite, &render_surface_layer_list);
1211 EXPECT_EQ(composite, root->draw_properties().target_space_transform);
1212 EXPECT_EQ(composite, chil
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DSerializedScriptValue.cpp339 // information used to reconstruct composite types.
1015 v8::Handle<v8::Value> composite() { return m_composite; } function in class:blink::__anon10905::Serializer::StateBase
1017 // Serializes (a part of) the current composite and returns
1023 StateBase(v8::Handle<v8::Value> composite, StateBase* next) argument
1024 : m_composite(composite)
1052 v8::Handle<T> composite() { return v8::Handle<T>::Cast(StateBase::composite()); } function in class:blink::__anon10905::Serializer::State
1055 State(v8::Handle<T> composite, StateBase* next) argument
1056 : StateBase(composite, next)
1083 bool hasStringProperty = propertyName->IsString() && composite()
2624 v8::Local<v8::Value> composite; variable
2640 v8::Local<v8::Value> composite; variable
2656 v8::Local<v8::Value> composite; variable
[all...]
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DCompositorAnimations.cpp103 if (frames[j]->composite() != AnimationEffect::CompositeReplace)
152 if (frame->composite() != AnimationEffect::CompositeReplace || !frame->getAnimatableValue())
H A DKeyframe.h27 void setComposite(AnimationEffect::CompositeOperation composite) { m_composite = composite; } argument
28 AnimationEffect::CompositeOperation composite() const { return m_composite; } function in class:blink::Keyframe
58 AnimationEffect::CompositeOperation composite() const { return m_composite; } function in class:blink::Keyframe::PropertySpecificKeyframe
88 Keyframe(double offset, AnimationEffect::CompositeOperation composite, PassRefPtr<TimingFunction> easing) argument
90 , m_composite(composite)
H A DKeyframeEffectModel.cpp150 ASSERT(keyframes[0]->composite() == AnimationEffect::CompositeReplace);
152 ASSERT(keyframes[i + 1]->composite() == AnimationEffect::CompositeReplace);
170 if (keyframeVector[i]->composite() != AnimationEffect::CompositeReplace)
187 Keyframe::PropertySpecificKeyframe::PropertySpecificKeyframe(double offset, PassRefPtr<TimingFunction> easing, AnimationEffect::CompositeOperation composite) argument
190 , m_composite(composite)
H A DStringKeyframe.cpp48 return adoptPtrWillBeNoop(new PropertySpecificKeyframe(offset(), &easing(), propertyValue(property), composite()));
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableValueKeyframe.cpp36 return adoptPtrWillBeNoop(new PropertySpecificKeyframe(offset(), &easing(), propertyValue(property), composite()));
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSComputedStyleDeclaration.cpp1651 list->append(cssValuePool().createValue(currLayer->composite()));
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DBoxPainter.cpp453 CompositeOperator compositeOp = op == CompositeSourceOver ? bgLayer.composite() : op;
/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:blink::FillLayer
H A DRenderStyle.h645 CompositeOperator backgroundComposite() const { return static_cast<CompositeOperator>(m_background->background().composite()); }
659 CompositeOperator maskComposite() const { return static_cast<CompositeOperator>(rareNonInheritedData->m_mask.composite()); }
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGFECompositeElement.cpp112 FEComposite* composite = static_cast<FEComposite*>(effect); local
114 return composite->setOperation(m_svgOperator->currentValue()->enumValue());
116 return composite->setK1(m_k1->currentValue()->value());
118 return composite->setK2(m_k2->currentValue()->value());
120 return composite->setK3(m_k3->currentValue()->value());
122 return composite->setK4(m_k4->currentValue()->value());
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
H A DProgress.js145 * @param {!WebInspector.CompositeProgress} composite
148 WebInspector.SubProgress = function(composite, weight)
150 this._composite = composite;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DelementsPanel.css581 .sidebar-pane.composite {
585 .sidebar-pane.composite > .body {
589 .sidebar-pane.composite .metrics {
612 .sidebar-pane.composite .metrics-and-computed .sidebar-pane-toolbar,
613 .sidebar-pane.composite .metrics-and-styles .sidebar-pane-toolbar {
635 .sidebar-pane.composite .metrics-and-computed .sidebar-pane-toolbar {
641 .sidebar-pane.composite .platform-fonts .body {
646 .sidebar-pane.composite .platform-fonts .sidebar-separator {
650 .sidebar-pane.composite .platform-fonts .stats-section {
654 .sidebar-pane.composite
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DHeapTest.cpp4373 Persistent<IntWrapper> composite = IntWrapper::create(91); local
4380 newEntry.storedValue->value.add(composite, home);
4382 composite.clear();
/external/chromium_org/third_party/accessibility-audit/
H A Daxs_testing.js429 parent:["widget"]}, complementary:{namefrom:["author"], parent:["landmark"]}, composite:{"abstract":!0, childpresentational:!1, namefrom:["author"], parent:["widget"], properties:["aria-activedescendant"]}, contentinfo:{namefrom:["author"], parent:["landmark"]}, definition:{namefrom:["author"], parent:["section"]}, dialog:{namefrom:["author"], namerequired:!0, parent:["window"]}, directory:{namefrom:["contents", "author"], parent:["list"]}, document:{namefrom:[" author"], namerequired:!0, parent:["structure"],
430 properties:["aria-expanded"]}, form:{namefrom:["author"], parent:["landmark"]}, grid:{mustcontain:["row", "rowgroup"], namefrom:["author"], namerequired:!0, parent:["composite", "region"], properties:["aria-level", "aria-multiselectable", "aria-readonly"]}, gridcell:{namefrom:["contents", "author"], namerequired:!0, parent:["section", "widget"], properties:["aria-readonly", "aria-required", "aria-selected"]}, group:{namefrom:[" author"], parent:["section"], properties:["aria-activedescendant"]},
437 properties:["aria-expanded"]}, sectionhead:{"abstract":!0, namefrom:["contents", "author"], parent:["structure"], properties:["aria-expanded"]}, select:{"abstract":!0, namefrom:["author"], parent:["composite", "group", "input"]}, separator:{childpresentational:!0, namefrom:["author"], parent:["structure"], properties:["aria-expanded", "aria-orientation"]}, scrollbar:{childpresentational:!0, namefrom:["author"], namerequired:!1, parent:["input", "range"], requiredProperties:["aria-controls", "aria-orientation",
439 "aria-valuemin", "aria-valuenow"], properties:["aria-valuemax", "aria-valuemin", "aria-valuenow", "aria-required"]}, status:{parent:["region"]}, structure:{"abstract":!0, parent:["roletype"]}, tab:{namefrom:["contents", "author"], parent:["sectionhead", "widget"], properties:["aria-selected"]}, tablist:{mustcontain:["tab"], namefrom:["author"], parent:["composite", "directory"], properties:["aria-level"]}, tabpanel:{namefrom:["author"], namerequired:!0, parent:["region"]}, textbox:{namefrom:["author"],
/external/chromium_org/third_party/icu/source/common/
H A Dnormalizer2impl.cpp712 * Bits 21..1 composite character
713 * Bit 0 set if the composite is a forward-combining starter
789 UChar32 composite=compositeAndFwd>>1; local
791 addComposites(getCompositionsListForComposite(getNorm16(composite)), set);
793 set.add(composite);
879 UChar32 composite=compositeAndFwd>>1; local
881 // Replace the starter with the composite, remove the combining mark.
884 if(U_IS_SUPPLEMENTARY(composite)) {
886 starter[0]=U16_LEAD(composite);
887 starter[1]=U16_TRAIL(composite);
[all...]

Completed in 629 milliseconds

1234