/external/chromium/chrome/browser/autofill/ |
D | form_group.cc | 44 FieldTypeSet a, b, intersection; in IntersectionOfTypesHasEqualValues() local 49 std::inserter(intersection, intersection.begin())); in IntersectionOfTypesHasEqualValues() 52 if (intersection.empty()) in IntersectionOfTypesHasEqualValues() 55 for (FieldTypeSet::const_iterator iter = intersection.begin(); in IntersectionOfTypesHasEqualValues() 56 iter != intersection.end(); ++iter) { in IntersectionOfTypesHasEqualValues() 66 FieldTypeSet a, b, intersection; in MergeWith() local 71 std::inserter(intersection, intersection.begin())); in MergeWith() 73 for (FieldTypeSet::const_iterator iter = intersection.begin(); in MergeWith() 74 iter != intersection.end(); ++iter) { in MergeWith()
|
/external/webkit/Source/WebCore/platform/graphics/ |
D | FloatPoint.cpp | 88 …t& p1, const FloatPoint& p2, const FloatPoint& d1, const FloatPoint& d2, FloatPoint& intersection) in findIntersection() argument 100 intersection.setX(p1.x()); in findIntersection() 101 intersection.setY(dSlope * intersection.x() + dOffset); in findIntersection() 105 intersection.setX(d1.x()); in findIntersection() 106 intersection.setY(pSlope * intersection.x() + pOffset); in findIntersection() 111 intersection.setX((dOffset - pOffset) / (pSlope - dSlope)); in findIntersection() 112 intersection.setY(pSlope * intersection.x() + pOffset); in findIntersection()
|
D | FloatPoint.h | 208 …t& p1, const FloatPoint& p2, const FloatPoint& d1, const FloatPoint& d2, FloatPoint& intersection);
|
D | FloatRect.h | 193 inline FloatRect intersection(const FloatRect& a, const FloatRect& b) in intersection() function
|
D | IntRect.h | 211 inline IntRect intersection(const IntRect& a, const IntRect& b) in intersection() function
|
/external/chromium/chrome/browser/bookmarks/ |
D | bookmark_index.cc | 207 NodeSet intersection; in CombineMatchesInPlace() local 210 std::inserter(intersection, intersection.begin())); in CombineMatchesInPlace() 211 if (intersection.empty()) { in CombineMatchesInPlace() 215 match->nodes.swap(intersection); in CombineMatchesInPlace() 226 NodeSet intersection; in CombineMatches() local 229 std::inserter(intersection, intersection.begin())); in CombineMatches() 230 if (!intersection.empty()) { in CombineMatches() 235 combined_match.nodes.swap(intersection); in CombineMatches()
|
/external/wpa_supplicant_8/src/p2p/ |
D | p2p_go_neg.c | 46 struct p2p_channels intersection; in p2p_peer_channels_check() local 84 p2p_channels_intersect(own, &dev->channels, &intersection); in p2p_peer_channels_check() 89 (int) intersection.reg_classes); in p2p_peer_channels_check() 90 if (intersection.reg_classes == 0) { in p2p_peer_channels_check() 297 struct p2p_channels *intersection) in p2p_reselect_channel() argument 313 p2p_channels_includes(intersection, op_reg_class, op_channel)) { in p2p_reselect_channel() 325 p2p_channels_includes(intersection, op_reg_class, op_channel)) { in p2p_reselect_channel() 338 cl = &intersection->reg_class[0]; in p2p_reselect_channel() 585 struct p2p_channels intersection; local 588 &intersection); [all …]
|
D | p2p_invitation.c | 116 struct p2p_channels intersection, *channels = NULL; in p2p_process_invitation_req() local 200 &intersection); in p2p_process_invitation_req() 201 if (!p2p_channels_includes(&intersection, reg_class, channel)) in p2p_process_invitation_req() 211 channels = &intersection; in p2p_process_invitation_req() 227 &intersection); in p2p_process_invitation_req() 231 channels = &intersection; in p2p_process_invitation_req()
|
/external/chromium/chrome/browser/sync/ |
D | backend_migrator.cc | 117 ModelTypeSet intersection; in Observe() local 120 std::inserter(intersection, intersection.end())); in Observe() 129 (state_ == DISABLING_TYPES && !intersection.empty())) { in Observe()
|
/external/chromium/chrome/browser/instant/ |
D | instant_loader.cc | 932 gfx::Rect intersection(omnibox_bounds_.Intersect(preview_bounds)); in GetOmniboxBoundsInTermsOfPreview() local 935 if (!intersection.IsEmpty()) { in GetOmniboxBoundsInTermsOfPreview() 936 intersection.Offset(-preview_bounds.origin().x(), in GetOmniboxBoundsInTermsOfPreview() 942 DCHECK_EQ(0, intersection.y()); in GetOmniboxBoundsInTermsOfPreview() 943 DCHECK_LE(0, intersection.x()); in GetOmniboxBoundsInTermsOfPreview() 944 DCHECK_LE(0, intersection.width()); in GetOmniboxBoundsInTermsOfPreview() 945 DCHECK_LE(0, intersection.height()); in GetOmniboxBoundsInTermsOfPreview() 947 return intersection; in GetOmniboxBoundsInTermsOfPreview()
|
/external/webkit/Source/WebKit2/UIProcess/qt/ |
D | TiledDrawingAreaTileQt.cpp | 82 IntRect tileDirtyRect = intersection(dirtyRect, m_rect); in invalidate() 111 IntRect target = intersection(rect, m_rect); in paint()
|
/external/qemu/distrib/sdl-1.2.12/src/video/ |
D | SDL_surface.c | 335 SDL_bool SDL_IntersectRect(const SDL_Rect *A, const SDL_Rect *B, SDL_Rect *intersection) in SDL_IntersectRect() argument 346 intersection->x = Amin; in SDL_IntersectRect() 349 intersection->w = Amax - Amin > 0 ? Amax - Amin : 0; in SDL_IntersectRect() 358 intersection->y = Amin; in SDL_IntersectRect() 361 intersection->h = Amax - Amin > 0 ? Amax - Amin : 0; in SDL_IntersectRect() 363 return (intersection->w && intersection->h); in SDL_IntersectRect()
|
/external/webkit/Source/WebCore/platform/graphics/qt/ |
D | TileQt.cpp | 87 IntRect tileDirtyRect = intersection(dirtyRect, m_rect); in invalidate() 147 IntRect target = intersection(rect, m_rect); in paint()
|
/external/chromium/chrome/browser/ui/ |
D | window_sizer_mac.mm | 72 gfx::Rect intersection = monitor_area.Intersect(match_rect); 73 int area = intersection.width() * intersection.height();
|
/external/webkit/Tools/Scripts/ |
D | webkit-patch | 48 if set(["-v", "--verbose"]).intersection(set(sys.argv)):
|
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/ |
D | PKIXCertPathValidatorSpi.java | 510 …PKIXPolicyNode intersection = RFC3280CertPathUtilities.wrapupCertG(certPath, paramsPKIX, userIniti… in engineValidate() local 513 if ((explicitPolicy > 0) || (intersection != null)) in engineValidate() 515 return new PKIXCertPathValidatorResult(trust, intersection, cert.getPublicKey()); in engineValidate()
|
D | RFC3280CertPathUtilities.java | 2407 PKIXPolicyNode intersection; in wrapupCertG() local 2419 intersection = null; in wrapupCertG() 2487 intersection = validPolicyTree; in wrapupCertG() 2565 intersection = validPolicyTree; in wrapupCertG() 2567 return intersection; in wrapupCertG()
|
/external/webkit/Tools/Scripts/webkitpy/common/net/ |
D | failuremap.py | 69 if revision_set.intersection(
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/ |
D | PageOverlay.cpp | 103 IntRect paintRect = intersection(dirtyRect, bounds()); in drawRect()
|
/external/guava/src/com/google/common/collect/ |
D | Multisets.java | 339 public static <E> Multiset<E> intersection( 351 return Sets.intersection(
|
/external/opencv/cvaux/src/ |
D | cv3dtracker.cpp | 65 static bool intersection(CvPoint3D32f o1, CvPoint3D32f p1, 478 if (!intersection(p1a, p1b, p2a, p2b, r1, r2)) in cv3dTrackerLocateObjects() 523 static bool intersection(CvPoint3D32f o1, CvPoint3D32f p1, in intersection() function
|
/external/webkit/Tools/Scripts/webkitpy/tool/commands/ |
D | rebaselineserver.py | 273 extensions_to_move = current_extensions.intersection( 276 if extensions_to_move.intersection(
|
/external/webkit/Source/WebKit/android/nav/ |
D | CachedFrame.cpp | 533 WebCore::IntRect intersection(cursorRect); in findBestHitAt() local 534 intersection.intersect(rect); in findBestHitAt() 535 *x = intersection.x() + (intersection.width() >> 1); in findBestHitAt() 536 *y = intersection.y() + (intersection.height() >> 1); in findBestHitAt()
|
/external/webkit/Source/WebKit2/WebProcess/Plugins/ |
D | PluginView.cpp | 522 …IntRect paintRectInWindowCoordinates = intersection(dirtyRectInWindowCoordinates, clipRectInWindow… in paint() 631 return intersection(frameRectInWindowCoordinates, windowClipRect); in clipRectInWindowCoordinates() 835 …parent()->hostWindow()->invalidateContentsAndWindow(intersection(dirtyRectInWindowCoordinates, cli… in invalidateRect()
|
/external/chromium/chrome/browser/extensions/ |
D | extension_file_browser_private_api.cc | 172 ActionList intersection(common_tasks.size()); in FindCommonTasks() local 178 intersection.begin()); in FindCommonTasks() 181 intersection.begin(), in FindCommonTasks()
|