Home
last modified time | relevance | path

Searched refs:coin (Results 1 – 25 of 33) sorted by relevance

12

/external/skia/src/pathops/
DSkOpCoincidence.cpp430 SkCoincidentSpans* coin = this->fHead; in addExpanded() local
431 if (!coin) { in addExpanded()
435 const SkOpPtT* startPtT = coin->coinPtTStart(); in addExpanded()
436 const SkOpPtT* oStartPtT = coin->oppPtTStart(); in addExpanded()
440 SkOPASSERT(coin->coinPtTEnd()->contains(coin->oppPtTEnd())); in addExpanded()
443 const SkOpSpanBase* end = coin->coinPtTEnd()->span(); in addExpanded()
444 const SkOpSpanBase* oEnd = coin->oppPtTEnd()->span(); in addExpanded()
448 FAIL_IF(!coin->flipped() && !oStart->upCastable()); in addExpanded()
449 const SkOpSpanBase* oTest = coin->flipped() ? oStart->prev() : oStart->upCast()->next(); in addExpanded()
473 && walk != coin->coinPtTEnd()->span()); in addExpanded()
[all …]
DSkPathOpsDebug.cpp25 #define FAIL_IF(cond, coin) \ argument
26 do { if (cond) log->record(SkPathOpsDebug::kFail_Glitch, coin); } while (false)
135 void record(GlitchType type, const SkCoincidentSpans* coin, in record()
138 glitch->fCoinSpan = coin->coinPtTStart(); in record()
139 glitch->fEndSpan = coin->coinPtTEnd(); in record()
163 void record(GlitchType type, const SkCoincidentSpans* coin, in record()
166 glitch->fCoinSpan = coin->coinPtTStart(); in record()
167 glitch->fEndSpan = coin->coinPtTEnd(); in record()
173 void record(GlitchType type, const SkCoincidentSpans* coin, in record()
177 glitch->fCoinSpan = coin->coinPtTStart(); in record()
[all …]
DSkOpSpan.h201 bool containsCoinEnd(const SkOpSpanBase* coin) const { in containsCoinEnd() argument
202 SkASSERT(this != coin); in containsCoinEnd()
205 if (next == coin) { in containsCoinEnd()
277 void insertCoinEnd(SkOpSpanBase* coin) { in insertCoinEnd() argument
278 if (containsCoinEnd(coin)) { in insertCoinEnd()
279 SkASSERT(coin->containsCoinEnd(this)); in insertCoinEnd()
283 SkASSERT(this != coin); in insertCoinEnd()
284 SkOpSpanBase* coinNext = coin->fCoinEnd; in insertCoinEnd()
285 coin->fCoinEnd = this->fCoinEnd; in insertCoinEnd()
435 bool containsCoincidence(const SkOpSpan* coin) const { in containsCoincidence() argument
[all …]
DSkOpCoincidence.h187 const SkCoincidentSpans* coin, const SkOpPtT* test) const;
237 static bool Ordered(const SkOpSegment* coin, const SkOpSegment* opp);
265 bool contains(const SkCoincidentSpans* coin, const SkOpSegment* seg,
281 void fixUp(SkCoincidentSpans* coin, SkOpPtT* deleted, const SkOpPtT* kept);
286 bool release(SkCoincidentSpans* coin, SkCoincidentSpans* );
/external/clang/test/Analysis/
Doperator-calls.cpp81 void test(int coin) { in test() argument
84 … clang_analyzer_eval(+(coin ? getSmallOpaque() : getSmallOpaque())); // expected-warning{{UNKNOWN}} in test()
85 … clang_analyzer_eval(+(coin ? getLargeOpaque() : getLargeOpaque())); // expected-warning{{UNKNOWN}} in test()
Dunreachable-code-path.c152 extern int coin(); in testInlined()
153 int cond = coin(); in testInlined()
Dtemporaries.cpp118 extern bool coin();
124 if (coin() && (coin() || coin() || check(Dtor()))) { in testPR16664andPR18159Crash()
Dreference.cpp197 extern bool coin(); in maybeNull()
199 return coin() ? &x : 0; in maybeNull()
Dnew.cpp104 extern bool coin(); in testCacheOut()
105 if (coin()) in testCacheOut()
Dnull-deref-path-notes.m39 void repeatedStores(int coin) {
41 if (coin) {
42 // expected-note@-1 {{Assuming 'coin' is 0}}
623 // CHECK-NEXT: <string>Assuming &apos;coin&apos; is 0</string>
625 // CHECK-NEXT: <string>Assuming &apos;coin&apos; is 0</string>
Dproperties.m496 void testOverrelease(Person *p, int coin) {
497 switch (coin) {
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/representer/
DRepresentTest.java71 CustomBean coin = (CustomBean) data; in representData() local
72 String value = coin.getPrefix() + "d" + coin.getSuffix(); in representData()
/external/clang/test/Analysis/inlining/
Dfalse-positive-suppression.cpp41 extern bool coin();
55 if (coin()) { in getValue()
92 if (coin()) { in getSomeClass()
Dfalse-positive-suppression.c6 int coin();
51 if (coin()) { in testBranch()
67 if (coin()) { in testBranchReversed()
197 if (coin()) in lookUpInt()
DObjCDynTypePopagation.m78 int testDynamicClass(BOOL coin) {
79 Class AllocClass = (coin ? [NSObject class] : [PublicSubClass2 class]);
81 if (coin)
Dfalse-positive-suppression.m32 void testNilReceiver(int coin) {
34 if (coin)
/external/skia/tests/
DPathOpsDebug.cpp251 const SkOpAngle* SkPathOpsDebug::DebugCoincidenceAngle(SkOpCoincidence* coin, int id) { in DebugCoincidenceAngle() argument
252 return coin->debugAngle(id); in DebugCoincidenceAngle()
255 SkOpContour* SkPathOpsDebug::DebugCoincidenceContour(SkOpCoincidence* coin, int id) { in DebugCoincidenceContour() argument
256 return coin->debugContour(id); in DebugCoincidenceContour()
259 const SkOpPtT* SkPathOpsDebug::DebugCoincidencePtT(SkOpCoincidence* coin, int id) { in DebugCoincidencePtT() argument
260 return coin->debugPtT(id); in DebugCoincidencePtT()
263 const SkOpSegment* SkPathOpsDebug::DebugCoincidenceSegment(SkOpCoincidence* coin, int id) { in DebugCoincidenceSegment() argument
264 return coin->debugSegment(id); in DebugCoincidenceSegment()
267 const SkOpSpanBase* SkPathOpsDebug::DebugCoincidenceSpan(SkOpCoincidence* coin, int id) { in DebugCoincidenceSpan() argument
268 return coin->debugSpan(id); in DebugCoincidenceSpan()
[all …]
DPathOpsConicIntersectionTest.cpp299 bool coin) { in oneOff() argument
316 if (coin && intersections.used() != 2) { in oneOff()
319 REPORTER_ASSERT(reporter, !coin || intersections.used() == 2); in oneOff()
DPathOpsCubicIntersectionTest.cpp388 bool coin) { in oneOff() argument
413 if (coin && intersections.used() < 2) { in oneOff()
416 REPORTER_ASSERT(reporter, !coin || intersections.used() >= 2); in oneOff()
/external/clang/test/Analysis/diagnostics/
Dshortest-path-suppression.c5 int coin();
/external/eigen/unsupported/Eigen/
DAdolcForward17 // see https://projects.coin-or.org/ADOL-C for more information.
51 * see https://projects.coin-or.org/ADOL-C for more information.
/external/svox/pico/tests/data/
Dxsampa_pico_man_fr-FR.txt90 # TEST w coin "kwE~
91 <speak xml:lang="fr-FR"> Je teste <phoneme alphabet="xsampa" ph="&#34;kwE~"/>, et coin.</speak>
/external/replicaisland/src/com/replica/replicaisland/
DHudSystem.java198 public void setCollectableDrawables(DrawableBitmap coin, DrawableBitmap ruby) { in setCollectableDrawables() argument
199 mCoinDrawable = coin; in setCollectableDrawables()
/external/eigen/doc/
DCustomizingEigen_CustomScalar.dox17 …adding support for the Adolc's \c adouble type. <a href="https://projects.coin-or.org/ADOL-C">Adol…
/external/zopfli/src/zopflipng/lodepng/
Dlodepng.cpp800 Coin* coin = &coins[numcoins++]; in lodepng_huffman_code_lengths() local
801 coin_copy(coin, &prev_row[i]); in lodepng_huffman_code_lengths()
802 add_coins(coin, &prev_row[i + 1]); in lodepng_huffman_code_lengths()
819 Coin* coin = &coins[i]; in lodepng_huffman_code_lengths() local
820 for(j = 0; j < coin->symbols.size; j++) lengths[coin->symbols.data[j]]++; in lodepng_huffman_code_lengths()

12