Searched refs:outer (Results 126 - 150 of 388) sorted by relevance

1234567891011>>

/external/clang/test/Analysis/inlining/
H A Dpath-notes.cpp295 void test(Outer *outer) { argument
296 delete outer;
/external/clang/test/CodeGenCXX/
H A Dx86_64-arguments.cpp108 struct outer { struct in namespace:test6
114 int test(outer x) {
/external/eigen/Eigen/src/SparseCore/
H A DSparseDenseProduct.h122 EIGEN_STRONG_INLINE InnerIterator(const SparseDenseOuterProduct& prod, Index outer) argument
123 : Base(prod.lhs(), 0), m_outer(outer), m_factor(get(prod.rhs(), outer, typename internal::traits<Rhs>::StorageKind() ))
126 inline Index outer() const { return m_outer; } function in class:Eigen::SparseDenseOuterProduct::InnerIterator
133 static Scalar get(const _RhsNested &rhs, Index outer, Dense = Dense()) argument
135 return rhs.coeff(outer);
138 static Scalar get(const _RhsNested &rhs, Index outer, Sparse = Sparse()) argument
140 typename Traits::_RhsNested::InnerIterator it(rhs, outer);
H A DSparseView.h62 InnerIterator(const SparseView& view, Index outer) : argument
63 IterBase(view.m_matrix, outer), m_view(view)
/external/skia/src/core/
H A DSkScan_Antihair.cpp991 SkIRect outer;
992 // set outer to the outer rect of the outer section
993 outer.set(FDot8Floor(L), FDot8Floor(T), FDot8Ceil(R), FDot8Ceil(B));
997 if (clip->quickReject(outer)) {
1000 if (!clip->contains(outer)) {
1001 blitter = clipper.apply(blitter, clip, &outer);
1006 // stroke the outer hull
1009 // set outer t
[all...]
H A DSkStroke.cpp102 SkPath fInner, fOuter; // outer is our working answer, inner is temp
216 // 3x for result == inner + outer + join (swag)
661 static void addBevel(SkPath* path, const SkRect& r, const SkRect& outer, SkPath::Direction dir) { argument
665 pts[0].set(r.fLeft, outer.fTop);
666 pts[1].set(r.fRight, outer.fTop);
667 pts[2].set(outer.fRight, r.fTop);
668 pts[3].set(outer.fRight, r.fBottom);
669 pts[4].set(r.fRight, outer.fBottom);
670 pts[5].set(r.fLeft, outer.fBottom);
671 pts[6].set(outer
[all...]
H A DSkLineClipper.cpp69 // returns true if outer contains inner, even if inner is empty.
70 // note: outer.contains(inner) always returns false if inner is empty.
71 static inline bool containsNoEmptyCheck(const SkRect& outer, argument
73 return outer.fLeft <= inner.fLeft && outer.fTop <= inner.fTop &&
74 outer.fRight >= inner.fRight && outer.fBottom >= inner.fBottom;
/external/chromium_org/third_party/skia/src/core/
H A DSkStroke.cpp102 SkPath fInner, fOuter; // outer is our working answer, inner is temp
216 // 3x for result == inner + outer + join (swag)
662 static void addBevel(SkPath* path, const SkRect& r, const SkRect& outer, SkPath::Direction dir) { argument
666 pts[0].set(r.fLeft, outer.fTop);
667 pts[1].set(r.fRight, outer.fTop);
668 pts[2].set(outer.fRight, r.fTop);
669 pts[3].set(outer.fRight, r.fBottom);
670 pts[4].set(r.fRight, outer.fBottom);
671 pts[5].set(r.fLeft, outer.fBottom);
672 pts[6].set(outer
[all...]
H A DSkLineClipper.cpp69 // returns true if outer contains inner, even if inner is empty.
70 // note: outer.contains(inner) always returns false if inner is empty.
71 static inline bool containsNoEmptyCheck(const SkRect& outer, argument
73 return outer.fLeft <= inner.fLeft && outer.fTop <= inner.fTop &&
74 outer.fRight >= inner.fRight && outer.fBottom >= inner.fBottom;
/external/bison/etc/
H A Dbench.pl.in86 static int outer = 0;
87 if (outer > $max)
89 else if (inner > outer)
92 ++outer;
/external/chromium_org/ppapi/utility/graphics/
H A Dpaint_aggregator.cc264 Rect inner, outer; local
270 outer = outer.Union(existing_rect);
275 update_.paint_rects.push_back(outer);
/external/chromium_org/third_party/skia/src/gpu/
H A DGrOvalRenderer.h39 const SkRRect& outer, const SkRRect& inner);
/external/chromium_org/v8/test/mjsunit/compiler/
H A Doptimized-for-in.js136 // Continue of the outer loop.
139 outer: for (var i in t) {
142 continue outer;
149 // Break of the outer loop.
152 outer: for (var i in t) {
155 break outer;
/external/chromium_org/v8/test/mjsunit/es6/
H A Diteration-semantics.js235 outer:
238 for (var x of iterable) continue outer;
247 outer:
250 for (var x of iterable) break outer;
/external/clang/test/CXX/temp/temp.decls/temp.class.spec/
H A Dp6.cpp45 Outer<int, int> outer; // expected-note{{instantiation}} variable
/external/skia/src/gpu/
H A DGrOvalRenderer.h39 const SkRRect& outer, const SkRRect& inner);
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DScanning.py63 def __init__(self, outer = None):
65 self.outer = outer
83 outer = self.outer
84 if outer:
85 return outer.lookup(name)
/external/chromium_org/ui/login/
H A Dscreen_container.css6 #outer-container {
19 .oobe-display #outer-container {
182 #outer-container.fullscreen,
183 #outer-container.fullscreen #oobe,
184 #outer-container.fullscreen #oobe #inner-container {
/external/deqp/modules/gles31/functional/
H A Des31fTessellationTests.cpp541 static string tessellationLevelsString (const float* inner, int numInner, const float* outer, int numOuter)
544 return "inner: " + elemsStr(inner, inner+numInner) + ", outer: " + elemsStr(outer, outer+numOuter);
547 static string tessellationLevelsString (const float* inner, const float* outer, TessPrimitiveType primType)
549 return tessellationLevelsString(inner, numInnerTessellationLevels(primType), outer, numOuterTessellationLevels(primType));
552 static string tessellationLevelsString (const float* inner, const float* outer)
554 return tessellationLevelsString(inner, 2, outer, 4);
592 //! A description of an outer edge of a triangle, quad or isolines.
593 //! An outer edg
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/ttsdebug/
H A Dttsdebug.js530 var outer = document.createElement('div');
531 outer.className = 'outer';
532 $('container').appendChild(outer);
536 outer.appendChild(buttonWrap);
552 outer.appendChild(description);
556 outer.appendChild(resultsWrap);
568 outer.appendChild(messagesWrap);
652 outer.className = 'outer';
[all...]
/external/chromium_org/chrome/browser/prefs/tracked/
H A Dsegregated_pref_store.cc12 SegregatedPrefStore* outer)
13 : outer_(outer),
11 AggregatingObserver( SegregatedPrefStore* outer) argument
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/app_launcher/
H A Dpopup.js95 var outer = $('outer');
97 var width = outer.offsetWidth;
/external/chromium_org/content/public/browser/
H A Ddevtools_protocol_constants_generator.py118 outer = dict((key, value) for key, value in tree.iteritems()
124 for (key, value) in sorted(outer.items()))
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DObjectPainter.cpp52 IntRect outer = pixelSnappedIntRect(inner); local
53 outer.inflate(outlineWidth);
56 if (outer.isEmpty())
67 path.addRect(outer);
78 int leftOuter = outer.x();
80 int rightOuter = outer.maxX();
82 int topOuter = outer.y();
84 int bottomOuter = outer.maxY();
/external/clang/test/Sema/
H A Ddesignated-initializers.c98 struct outer { struct inner { int x, *y; } in, *inp; } zz[] = { struct
106 int zz_sizecheck[sizeof(zz) / sizeof(struct outer) == 8? 1 : -1 ];

Completed in 2581 milliseconds

1234567891011>>