HomeSort by relevance Sort by last modified time
    Searched refs:part (Results 276 - 300 of 594) sorted by null

<<11121314151617181920>>

  /system/media/camera/docs/
camera_metadata_tag_info.mako 21 * It is logically a part of camera_metadata.c. It is broken out for ease of
  /build/core/
cleanbuild.mk 26 # $(2): indicate to not use makefile path as part of step id if not empty.
46 $(eval # for build/core/cleanspec.mk, dont use makefile path as part of step id) \
120 # Don't bother with this extra part when explicitly building the sdk product.
  /external/webkit/Source/WebCore/inspector/front-end/
ElementsPanel.js 702 var part = "#" + idAttribute;
703 title += part;
704 idElement.appendChild(document.createTextNode(part));
723 var part = "." + className;
724 title += part;
725 classesElement.appendChild(document.createTextNode(part));
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderTreeAsText.cpp 476 const RenderPart* part = toRenderPart(const_cast<RenderObject*>(&o)); local
477 if (part->widget() && part->widget()->platformWidget()) {
478 QWidget* wid = part->widget()->platformWidget();
483 ts << "isSelfVisible: " << part->widget()->isSelfVisible() << " ";
484 ts << "isParentVisible: " << part->widget()->isParentVisible() << " ";
RenderThemeMac.mm 503 ControlPart part = o->style()->appearance();
506 switch (part) {
523 if (part == MenulistPart) {
554 // Compute an offset between the part renderer and the input renderer
842 bool RenderThemeMac::supportsMeter(ControlPart part) const
844 switch (part) {
856 NSLevelIndicatorStyle RenderThemeMac::levelIndicatorStyleFor(ControlPart part) const
858 switch (part) {
    [all...]
RenderThemeSafari.cpp 96 SOFT_LINK(SafariTheme, paintThemePart, void, __stdcall, (ThemePart part, CGContextRef context, const CGRect& rect, NSControlSize size, ThemeControlState state), (part, context, rect, size, state))
268 // shadow" and the check. We don't consider this part of the bounds of the control in WebKit.
274 // shadow" and the check. We don't consider this part of the bounds of the control in WebKit.
282 // shadow" and the check. We don't consider this part of the bounds of the control in WebKit.
581 // shadow. We don't consider this part of the bounds of the control in WebKit.
586 ThemePart part; local
589 part = SafariTheme::PushButtonPart;
603 part = SafariTheme::SquareButtonPart;
605 paintThemePart(part, paintInfo.context->platformContext(), inflatedRect, controlSize, determineState(o))
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
test_expectations.py 529 return [part.strip().lower() for part in listString.strip().split(' ')]
533 for part in expectations:
534 if not part in self.EXPECTATIONS:
535 self._add_error(lineno, 'Unsupported expectation: %s' % part,
538 expectation = self.EXPECTATIONS[part]
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
ComposeMessageActivity.java 586 // The provider doesn't support multi-part sms's so as soon as the user types
1406 PduPart part = body.getPart(i); local
1441 PduPart part = body.getPart(i); local
1472 PduPart part = body.getPart(i); local
1506 PduPart part = body.getPart(i); local
1551 PduPart part = body.getPart(i); local
    [all...]
  /external/icu4c/tools/tzcode/
tz2icu.cpp 549 // eat 32bit data part
558 // we only use 64bit part
891 FinalRulePart part[2]; member in struct:FinalRule
894 return part[0].isset && part[1].isset;
965 int32_t p = fr.part[0].isset ? 1 : 0;
966 fr.part[p].set(id, mode, month, dom, dow, time, isstd, isgmt, offset);
    [all...]
  /external/valgrind/main/callgrind/
callgrind_annotate.in 8 # This file is part of Callgrind, a cache-simulator and call graph
14 # This file is based heavily on cg_annotate, part of Valgrind.
106 my $part = "";
417 elsif (/^part:\s+(.*)$/) { $part = $1; }
724 if ($part ne "") { $target .= ", part $part"; }
    [all...]
  /external/valgrind/main/exp-sgcheck/
pc_common.c 9 This file is part of Ptrcheck, a Valgrind tool for checking pointer
146 CorePart part; member in struct:__anon17022::__anon17023::__anon17027
203 void h_record_sysparam_error( ThreadId tid, CorePart part, Char* s,
209 xe.XE.SysParam.part = part;
552 if (Vg_CoreSysCall == xe->XE.SysParam.part)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
LayoutEditorDelegate.java 81 import org.eclipse.ui.part.FileEditorInput;
164 * Checks whether an editor part is an instance of {@link CommonXmlEditor}
167 * @param editorPart An editor part. Can be null.
177 GraphicalEditorPart part = (GraphicalEditorPart) editorPart; local
178 return part.getEditorDelegate();
318 * @see org.eclipse.ui.part.EditorPart#setInputWithNotify(org.eclipse.ui.IEditorInput)
532 // even for a multi-part editor:
543 // /* Bug 136310, unless this page is that part's
545 // if (part.getAdapter(IContentOutlinePage.class) == this) {
633 public void selectionChanged(IWorkbenchPart part, ISelection selection)
    [all...]
  /external/chromium/net/base/
net_util.cc 236 bool DecodeBQEncoding(const std::string& part, RFC2047EncodingType enc_type,
240 if (!base::Base64Decode(part, &decoded)) {
244 if (!QPDecode(part, &decoded)) {
310 std::string part = t.token(); local
313 if (part != "=") {
321 charset = part;
325 if (part.size() > 1 ||
326 part.find_first_of("bBqQ") == std::string::npos) {
330 if (part[0] == 'b' || part[0] == 'B')
    [all...]
  /external/eigen/Eigen/src/Core/
MatrixBase.h 1 // This file is part of Eigen, a lightweight C++ template library
235 template<unsigned int Mode> typename internal::eigen2_part_return_type<Derived, Mode>::type part();
236 template<unsigned int Mode> const typename internal::eigen2_part_return_type<Derived, Mode>::type part() const;
238 // huuuge hack. make Eigen2's matrix.part<Diagonal>() work in eigen3. Problem: Diagonal is now a class template instead
239 // of an integer constant. Solution: overload the part() method template wrt template parameters list.
241 const DiagonalWrapper<ConstDiagonalReturnType> part() const function in class:Eigen::MatrixBase
  /external/iptables/iptables/
iptables-xml.c 369 // part=-1 means do conditions, part=1 means do rules, part=0 means do both
371 do_rule_part(char *leveltag1, char *leveltag2, int part, int argc,
399 if (part == 1) { /* skip */
417 if (part == -1 && !argvattr[arg] && (isTarget(argv[arg]))) {
  /external/valgrind/main/drd/
drd_main.c 2 This file is part of drd, a thread error detector.
263 static void drd_pre_mem_read(const CorePart part,
275 static void drd_pre_mem_read_asciiz(const CorePart part,
303 static void drd_post_mem_write(const CorePart part,
  /external/webkit/Source/WebKit/mac/Carbon/
HIWebView.mm 901 // Focus on some part (subview) of this control (view). Maybe
    [all...]
  /external/webkit/WebKitLibraries/
WebKitSystemInterface.h 290 BOOL WKHitTestMediaUIPart(int part, int themeStyle, CGRect bounds, CGPoint point);
291 void WKMeasureMediaUIPart(int part, int themeStyle, CGRect *bounds, CGSize *naturalSize);
292 void WKDrawMediaUIPart(int part, int themeStyle, CGContextRef context, CGRect rect, unsigned state);
  /external/wpa_supplicant_8/src/wps/
wps_common.c 293 void wps_pwd_auth_fail_event(struct wps_context *wps, int enrollee, int part)
302 data.pwd_auth_fail.part = part;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_MotionEstimationMB.c 1420 OMX_U32 part, MaxPart; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtUtils.java 81 import org.eclipse.ui.part.FileEditorInput;
333 * Returns the current active workbench part, or null if not found
335 * @return the current active workbench part, or null
713 * Returns the XML editor for the given editor part
715 * @param part the editor part to look up the editor for
716 * @return the editor or null if this part is not an XML editor
719 public static AndroidXmlEditor getXmlEditor(@NonNull IEditorPart part) {
720 if (part instanceof AndroidXmlEditor) {
721 return (AndroidXmlEditor) part;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
Sdk.java     [all...]
  /external/libxml2/
xmlschemas.c 11279 xmlSchemaParticlePtr part, last = NULL; local
11326 xmlSchemaTreeItemPtr part = NULL, last = NULL; local
14627 xmlSchemaParticlePtr part = local
14648 xmlSchemaParticlePtr part = local
    [all...]
  /device/asus/tilapia/self-extractors/nvidia/staging/keymaster/
NOTICE 146 excluding those notices that do not pertain to any part of
149 (d) If the Work includes a "NOTICE" text file as part of its
153 pertain to any part of the Derivative Works, in at least one
155 as part of the Derivative Works; within the Source form or
  /external/chromium/build/
install-build-deps.sh 73 // This file is part of gold.
100 // This file is part of gold.

Completed in 2796 milliseconds

<<11121314151617181920>>