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

1234

/external/webkit/Source/WebCore/rendering/
H A DRenderSlider.cpp110 RenderBox* thumb = toRenderBox(thumbElement->renderer()); local
112 thumbRect.setWidth(thumb->style()->width().calcMinValue(contentWidth()));
113 thumbRect.setHeight(thumb->style()->height().calcMinValue(contentHeight()));
133 RenderBox* thumb = thumbElement ? toRenderBox(thumbElement->renderer()) : 0; local
137 if (thumb) {
138 // Allow the theme to set the size of the thumb.
139 if (thumb->style()->hasAppearance()) {
141 theme()->adjustSliderThumbSize(thumb);
144 baseSize.expand(thumb->style()->width().calcMinValue(0), thumb
[all...]
/external/llvm/lib/Target/ARM/TargetInfo/
H A DARMTargetInfo.cpp21 RegisterTarget<Triple::thumb, /*HasJIT=*/true>
22 Y(TheThumbTarget, "thumb", "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 Delf-thumbfunc.s1 @@ test st_value bit 0 of thumb function
14 @@ make sure foo is thumb function: bit 0 = 1 (st_value)
H A Delf-thumbfunc-reloc.s1 @@ test st_value bit 0 of thumb function
H A Dmode-switch.s21 .thumb
H A Dneont2-reverse-encoding.s1 @ RUN: llvm-mc -mcpu=cortex-a8 -triple thumb-unknown-unknown -show-encoding < %s | FileCheck %s
H A Dneont2-table-encoding.s1 @ RUN: llvm-mc -mcpu=cortex-a8 -triple thumb-unknown-unknown -show-encoding < %s | FileCheck %s
H A Dneont2-abs-encoding.s1 @ RUN: llvm-mc -mcpu=cortex-a8 -triple thumb-unknown-unknown -show-encoding < %s | FileCheck %s
/external/llvm/test/MC/MachO/ARM/
H A Drelax-thumb-ldr-literal.s7 .thumb
H A Dthumb2-function-relative-load.s6 .thumb
H A Dno-subsections-reloc.s10 .thumb
H A Dstatic-movt-relocs.s2 .thumb
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilitySlider.cpp94 AccessibilitySliderThumb* thumb = static_cast<AccessibilitySliderThumb*>(cache->getOrCreate(SliderThumbRole)); local
95 thumb->setParentObject(this);
99 if (thumb->accessibilityIsIgnored())
100 cache->remove(thumb->axObjectID());
102 m_children.append(thumb);
/external/webkit/Source/WebCore/platform/wx/
H A DScrollbarThemeWx.h52 virtual void splitTrack(Scrollbar*, const IntRect& track, IntRect& startTrack, IntRect& thumb, IntRect& endTrack);
/external/webkit/Source/WebKit/android/
H A DRenderSkinMediaButton.cpp184 IntRect thumb = slider->thumbRect(); local
185 // Inset the track by half the width of the thumb, so the track
186 // does not appear to go beyond the space where the thumb can
188 SkScalar thumbHalfWidth = SkIntToScalar(thumb.width()/2);
191 if (thumb.x() > 0) {
193 // left of the thumb as having been played.
194 SkScalar alreadyPlayed = SkIntToScalar(thumb.center().x() + r.x());
/external/webkit/Source/WebCore/html/
H A DRangeInputType.cpp156 if (SliderThumbElement* thumb = shadowSliderThumb())
157 thumb->dragFrom(event->absoluteLocation());
205 if (SliderThumbElement* thumb = shadowSliderThumb()) {
210 thumb->dragFrom(curPoint);
/external/webkit/Source/WebCore/platform/
H A DScrollbarThemeComposite.h56 virtual void splitTrack(Scrollbar*, const IntRect& track, IntRect& startTrack, IntRect& thumb, IntRect& endTrack);
/external/bzip2/
H A DAndroid.mk19 # than the thumb one...
/external/llvm/lib/Support/
H A DTriple.cpp36 case thumb: return "thumb";
56 case thumb: return "arm";
159 .Case("thumb", thumb)
238 .Case("thumb", Triple::thumb)
239 .StartsWith("thumbv", Triple::thumb)
660 case llvm::Triple::thumb:
709 case Triple::thumb
[all...]
/external/kernel-headers/original/asm-arm/
H A Dprocessor.h28 u16 thumb; member in union:debug_insn
/external/llvm/lib/MC/MCDisassembler/
H A DEDDisassembler.cpp51 { Triple::thumb, "thumb-unknown-unknown" }
88 if (arch == Triple::arm || arch == Triple::thumb)
279 case Triple::thumb:
339 case Triple::thumb:
H A DEDOperand.cpp60 arch == Triple::thumb) {
208 case Triple::thumb:
/external/webkit/Source/WebCore/platform/qt/
H A DScrollbarThemeQt.cpp185 // Middle click centers slider thumb (if supported)
218 IntRect thumb = style()->subControlRect(QStyle::CC_ScrollBar, opt, QStyle::SC_ScrollBarSlider, 0); local
219 return scrollbar->orientation() == HorizontalScrollbar ? thumb.width() : thumb.height();
/external/qemu/target-arm/
H A Dcpu.h107 uint32_t thumb; /* cpsr[5]. 0 = arm mode, 1 = thumb mode. */ member in struct:CPUARMState
300 | (env->thumb << 24) | ((env->condexec_bits & 3) << 25)
317 env->thumb = ((val & (1 << 24)) != 0);
524 *flags = (env->thumb << ARM_TBFLAG_THUMB_SHIFT)

Completed in 366 milliseconds

1234