Searched refs:thumb (Results 1 - 25 of 228) sorted by relevance

12345678910

/external/glide/library/src/main/java/com/bumptech/glide/request/
H A DThumbnailRequestCoordinator.java9 private Request thumb; field in class:ThumbnailRequestCoordinator
20 public void setRequests(Request full, Request thumb) { argument
22 this.thumb = thumb;
45 return parentIsAnyRequestComplete() || full.isComplete() || thumb.isComplete();
54 if (!thumb.isRunning()) {
55 thumb.run();
65 thumb.clear();
76 // setting placeholders even if only the thumb is complete.
77 return full.isComplete() || thumb
[all...]
/external/libexif/contrib/examples/
H A Dthumbnail.c39 FILE *thumb; local
46 thumb = fopen(thumb_name, "wb");
47 if (thumb) {
49 fwrite(ed->data, 1, ed->size, thumb);
50 fclose(thumb);
/external/libmtp/examples/
H A Dthumb.c2 * \file thumb.c
38 printf("Usage: thumb -i <fileid/trackid> <imagefile>\n");
107 LIBMTP_filesampledata_t *thumb = LIBMTP_new_filesampledata_t(); local
110 thumb->data = malloc(sizeof(uint16_t) * filesize);
112 thumb->data[i] = imagedata[i];
115 thumb->size = filesize;
116 thumb->filetype = LIBMTP_FILETYPE_JPEG;
118 ret = LIBMTP_Send_Representative_Sample(device,id,thumb);
126 LIBMTP_destroy_filesampledata_t(thumb);
/external/llvm/test/MC/ARM/
H A Dthumb-st_other.s1 @ Check the value of st_other for thumb function.
3 @ ARM does not define any st_other flags for thumb function. The value
H A Dudf-thumb.s5 .thumb
H A Dldrd-strd-gnu-thumb-bad-regs.s3 .thumb
H A Dinst-thumb-overflow-2.s5 .thumb
H A Dthumb2-strd.s3 .thumb
H A Dudf-thumb-2.s5 .thumb
H A Dudf-thumb-diagnostics.s5 .thumb
H A Dunwind-stack-diagnostics.s5 .thumb
/external/chromium_org/third_party/libvpx/source/libvpx/build/make/
H A Dads2armasm_ms.pl14 use thumb;
31 thumb::FixThumbInstructions($_, 1);
H A Dads2gas.pl23 use thumb;
25 my $thumb = 0;
28 $thumb = 1 if ($arg eq "-thumb");
34 if ($thumb) {
36 print "\t.thumb\n";
169 if ($thumb) {
170 # ARM code - we force everything to thumb with the declaration in the header
185 if ($thumb) {
186 thumb
[all...]
/external/libvpx/libvpx/build/make/
H A Dads2armasm_ms.pl14 use thumb;
31 thumb::FixThumbInstructions($_, 1);
H A Dads2gas.pl23 use thumb;
25 my $thumb = 0;
28 $thumb = 1 if ($arg eq "-thumb");
34 if ($thumb) {
36 print "\t.thumb\n";
169 if ($thumb) {
170 # ARM code - we force everything to thumb with the declaration in the header
185 if ($thumb) {
186 thumb
[all...]
/external/llvm/lib/Target/ARM/TargetInfo/
H A DARMTargetInfo.cpp24 RegisterTarget<Triple::thumb, /*HasJIT=*/true>
25 A(TheThumbLETarget, "thumb", "Thumb");
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderSliderContainer.cpp114 RenderBox* thumb = thumbElement ? thumbElement->renderBox() : 0; local
118 // Force a layout to reset the position of the thumb so the code below doesn't move the thumb to the wrong place.
119 // FIXME: Make a custom Render class for the track and move the thumb positioning code there.
127 if (!thumb || !track)
132 availableExtent -= isVertical ? thumb->height() : thumb->width();
134 LayoutPoint thumbLocation = thumb->location();
136 thumbLocation.setY(thumbLocation.y() + track->contentHeight() - thumb->height() - offset);
141 thumb
[all...]
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXSlider.cpp88 AXSliderThumb* thumb = static_cast<AXSliderThumb*>(cache->getOrCreate(SliderThumbRole)); local
89 thumb->setParent(this);
93 if (thumb->accessibilityIsIgnored())
94 cache->remove(thumb->axObjectID());
96 m_children.append(thumb);
/external/chromium_org/ui/views/controls/scrollbar/
H A Dkennedy_scroll_bar.cc86 BaseScrollBarThumb* thumb = GetThumb(); local
88 thumb_bounds.set_x(thumb->x());
89 thumb_bounds.set_width(thumb->width());
91 thumb_bounds.set_y(thumb->y());
92 thumb_bounds.set_height(thumb->height());
94 thumb->SetBoundsRect(thumb_bounds);
H A Doverlay_scroll_bar.cc47 // This is necessary, otherwise the thumb will be rendered below the views if
147 BaseScrollBarThumb* thumb = GetThumb(); local
149 thumb_bounds.set_x(thumb->x());
150 thumb_bounds.set_width(thumb->width());
152 thumb_bounds.set_y(thumb->y());
153 thumb_bounds.set_height(thumb->height());
155 thumb->SetBoundsRect(thumb_bounds);
/external/compiler-rt/lib/builtins/arm/
H A Dbswapsi2.S15 .thumb
H A Dclzsi2.S19 .thumb
/external/llvm/test/MC/MachO/ARM/
H A Dthumb-bl-jbits.s2 .thumb
10 .thumb
H A Drelax-thumb-ldr-literal.s7 .thumb
H A Dthumb2-function-relative-load.s6 .thumb

Completed in 420 milliseconds

12345678910