Searched refs:isLine (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/third_party/skia/src/core/
H A DSkStroke.cpp81 void close(bool isLine) { this->finishContour(true, isLine); } argument
83 void done(SkPath* dst, bool isLine) { argument
84 this->finishContour(false, isLine);
105 void finishContour(bool close, bool isLine);
107 bool isLine);
H A DSkPath.cpp325 bool SkPath::isLine(SkPoint line[2]) const { function in class:SkPath
/external/skia/src/core/
H A DSkStroke.cpp81 void close(bool isLine) { this->finishContour(true, isLine); } argument
83 void done(SkPath* dst, bool isLine) { argument
84 this->finishContour(false, isLine);
105 void finishContour(bool close, bool isLine);
107 bool isLine);
H A DSkPath.cpp325 bool SkPath::isLine(SkPoint line[2]) const { function in class:SkPath
/external/chromium_org/third_party/skia/src/effects/
H A DSkDashPathEffect.cpp112 if (!srcPath.isLine(pts)) {
167 if (rec->isHairlineStyle() || !src.isLine(fPts)) {
373 if (!src.isLine(pts)) {
/external/skia/src/effects/
H A DSkDashPathEffect.cpp112 if (!srcPath.isLine(pts)) {
167 if (rec->isHairlineStyle() || !src.isLine(fPts)) {
373 if (!src.isLine(pts)) {
/external/chromium_org/third_party/skia/include/core/
H A DSkPath.h222 bool isLine(SkPoint line[2]) const;
/external/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h402 /// isLine - Return true if the constraint is of kind Line.
405 bool isLine() const { return Kind == Line || Kind == Distance; } function in class:llvm::DependenceAnalysis::Constraint
/external/skia/bench/
H A DDashBench.cpp111 if (!path.isLine(pts) || pts[0].fY != pts[1].fY) {
/external/skia/include/core/
H A DSkPath.h222 bool isLine(SkPoint line[2]) const;
/external/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp399 else if (isLine())
461 if (X->isLine() && Y->isLine()) {
543 // if (X->isLine() && Y->isPoint()) This case can't occur.
544 assert(!(X->isLine() && Y->isPoint()) && "This case should never occur");
546 if (X->isPoint() && Y->isLine()) {
2988 else if (Constraints[LI].isLine())
3144 else if (CurConstraint.isLine()) {
/external/skia/tests/
H A DPathTest.cpp1209 REPORTER_ASSERT(reporter, !path.isLine(NULL));
1214 REPORTER_ASSERT(reporter, !path.isLine(pts));
1224 REPORTER_ASSERT(reporter, !path.isLine(NULL));
1225 REPORTER_ASSERT(reporter, !path.isLine(pts));
1235 REPORTER_ASSERT(reporter, path.isLine(NULL));
1239 REPORTER_ASSERT(reporter, path.isLine(pts));
1244 REPORTER_ASSERT(reporter, !path.isLine(NULL));
1245 REPORTER_ASSERT(reporter, !path.isLine(pts));
1251 REPORTER_ASSERT(reporter, !path.isLine(NULL));
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dcodemirror.js2508 function isLine(doc, l) {return l >= doc.first && l < doc.first + doc.size;}
2897 if (isLine(this.doc, n)) indentLine(this, n, dir, aggressive);
3047 if (!isLine(this.doc, line)) return null;
3967 var oldFirst = isLine(doc, change.from.line) && getLine(doc, change.from.line).markedSpans;
3968 var oldLast = isLine(doc, change.to.line) && getLine(doc, change.to.line).markedSpans;
4784 if (isLine(this, line))
4792 getLineHandle: function(line) {if (isLine(this, line)) return getLine(this, line);},

Completed in 298 milliseconds