HomeSort by relevance Sort by last modified time
    Searched refs:fill (Results 151 - 175 of 273) sorted by null

1 2 3 4 5 67 8 91011

  /external/webkit/WebCore/inspector/front-end/
SourceFrame.js 561 ctx.fill();
562 ctx.fill(); // Fill twice to get a good shadow and darker anti-aliased pixels.
599 ctx.fill();
  /dalvik/libcore/luni/src/main/java/java/util/
Formatter.java     [all...]
ArrayList.java 269 Arrays.fill(array, 0, size, null);
461 Arrays.fill(a, s - rangeSize, s, null);
PriorityQueue.java 171 Arrays.fill(elements, null);
  /external/quake/quake/src/QW/client/
common.c 137 void Q_memset (void *dest, int fill, int count)
144 fill = fill | (fill<<8) | (fill<<16) | (fill<<24);
146 ((int *)dest)[i] = fill;
150 ((byte *)dest)[i] = fill;
    [all...]
  /external/webkit/WebCore/html/canvas/
CanvasRenderingContext2D.cpp 645 void CanvasRenderingContext2D::fill() function in class:WebCore::CanvasRenderingContext2D
    [all...]
  /external/webkit/WebCore/platform/graphics/mac/
ComplexTextControllerATSUI.cpp 242 m_glyphsVector.fill(0, m_glyphCount);
244 m_advancesVector.fill(CGSizeMake(m_fontData->widthForGlyph(0), 0), m_glyphCount);
  /frameworks/base/awt/org/apache/harmony/awt/gl/font/
TextDecorator.java 224 // Fill background area
234 g2d.fill(toFill);
239 if (d.bg != null) { // Fill background area
249 g2d.fill(toFill);
  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
uctralgo.h 216 /// Fill assigns the value value to every element in the range [first, last).
222 inline void fill (Container& ctr, const T& value) function in namespace:ustl
224 fill (ctr.begin(), ctr.end(), value);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
CandidateView.java 387 Arrays.fill(mWordWidth, 0);
388 Arrays.fill(mWordX, 0);
  /dalvik/dx/src/com/android/dx/dex/file/
MixedItemSection.java 149 Arrays.fill(spaceArr, ' ');
  /dalvik/libcore/json/src/main/java/org/json/
JSONStringer.java 128 Arrays.fill(indentChars, ' ');
  /dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
HandshakeIODataStream.java 233 Arrays.fill(buffer, (byte) 0);
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_surface.c 539 SDL_SetError("1-bpp rect fill not yet implemented");
546 SDL_SetError("4-bpp rect fill not yet implemented");
551 * This function performs a fast fill of the given rectangle with 'color'
570 SDL_SetError("Fill rect on unsupported surface format");
576 /* If 'dstrect' == NULL, then fill the whole surface */
599 /* Perform software fill */
627 double fill; local
628 SDL_memset(&fill, color, (sizeof fill));
634 double f = fill;
    [all...]
  /external/stlport/src/
ios.cpp 100 fill(new_array + N, new_array + new_N, PODType());
  /external/stlport/stlport/stl/
_deque.c 522 _STLP_STD::fill(__pos - difference_type(__n), __pos, __x_copy);
529 fill(__old_start, __pos, __x_copy);
546 fill(__pos, __pos + difference_type(__n), __x_copy);
552 fill(__pos, __old_finish, __x_copy);
_string_io.c 19 _CharT __f = __os.fill();
  /external/webkit/WebCore/platform/graphics/wince/
PlatformPathWince.cpp 235 static void drawPolygons(HDC dc, const Vector<PathPolygon>& polygons, bool fill, const AffineTransform* transformation)
244 if (fill) {
264 if (fill && winPoints[npoints - 1] != winPoints[0]) {
270 if (fill)
  /external/webkit/WebCore/rendering/
FixedTableLayout.cpp 88 m_width.fill(Length(Auto));
  /frameworks/base/telephony/java/android/telephony/
SmsManager.java 279 Arrays.fill(pdu, (byte)0xff);
  /packages/apps/Calendar/src/com/android/calendar/
EventLoader.java 82 Arrays.fill(eventDays, false);
  /packages/apps/Gallery/src/com/android/camera/gallery/
ImageListUber.java 108 Arrays.fill(skipCounts, 0);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
WebCorpus.java 192 public void fill() { method in class:WebCorpus.WebResult
  /external/webkit/JavaScriptCore/wtf/
Vector.h 577 void fill(const T&, size_t);
578 void fill(const T& val) { fill(val, size()); }
703 void Vector<T, inlineCapacity>::fill(const T& val, size_t newSize) function in class:WTF::Vector::Vector
714 std::fill(begin(), end(), val);
  /cts/tests/tests/database/src/android/database/cts/
DatabaseCursorTest.java 156 Arrays.fill(blob, value);
189 Arrays.fill(blob, value);

Completed in 184 milliseconds

1 2 3 4 5 67 8 91011