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

1234

/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DGrammarSanity.java62 for (int i = 0; i < grammar.composite.ruleIndexToRuleList.size(); i++) {
63 Rule r = grammar.composite.ruleIndexToRuleList.elementAt(i);
H A DAssignTokenTypesBehavior.java132 grammar.composite.lexerRules.add(t.getText());
147 Grammar parent = grammar.composite.getDelegator(grammar);
H A DCompositeGrammar.java46 * We have to start out assuming a composite grammar situation as we can't
60 /** Used to assign state numbers; all grammars in composite share common
65 /** The NFA states in the NFA built from rules across grammars in composite.
176 // make sure new grammar shares this composite
177 delegate.composite = this;
383 //System.out.println("### createNFAs for composite; grammars: "+names);
/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...]
/external/icu/icu4c/source/common/
H A Dnormalizer2impl.cpp814 * Bits 21..1 composite character
815 * Bit 0 set if the composite is a forward-combining starter
891 UChar32 composite=compositeAndFwd>>1; local
893 addComposites(getCompositionsListForComposite(getNorm16(composite)), set);
895 set.add(composite);
981 UChar32 composite=compositeAndFwd>>1; local
983 // Replace the starter with the composite, remove the combining mark.
986 if(U_IS_SUPPLEMENTARY(composite)) {
988 starter[0]=U16_LEAD(composite);
989 starter[1]=U16_TRAIL(composite);
[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/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
H A DCSharp3Target.java86 Grammar rootGrammar = grammar.composite.getRootGrammar();
/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]);
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DStringKeyframe.cpp48 return adoptPtrWillBeNoop(new PropertySpecificKeyframe(offset(), &easing(), propertyValue(property), composite()));
H A DCompositorAnimations.cpp103 if (frames[j]->composite() != AnimationEffect::CompositeReplace)
152 if (frame->composite() != AnimationEffect::CompositeReplace || !frame->getAnimatableValue())
/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
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/icu/icu4c/source/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/chromium_org/third_party/skia/gm/
H A Dmultipicturedraw.cpp278 SkAutoTUnref<SkPicture> composite; local
288 composite.reset(recorder.endRecording());
291 mpd->add(dest, composite, &xform);
/external/chromium_org/third_party/skia/src/animator/
H A DSkDrawExtraPathEffect.cpp372 SkPathEffect* composite = SkComposePathEffect::Create(e1, e2); local
375 return composite;
/external/libpng/contrib/gregbook/
H A Drpng-win.c126 #define alpha_composite(composite, fg, alpha, bg) { \
129 (composite) = (uch)((temp + (temp >> 8)) >> 8); \
446 /* display image (composite with background if requested) */
H A Drpng-x.c106 #define alpha_composite(composite, fg, alpha, bg) { \
109 (composite) = (uch)((temp + (temp >> 8)) >> 8); \
395 /* display image (composite with background if requested) */
/external/libpng/
H A Dpng.h1309 * If you just need to composite the PNG image onto an existing background
2663 # define png_composite(composite, fg, alpha, bg) \
2668 (composite) = (png_byte)((temp + (temp >> 8)) >> 8); }
2670 # define png_composite_16(composite, fg, alpha, bg) \
2675 (composite) = (png_uint_16)((temp + (temp >> 16)) >> 16); }
2679 # define png_composite(composite, fg, alpha, bg) \
2680 (composite) = (png_byte)(((png_uint_16)(fg) * (png_uint_16)(alpha) + \
2684 # define png_composite_16(composite, fg, alpha, bg) \
2685 (composite) = (png_uint_16)(((png_uint_32)(fg) * (png_uint_32)(alpha) + \
/external/skia/src/animator/
H A DSkDrawExtraPathEffect.cpp372 SkPathEffect* composite = SkComposePathEffect::Create(e1, e2); local
375 return composite;
/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.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/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
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
H A DPerformanceResultsPreferencePage.java134 * Creates composite control and sets the default layout data.
137 * the parent of the new composite
139 * the number of columns for the new composite
144 Composite composite = new Composite(parent, SWT.NULL);
149 composite.setLayout(layout);
156 composite.setLayoutData(data);
157 return composite;
627 // Init composite lists
/external/icu/icu4c/source/i18n/
H A Dcollationbuilder.h131 UChar32 composite, const UnicodeString &decomp,
H A Dcollationbuilder.cpp1145 UChar32 composite = iter.getCodepoint(); local
1146 nfd.getDecomposition(composite, decomp);
1147 if(!mergeCompositeIntoString(nfdString, indexAfterLastStarter, composite, decomp,
1183 UChar32 composite, const UnicodeString &decomp,
1200 // Make new FCD strings that combine a composite, or its decomposition,
1202 // Make an NFD version, and a version with the composite.
1204 newString.setTo(nfdString, 0, indexAfterLastStarter - lastStarterLength).append(composite);
1232 // but the composite's decomposition contains another starter.
1254 // Appending the next source character to the composite would not be FCD.
1300 // Too many CEs from the decomposition (unusual), ignore this composite
1181 mergeCompositeIntoString(const UnicodeString &nfdString, int32_t indexAfterLastStarter, UChar32 composite, const UnicodeString &decomp, UnicodeString &newNFDString, UnicodeString &newString, UErrorCode &errorCode) const argument
[all...]

Completed in 1168 milliseconds

1234