Searched refs:part (Results 76 - 100 of 441) sorted by relevance

1234567891011>>

/external/webkit/Source/WebKit/efl/DefaultTheme/widget/search/cancel/
H A Dsearch_cancel.edc53 part {
/external/webkit/Source/WebKit/efl/DefaultTheme/widget/search/decoration/
H A Dsearch_decoration.edc53 part {
/external/icu4c/common/
H A Dmessagepattern.cpp342 const Part &part=getPart(--i); local
343 if(part.getType()==UMSGPAT_PART_TYPE_INSERT_CHAR) {
344 modified.insert(part.index, (UChar)part.value);
351 MessagePattern::getNumericValue(const Part &part) const {
352 UMessagePatternPartType type=part.type;
354 return part.value;
356 return numericValues[part.value];
364 * @param pluralStart the index of the first PluralFormat argument style part. (0..countParts()-1)
370 const Part &part local
1187 const MessagePattern::Part &part=msgPattern.getPart(++i); local
[all...]
/external/webkit/Source/WebCore/platform/gtk/
H A DRenderThemeGtk3.cpp139 ControlPart part = renderObject->style()->appearance(); local
140 switch (part) {
143 context = getStyleContext(part == CheckboxPart ? GTK_TYPE_CHECK_BUTTON : GTK_TYPE_RADIO_BUTTON);
152 context = getStyleContext(part == SliderThumbHorizontalPart ? GTK_TYPE_HSCALE : GTK_TYPE_VSCALE);
598 ControlPart part = renderObject->style()->appearance(); local
599 ASSERT(part == SliderHorizontalPart || part == SliderVerticalPart || part == MediaVolumeSliderPart);
601 GtkStyleContext* context = getStyleContext(part == SliderThumbHorizontalPart ? GTK_TYPE_HSCALE : GTK_TYPE_VSCALE);
633 ControlPart part local
668 ControlPart part = renderObject->style()->appearance(); local
[all...]
/external/libvpx/examples/includes/geshi/geshi/
H A Djava5.php35 * This file is part of GeSHi.
71 /* java keywords, part 1: control flow */
81 /* java keywords, part 2 */
93 /* Java keywords, part 3: primitive data types and 'void' */
H A Dactionscript3.php39 * This file is part of GeSHi.
341 //in other keyword groups, that might get highlighted as part of the URL.
H A Ddcs.php12 * DCS (Data Conversion System) is part of Sungard iWorks' Prophet suite and is used
38 * This file is part of GeSHi.
/external/protobuf/gtest/src/
H A Dgtest-test-part.cc34 #include <gtest/gtest-test-part.h>
36 // Indicates that this translation unit is part of Google Test's
/external/valgrind/main/exp-sgcheck/
H A Dpc_common.h9 This file is part of Ptrcheck, a Valgrind tool for checking pointer
47 void h_record_sysparam_error( ThreadId tid, CorePart part, Char* s,
/external/valgrind/main/memcheck/tests/
H A Dholey_buffer_too_small.stderr.exp2 ---- part defined, address error at end ----
20 ---- part defined, address error at start ----
/external/webkit/Source/WebCore/platform/wx/
H A DScrollbarThemeWx.cpp105 IntRect ScrollbarThemeWx::backButtonRect(Scrollbar* scrollbar, ScrollbarPart part, bool) argument
109 if (part == BackButtonEndPart)
126 IntRect ScrollbarThemeWx::forwardButtonRect(Scrollbar* scrollbar, ScrollbarPart part, bool) argument
130 if (part == ForwardButtonStartPart)
/external/webkit/Tools/CodeCoverage/
H A Drun-generate-coverage-data139 for part in split:
140 if part == '':
142 elif part == '^':
145 str = "%s%s%s" % (str,part,os.path.sep)
/external/icu4c/i18n/
H A Dchoicfmt.cpp439 const MessagePattern::Part &part = pattern.getPart(partIndex++); local
440 UMessagePatternPartType type = part.getType();
446 // part is an ARG_INT or ARG_DOUBLE
448 double boundary = pattern.getNumericValue(part);
527 partIndex += 2; // skip the numeric part and ignore the ARG_SELECTOR
558 const MessagePattern::Part &part = pattern.getPart(++partIndex); local
559 if (partIndex == limitPartIndex || part.getType() == UMSGPAT_PART_TYPE_SKIP_SYNTAX) {
560 int32_t index = part.getIndex();
569 prevIndex = part.getLimit(); // SKIP_SYNTAX
/external/skia/src/core/
H A DSkStream.cpp654 size_t part = offset + count > size ? size - offset : count; local
655 memcpy(block->start() + offset, buffer, part);
656 if (count <= part)
658 count -= part;
659 buffer = (const void*) ((char* ) buffer + part);
675 size_t part = offset + count > size ? size - offset : count; local
676 memcpy(buffer, block->start() + offset, part);
677 if (count <= part)
679 count -= part;
680 buffer = (void*) ((char* ) buffer + part);
[all...]
/external/chromium/chrome/browser/resources/
H A Dprint_preview.js157 * nothing. If it can only parse the first part of the string it replaces the
158 * string with the first part. Example: '123abcd' becomes '123'.
173 * If it can't parse the whole string it will replace with the part it parsed.
545 var part = parts[i];
546 var match = part.match(/([0-9]+)-([0-9]+)/);
557 } else if (parseInt(part, 10)) {
558 if (parseInt(part, 10) <= totalPageCount)
559 pageList.push(parseInt(part, 10));
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Dclosurizednamespacesinfo.py301 # identifier is None, that means this token was part of a multi-token
479 for part in parts:
480 if part == 'prototype' or part.isupper():
482 namespace.append(part)
483 if part[0].isupper():
487 # just the identifier with the last part removed. With the exception of
493 # If the last part ends with an underscore, it is a private variable,
/external/webkit/Source/WebCore/platform/
H A DScrollbarThemeComposite.cpp201 void ScrollbarThemeComposite::invalidatePart(Scrollbar* scrollbar, ScrollbarPart part) argument
203 if (part == NoPart)
207 switch (part) {
229 if (part == BackTrackPart)
231 else if (part == ForwardTrackPart)
/external/webkit/Source/WebCore/rendering/
H A DRenderTheme.cpp2 * This file is part of the theme implementation for form controls in WebCore.
75 ControlPart part = style->appearance(); local
85 if (part == MenulistPart) {
87 part = MenulistButtonPart;
99 switch (part) {
111 borderBox = m_theme->controlBorder(part, style->font(), borderBox, style->effectiveZoom());
140 LengthBox paddingBox = m_theme->controlPadding(part, style->font(), style->paddingBox(), style->effectiveZoom());
145 if (m_theme->controlRequiresPreWhiteSpace(part))
151 LengthSize controlSize = m_theme->controlSize(part, style->font(), LengthSize(style->width(), style->height()), style->effectiveZoom());
158 LengthSize minControlSize = m_theme->minimumControlSize(part, styl
[all...]
H A DRenderScrollbarPart.cpp38 RenderScrollbarPart::RenderScrollbarPart(Node* node, RenderScrollbar* scrollbar, ScrollbarPart part) argument
41 , m_part(part)
H A DRenderThemeWinCE.h2 * This file is part of the WebKit project.
37 ThemeData(int part, int state) argument
38 : m_part(part)
/external/valgrind/main/include/
H A Dpub_tool_tooliface.h7 This file is part of Valgrind, a dynamic binary instrumentation
243 Valgrind. Other tools not distributed as part of Valgrind should
282 // eg. if the Error's `extra' part contains an ExeContext, `res' should be
309 // Return value: must be the size of the `extra' part in bytes -- used by
586 void VG_(track_pre_mem_read) (void(*f)(CorePart part, ThreadId tid,
588 void VG_(track_pre_mem_read_asciiz)(void(*f)(CorePart part, ThreadId tid,
590 void VG_(track_pre_mem_write) (void(*f)(CorePart part, ThreadId tid,
592 void VG_(track_post_mem_write) (void(*f)(CorePart part, ThreadId tid,
597 void VG_(track_pre_reg_read) (void(*f)(CorePart part, ThreadId tid,
600 void VG_(track_post_reg_write)(void(*f)(CorePart part, ThreadI
[all...]
/external/webkit/Source/WebCore/bindings/scripts/
H A Dgobject-generate-headers.pl5 # This file is part of WebKit
29 /* This file is part of the WebKit open source project.
/external/webkit/Source/WebKit/efl/DefaultTheme/widget/check/
H A Dcheck.edc69 part {
/external/webkit/Source/WebKit/efl/DefaultTheme/widget/file/
H A Dfile.edc60 part {
/external/webkit/Source/WebKit/efl/DefaultTheme/widget/radio/
H A Dradio.edc68 part {

Completed in 732 milliseconds

1234567891011>>