Searched refs:part (Results 51 - 75 of 480) sorted by relevance

1234567891011>>

/macosx-10.10/top-100.1.2/
H A Dpower.c52 int whole = 0, part = 0; local
56 part = 0;
58 if(-1 == snprintf(buf, sizeof(buf), "%d.%1d", whole, part))
98 part = (((used_us * 100ULL) - (whole * elapsed_us)) * 10ULL) / elapsed_us;
101 //top_log("command %s whole %d part %d\n", psamp->command, whole, part);
103 if(-1 == snprintf(buf, sizeof(buf), "%d.%1d", whole, part))
/macosx-10.10/WebCore-7600.1.25/platform/gtk/
H A DScrollbarThemeGtk3.cpp129 void ScrollbarThemeGtk::paintButton(GraphicsContext* context, ScrollbarThemeClient* scrollbar, const IntRect& rect, ScrollbarPart part) argument
137 if ((BackButtonStartPart == part && scrollbar->currentPos())
138 || (BackButtonEndPart == part && scrollbar->currentPos())
139 || (ForwardButtonEndPart == part && scrollbar->currentPos() != scrollbar->maximum())
140 || (ForwardButtonStartPart == part && scrollbar->currentPos() != scrollbar->maximum())) {
141 if (part == scrollbar->pressedPart())
143 if (part == scrollbar->hoveredPart())
171 angle = (part == ForwardButtonEndPart || part == ForwardButtonStartPart) ? G_PI : 0;
173 angle = (part
[all...]
H A DScrollbarThemeGtk.cpp96 IntRect ScrollbarThemeGtk::backButtonRect(ScrollbarThemeClient* scrollbar, ScrollbarPart part, bool) argument
98 if (part == BackButtonEndPart && !m_hasBackButtonEndPart)
100 if (part == BackButtonStartPart && !m_hasBackButtonStartPart)
106 if (part == BackButtonStartPart)
117 IntRect ScrollbarThemeGtk::forwardButtonRect(ScrollbarThemeClient* scrollbar, ScrollbarPart part, bool) argument
119 if (part == ForwardButtonStartPart && !m_hasForwardButtonStartPart)
121 if (part == ForwardButtonEndPart && !m_hasForwardButtonEndPart)
127 if (part == ForwardButtonEndPart)
136 if (part == ForwardButtonEndPart)
/macosx-10.10/WebCore-7600.1.25/platform/win/
H A DScrollbarThemeSafari.cpp83 (ThemePart part, CGContextRef context, const CGRect& rect, NSControlSize size, ThemeControlState state),
84 (part, context, rect, size, state))
137 IntRect ScrollbarThemeSafari::backButtonRect(ScrollbarThemeClient* scrollbar, ScrollbarPart part, bool painting) argument
142 if (part == BackButtonEndPart)
155 IntRect ScrollbarThemeSafari::forwardButtonRect(ScrollbarThemeClient* scrollbar, ScrollbarPart part, bool painting) argument
160 if (part == ForwardButtonStartPart)
219 void ScrollbarThemeSafari::paintButton(GraphicsContext* graphicsContext, ScrollbarThemeClient* scrollbar, const IntRect& buttonRect, ScrollbarPart part) argument
229 if (scrollbar->pressedPart() == part)
231 if (part == BackButtonStartPart)
234 else if (part
[all...]
/macosx-10.10/gnudiff-19/diffutils/src/
H A Danalyze.c6 This file is part of GNU DIFF.
96 struct partition *part)
140 part->xmid = x;
141 part->ymid = y;
142 part->lo_minimal = part->hi_minimal = 1;
167 part->xmid = x;
168 part->ymid = y;
169 part->lo_minimal = part
95 diag(lin xoff, lin xlim, lin yoff, lin ylim, bool find_minimal, struct partition *part) argument
356 struct partition part; local
[all...]
/macosx-10.10/ruby-106/ruby/lib/rdoc/markup/
H A Dto_markdown.rb128 verbatim.parts.each do |part|
129 @res << indent unless part == "\n"
130 @res << part
/macosx-10.10/WebCore-7600.1.25/platform/mac/
H A DThemeMac.mm499 static void setUpButtonCell(NSButtonCell *cell, ControlPart part, const ControlStates* states, const IntSize& zoomedSize, float zoomFactor)
503 if (part == SquareButtonPart || zoomedSize.height() > buttonSizes()[NSRegularControlSize].height() * zoomFactor) {
516 static NSButtonCell *button(ControlPart part, const ControlStates* controlStates, const IntSize& zoomedSize, float zoomFactor)
527 setUpButtonCell(cell, part, controlStates, zoomedSize, zoomFactor);
531 static void paintButton(ControlPart part, ControlStates* controlStates, GraphicsContext* context, const FloatRect& zoomedRect, float zoomFactor, ScrollView* scrollView)
537 NSButtonCell *buttonCell = button(part, controlStates, IntSize(zoomedRect.size()), zoomFactor);
673 int ThemeMac::baselinePositionAdjustment(ControlPart part) const
675 if (part == CheckboxPart || part == RadioPart)
677 return Theme::baselinePositionAdjustment(part);
[all...]
H A DThemeMac.h52 virtual bool controlRequiresPreWhiteSpace(ControlPart part) const { return part == PushButtonPart; }
/macosx-10.10/WebCore-7600.1.25/platform/efl/DefaultTheme/widget/spinner/
H A Dspinner.edc63 part {
83 part {
115 part {
147 part {
/macosx-10.10/llvmCore-3425.0.34/utils/unittest/
H A DCMakeLists.txt42 googletest/gtest-test-part.cc
/macosx-10.10/ncurses-44/ncurses/ncurses/tinfo/
H A Dtrim_sgr0.c174 compare_part(const char *part, const char *full) argument
181 while (*part != 0) {
182 if (*part != *full) {
198 if (*part == '$' && *full == '$') {
199 next_part = skip_delay(part);
201 if (next_part != part && next_full != full) {
204 part = next_part;
209 ++part;
/macosx-10.10/WebCore-7600.1.25/platform/efl/DefaultTheme/widget/combo/
H A Dcombo.edc109 part {
118 part {
132 part {
212 part {
229 part {
320 part {
355 part {
/macosx-10.10/WebCore-7600.1.25/css/
H A DSelectorChecker.cpp385 // selector is not part of an argument to a functional pseudo-class or pseudo-element.
822 ScrollbarPart part = context.scrollbarPart; local
840 if (part == ScrollbarBGPart)
842 if (part == TrackBGPart)
844 return part == hoveredPart;
849 if (part == ScrollbarBGPart)
851 if (part == TrackBGPart)
853 return part == pressedPart;
860 return part == BackButtonStartPart || part
[all...]
/macosx-10.10/emacs-93/emacs/lisp/
H A Dscroll-bar.el9 ;; This file is part of GNU Emacs.
235 ;; Calculate position relative to the accessible part of the buffer.
322 (part (nth 4 end-position))
324 (cond ((eq part 'end-scroll))
331 (cond ((eq part 'above-handle)
333 ((eq part 'below-handle)
335 ((eq part 'ratio)
342 ((eq part 'up)
344 ((eq part 'down)
346 ((eq part 'to
[all...]
/macosx-10.10/ICU-531.30/icuSources/i18n/
H A Dplurfmt.cpp282 const MessagePattern::Part& part = msgPattern.getPart(++partIndex); local
283 const UMessagePatternPartType type = part.getType();
284 int32_t index = part.getIndex();
293 prevIndex = part.getLimit();
403 const MessagePattern::Part* part=&pattern.getPart(partIndex); local
404 if (MessagePattern::Part::hasNumericValue(part->getType())) {
405 offset=pattern.getNumericValue(*part);
434 part=&pattern.getPart(partIndex++);
435 const UMessagePatternPartType type = part->getType();
440 // part i
[all...]
H A Dmsgfmt.cpp570 const MessagePattern::Part& part = msgPattern.getPart(partIndex); local
571 return part.getType() == UMSGPAT_PART_TYPE_ARG_NAME ?
572 msgPattern.partSubstringMatches(part, argName) :
573 part.getValue() == argNumber; // ARG_NUMBER
576 // Sets a custom formatter for a MessagePattern ARG_START part index.
844 const MessagePattern::Part& part = msgPattern.getPart(partIndex); local
845 return msgPattern.getSubstring(part);
1016 const MessagePattern::Part* part = &msgPattern.getPart(i); local
1017 const UMessagePatternPartType type = part->getType();
1018 int32_t index = part
1182 const MessagePattern::Part& part = msgPattern.getPart(++i); local
1227 const MessagePattern::Part& part = msgPattern.getPart(i); local
1258 const MessagePattern::Part *part = &msgPattern.getPart(partIndex); local
1287 const MessagePattern::Part &part=msgPattern.getPart(i); local
1390 const MessagePattern::Part* part=&msgPattern.getPart(i); local
1601 const MessagePattern::Part& part = msgPattern.getPart(i); local
1623 const MessagePattern::Part* part = &msgPattern.getPart(i); local
[all...]
H A Dselfmt.cpp135 const MessagePattern::Part& part=pattern.getPart(partIndex++); local
136 const UMessagePatternPartType type=part.getType();
140 // part is an ARG_SELECTOR followed by a message
141 if(pattern.partSubstringMatches(part, keyword)) {
144 } else if(msgStart==0 && pattern.partSubstringMatches(part, other)) {
/macosx-10.10/WebCore-7600.1.25/platform/
H A DScrollbar.cpp313 void Scrollbar::setHoveredPart(ScrollbarPart part) argument
315 if (part == m_hoveredPart)
318 if ((m_hoveredPart == NoPart || part == NoPart) && theme()->invalidateOnMouseEnterExit())
320 else if (m_pressedPart == NoPart) { // When there's a pressed part, we don't draw a hovered state, so there's no reason to invalidate.
321 theme()->invalidatePart(this, part);
324 m_hoveredPart = part;
327 void Scrollbar::setPressedPart(ScrollbarPart part) argument
331 m_pressedPart = part;
334 else if (m_hoveredPart != NoPart) // When we no longer have a pressed part, we can start drawing a hovered state on the hovered part
356 ScrollbarPart part = theme()->hitTest(this, evt.position()); local
403 ScrollbarPart part = theme()->hitTest(this, mouseEvent.position()); local
[all...]
/macosx-10.10/BerkeleyDB-21/db/examples_java/src/collections/ship/entity/
H A DSampleViews.java95 * Return a map view of the part storage container.
119 * Return an entity set view of the part storage container.
143 * Return a map view of the shipment-by-part index.
167 * PartBinding is used to bind the stored key/data entry pair for a part
198 Part part = (Part) object;
199 return new PartKey(part.getNumber());
207 Part part = (Part) object;
208 return new PartData(part.getName(), part.getColor(),
209 part
[all...]
/macosx-10.10/BerkeleyDB-21/db/examples_java/src/collections/ship/tuple/
H A DSampleViews.java95 * Return a map view of the part storage container.
119 * Return an entity set view of the part storage container.
143 * Return a map view of the shipment-by-part index.
167 * PartKeyBinding is used to bind the stored key tuple entry for a part to
198 * PartBinding is used to bind the stored key/data entry pair for a part
227 Part part = (Part) object;
228 output.writeString(part.getNumber());
236 Part part = (Part) object;
237 return new PartData(part.getName(), part
[all...]
/macosx-10.10/ICU-531.30/icuSources/common/unicode/
H A Dmessagepattern.h105 * There is always a later MSG_LIMIT part.
121 * would be indicated with such a part.
135 * When formatting, replace this part's substring with the
146 * This part is followed by either an ARG_NUMBER or ARG_NAME,
148 * and finally an ARG_LIMIT part.
191 * The part value is the integer value.
198 * The part value is an index into an internal array of numeric values;
224 * The argument has a "simple" type which is provided by the ARG_TYPE part.
225 * An ARG_STYLE part might follow that.
240 * that value is provided by the ARG_INT or ARG_DOUBLE part precedin
666 partSubstringMatches(const Part &part, const UnicodeString &s) const argument
[all...]
/macosx-10.10/ncurses-44/ncurses/menu/
H A Dm_driver.c57 | const char *part,
60 | Description : Checks whether or not part is a substring of string.
68 const char *part,
72 assert(part && string);
75 while (*string && *part)
77 if (toupper(UChar(*string++)) != toupper(UChar(*part)))
79 part++;
84 while (*string && *part)
85 if (*part != *string++)
87 part
66 Is_Sub_String( bool IgnoreCaseFlag, const char *part, const char *string ) argument
[all...]
/macosx-10.10/diskdev_cmds-576/fdisk.tproj/
H A Dcmd.c65 #include "part.h"
78 bzero(mbr->part, sizeof(mbr->part));
190 pp = &mbr->part[pn];
235 if (mbr->part[pn-1].id != 0) {
236 pp->bs = mbr->part[pn-1].bs + mbr->part[pn-1].ns;
283 pp = &mbr->part[pn];
321 off = mbr->part[pn].bs;
324 if ((mbr->part[p
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/efl/DefaultTheme/widget/button/
H A Dbutton.edc62 part {
104 part {
/macosx-10.10/WebCore-7600.1.25/platform/efl/DefaultTheme/widget/entry/
H A Dentry.edc55 part {
101 part {

Completed in 393 milliseconds

1234567891011>>