Searched refs:span (Results 101 - 125 of 352) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTableCol.h48 unsigned span() const { return m_span; } function in class:WebCore::FINAL
49 void setSpan(unsigned span) { m_span = span; } argument
/external/chromium_org/ui/webui/resources/js/cr/ui/table/
H A Dtable_header.js43 // Header should not span over the vertical scrollbar of the list.
154 var span = this.ownerDocument.createElement('span');
155 span.appendChild(cm.renderHeader(index, this.table_));
156 span.style.padding = '0';
161 span.className = 'table-header-sort-image-desc';
163 span.className = 'table-header-sort-image-asc';
166 labelDiv.appendChild(span);
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DHTMLTable.java22 ICell setColspan (final int span); argument
90 public ICell setColspan (final int span) argument
92 getAttributes ().set (Attribute.COLSPAN, span);
/external/chromium_org/content/test/data/indexeddb/
H A Dcommon.js7 var span = document.createElement("span");
8 span.appendChild(document.createTextNode(message));
9 span.appendChild(document.createElement("br"));
10 document.getElementById('status').appendChild(span);
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_span.h44 * Special bitflags to describe span data.
65 * These will either be computed from the span x/xStep values or
107 * span-processing threads which could run in parallel.
111 /** Coord of first fragment in horizontal span/run */
114 /** Number of fragments in the span */
126 /** 0 = front-facing span, 1 = back-facing span (for two-sided stencil) */
188 _swrast_span_default_attribs(struct gl_context *ctx, SWspan *span);
191 _swrast_span_interpolate_z( const struct gl_context *ctx, SWspan *span );
200 _swrast_write_rgba_span( struct gl_context *ctx, SWspan *span);
[all...]
H A Ds_copypix.c107 SWspan span; local
136 INIT_SPAN(span, GL_BITMAP);
137 _swrast_span_default_attribs(ctx, &span);
138 span.arrayMask = SPAN_RGBA;
139 span.arrayAttribs = FRAG_BIT_COL0; /* we'll fill in COL0 attrib values */
164 GLvoid *rgba = span.array->attribs[FRAG_ATTRIB_COL0];
166 /* Get row/span of source pixels */
183 /* Write color span */
184 span.x = destx;
185 span
254 SWspan span; local
[all...]
H A Ds_depth.c165 _swrast_depth_clamp_span( struct gl_context *ctx, SWspan *span )
168 const GLuint count = span->end;
169 GLint *zValues = (GLint *) span->array->z; /* sign change */
279 * Apply depth (Z) buffer testing to the span.
283 _swrast_depth_test_span(struct gl_context *ctx, SWspan *span) argument
289 const GLuint count = span->end;
290 const GLuint *fragZ = span->array->z;
291 GLubyte *mask = span->array->mask;
298 if (span->arrayMask & SPAN_XY)
301 zStart = _swrast_pixel_address(rb, span
[all...]
H A Ds_texcombine.c84 * \param span two fields are used in this function:
85 * span->end: number of fragments to process
86 * span->array->rgba: incoming/result fragment colors
92 SWspan *span )
105 GLuint n = span->end;
106 GLchan (*rgbaChan)[4] = span->array->rgba;
557 /* The span->array->rgba values are of CHAN type so set
558 * span->array->ChanType field accordingly.
560 span->array->ChanType = CHAN_TYPE;
601 * Apply texture mapping to a span o
[all...]
/external/chromium_org/third_party/skia/include/effects/
H A DSkTransparentShader.h22 virtual void shadeSpan16(int x, int y, uint16_t span[], int count) SK_OVERRIDE;
/external/doclava/res/assets/templates/
H A Dsampleindex.cs13 <span class="crumb">&nbsp;</span>
H A Ddocpage.cs11 <span class="crumb" itemprop="breadcrumb">
16 </span>
H A Dsample.cs13 <span class="crumb">&nbsp;</span>
/external/mesa3d/src/mesa/swrast/
H A Ds_span.h44 * Special bitflags to describe span data.
65 * These will either be computed from the span x/xStep values or
107 * span-processing threads which could run in parallel.
111 /** Coord of first fragment in horizontal span/run */
114 /** Number of fragments in the span */
126 /** 0 = front-facing span, 1 = back-facing span (for two-sided stencil) */
188 _swrast_span_default_attribs(struct gl_context *ctx, SWspan *span);
191 _swrast_span_interpolate_z( const struct gl_context *ctx, SWspan *span );
200 _swrast_write_rgba_span( struct gl_context *ctx, SWspan *span);
[all...]
H A Ds_copypix.c107 SWspan span; local
136 INIT_SPAN(span, GL_BITMAP);
137 _swrast_span_default_attribs(ctx, &span);
138 span.arrayMask = SPAN_RGBA;
139 span.arrayAttribs = FRAG_BIT_COL0; /* we'll fill in COL0 attrib values */
164 GLvoid *rgba = span.array->attribs[FRAG_ATTRIB_COL0];
166 /* Get row/span of source pixels */
183 /* Write color span */
184 span.x = destx;
185 span
254 SWspan span; local
[all...]
/external/skia/include/effects/
H A DSkTransparentShader.h22 virtual void shadeSpan16(int x, int y, uint16_t span[], int count) SK_OVERRIDE;
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Dcode.c77 /* there must be at least one span in list; all spans must cover
85 if(g->span[j].to != g->span[i].to){
86 ++i; g->span[i].to = g->span[j].to;
88 g->span[i].ub = g->span[j].ub;
94 Span *s = g->span, *b = base->span, *e = &b[base->nSpans];
113 g->nSpans = s - g->span;
771 Span *span; local
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkBlitter_ARGB32.cpp269 const SkPMColor* SK_RESTRICT span,
273 device[i] = SkFourByteInterp256(span[i], device[i], aa256);
324 SkPMColor* span = fBuffer; local
325 fShader->shadeSpan(x, y, span, width);
327 fXfermode->xfer32(device, span, width, NULL);
329 fProc32(device, span, width, 255);
341 SkPMColor* span = fBuffer; local
347 span = device;
350 memcpy(device, span, width << 2);
353 fShader->shadeSpan(x, y, span, widt
268 blend_srcmode(SkPMColor* SK_RESTRICT device, const SkPMColor* SK_RESTRICT span, int count, U8CPU aa) argument
412 SkPMColor* span = fBuffer; local
519 SkPMColor* span = fBuffer; local
619 SkPMColor* span = fBuffer; local
[all...]
/external/skia/src/core/
H A DSkBlitter_ARGB32.cpp269 const SkPMColor* SK_RESTRICT span,
273 device[i] = SkFourByteInterp256(span[i], device[i], aa256);
324 SkPMColor* span = fBuffer; local
325 fShader->shadeSpan(x, y, span, width);
327 fXfermode->xfer32(device, span, width, NULL);
329 fProc32(device, span, width, 255);
341 SkPMColor* span = fBuffer; local
347 span = device;
350 memcpy(device, span, width << 2);
353 fShader->shadeSpan(x, y, span, widt
268 blend_srcmode(SkPMColor* SK_RESTRICT device, const SkPMColor* SK_RESTRICT span, int count, U8CPU aa) argument
412 SkPMColor* span = fBuffer; local
519 SkPMColor* span = fBuffer; local
619 SkPMColor* span = fBuffer; local
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dtcmalloc.cc77 // Otherwise it points to a Span. This span may be free
127 #include "span.h" // for Span, DLL_Prepend, etc
284 // won't be caught if it's within a valid span or a stale span for which
567 // the page heap releases at the span granularity, and spans are of wildly
798 const Span *span = Static::pageheap()->GetDescriptor(p); local
799 return span ? kOwned : kNotOwned;
960 static inline void* SpanToMallocResult(Span *span) { argument
961 Static::pageheap()->CacheSizeClass(span->start, 0);
963 CheckedMallocResult(reinterpret_cast<void*>(span
974 Span *span = Static::pageheap()->New(tcmalloc::pages(size == 0 ? 1 : size)); local
988 tcmalloc::DLL_Prepend(Static::sampled_objects(), span); local
1064 Span* span = Static::pageheap()->New(num_pages); local
1129 Span* span = NULL; local
1188 const Span *span = Static::pageheap()->GetDescriptor(p); local
1302 Span* span = Static::pageheap()->New(tcmalloc::pages(size)); local
1308 Span* span = Static::pageheap()->New(alloc); local
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/
H A Dwin64-except.c46 static int win64_uwinfo_bc_expand(yasm_bytecode *bc, int span, long old_val,
61 static int win64_uwcode_bc_expand(yasm_bytecode *bc, int span, long old_val,
254 win64_uwinfo_bc_expand(yasm_bytecode *bc, int span, long old_val, long new_val, argument
258 switch (span) {
275 yasm_internal_error(N_("unrecognized span id"));
356 int span = 0; local
374 span = 1; low = 8; high = 128; mask = 0x7;
381 span = 2;
391 span = 3;
407 if (win64_uwcode_bc_expand(bc, span, int
423 win64_uwcode_bc_expand(yasm_bytecode *bc, int span, long old_val, long new_val, long *neg_thres, long *pos_thres) argument
[all...]
/external/chromium/chrome/browser/resources/ntp4/
H A Dapps_page.css10 .app span {
/external/chromium/chrome/browser/resources/options/
H A Dadvanced_options.css20 #advancedPage .web-content-select-label > span:only-of-type {
/external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
H A Dflakiness_dashboard.css54 .forms span {
/external/chromium_org/third_party/skia/include/core/
H A DSkColorShader.h40 virtual void shadeSpan(int x, int y, SkPMColor span[], int count) SK_OVERRIDE;
41 virtual void shadeSpan16(int x, int y, uint16_t span[], int count) SK_OVERRIDE;
/external/skia/include/core/
H A DSkColorShader.h40 virtual void shadeSpan(int x, int y, SkPMColor span[], int count) SK_OVERRIDE;
41 virtual void shadeSpan16(int x, int y, uint16_t span[], int count) SK_OVERRIDE;

Completed in 749 milliseconds

1234567891011>>