HomeSort by relevance Sort by last modified time
    Searched refs:thumb (Results 1 - 25 of 308) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/glide/library/src/main/java/com/bumptech/glide/request/
ThumbnailRequestCoordinator.java 9 private Request thumb; field in class:ThumbnailRequestCoordinator
20 public void setRequests(Request full, Request thumb) {
22 this.thumb = thumb;
66 * Starts first the thumb request and then the full request.
70 if (!thumb.isRunning()) {
71 thumb.begin();
81 thumb.pause();
89 thumb.clear();
111 return full.isComplete() || thumb.isComplete()
    [all...]
  /external/libexif/contrib/examples/
thumbnail.c 39 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/
thumb.c 2 * \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/libvpx/libvpx/build/make/
ads2gas.pl 23 use thumb;
25 my $thumb = 0;
28 $thumb = 1 if ($arg eq "-thumb");
34 if ($thumb) {
36 print "\t.thumb\n";
120 # Code directive (ARM vs Thumb)
169 if ($thumb) {
170 # ARM code - we force everything to thumb with the declaration in the header
185 if ($thumb) {
    [all...]
ads2armasm_ms.pl 14 use thumb;
31 thumb::FixThumbInstructions($_, 1);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
ads2gas.pl 23 use thumb;
25 my $thumb = 0;
28 $thumb = 1 if ($arg eq "-thumb");
34 if ($thumb) {
36 print "\t.thumb\n";
120 # Code directive (ARM vs Thumb)
169 if ($thumb) {
170 # ARM code - we force everything to thumb with the declaration in the header
185 if ($thumb) {
    [all...]
ads2armasm_ms.pl 14 use thumb;
31 thumb::FixThumbInstructions($_, 1);
  /external/llvm/test/MC/ARM/
directive-arch_extension-toggle.s 4 .thumb
directive-fpu-instrs.s 7 @ .thumb should not disable the prior .fpu neon
8 .thumb
thumb-st_other.s 1 @ Check the value of st_other for thumb function.
3 @ ARM does not define any st_other flags for thumb function. The value
udf-thumb.s 5 .thumb
directive-fpu-diagnostics.s 5 .thumb
ldrd-strd-gnu-thumb-bad-regs.s 3 .thumb
inst-thumb-overflow-2.s 5 .thumb
thumb2-strd.s 3 .thumb
udf-thumb-2.s 5 .thumb
  /external/llvm/lib/Target/ARM/TargetInfo/
ARMTargetInfo.cpp 24 RegisterTarget<Triple::thumb, /*HasJIT=*/true>
25 A(TheThumbLETarget, "thumb", "Thumb");
27 B(TheThumbBETarget, "thumbeb", "Thumb (big endian)");
  /frameworks/compile/mclinker/lib/Target/ARM/TargetInfo/
ARMTargetInfo.cpp 20 mcld::RegisterTarget<llvm::Triple::thumb> Y(TheThumbTarget, "thumb");
  /packages/apps/Browser/src/com/android/browser/
BrowserBookmarksAdapter.java 85 ImageView thumb = (ImageView) view.findViewById(R.id.thumb); local
91 thumb.setImageResource(R.drawable.thumb_bookmark_widget_folder_holo);
92 thumb.setScaleType(ScaleType.FIT_END);
93 thumb.setBackground(null);
95 thumb.setScaleType(ScaleType.CENTER_CROP);
97 thumb.setImageResource(R.drawable.browser_thumbnail);
99 thumb.setImageDrawable(item.thumbnail);
101 thumb.setBackgroundResource(R.drawable.border_thumb_bookmarks_widget_holo);
  /frameworks/base/core/java/android/widget/
AbsSeekBar.java 92 final Drawable thumb = a.getDrawable(R.styleable.SeekBar_thumb); local
93 setThumb(thumb);
108 // Guess thumb offset if thumb != null, but allow layout to override.
129 * Sets the thumb that will be drawn at the end of the progress meter within the SeekBar.
131 * If the thumb is a valid drawable (i.e. not null), half its width will be
132 * used as the new thumb offset (@see #setThumbOffset(int)).
134 * @param thumb Drawable representing the thumb
136 public void setThumb(Drawable thumb) {
    [all...]
  /external/compiler-rt/lib/builtins/arm/
bswapsi2.S 15 .thumb
  /external/llvm/test/MC/MachO/ARM/
thumb-bl-jbits.s 2 .thumb
10 .thumb
  /ndk/sources/cxx-stl/gnu-libstdc++/
Android.mk 20 # For armeabi*, choose thumb mode unless LOCAL_ARM_MODE := arm
23 LOCAL_SRC_FILES:= $(TOOLCHAIN_VERSION)/libs/$(TARGET_ARCH_ABI)/thumb/libgnustl_static$(TARGET_LIB_EXTENSION)
33 # For armeabi*, choose thumb mode unless LOCAL_ARM_MODE := arm
36 LOCAL_SRC_FILES:= $(TOOLCHAIN_VERSION)/libs/$(TARGET_ARCH_ABI)/thumb/libgnustl_shared$(TARGET_SONAME_EXTENSION)
  /system/extras/tests/memtest/
Android.mk 10 thumb.cpp \
  /external/libopus/celt/arm/
arm2gnu.pl 25 $thumb = 0; # ARM mode by default, not Thumb.
123 s/\bCODE32\b/.code 32/ && do {$thumb = 0};
124 s/\bCODE16\b/.code 16/ && do {$thumb = 1};
138 $prefix = $prefix."\t.thumb_func; " if ($thumb);

Completed in 1057 milliseconds

1 2 3 4 5 6 7 8 91011>>