Searched refs:inverse (Results 1 - 25 of 30) sorted by relevance

12

/haiku/src/tests/servers/app/inverse_clipping/
H A Dmain.cpp21 rectClipper(BView* view, BRect rect, bool inverse) argument
23 if (inverse)
30 pictureClipper(BView* view, BRect rect, bool inverse) argument
39 if (inverse)
46 shapeClipper(BView* view, BRect rect, bool inverse) argument
55 if (inverse)
63 testBase(BView* view, clipper clip, bool inverse) argument
65 clip(view, baseRect, inverse);
83 testCross(BView* view, clipper clip, bool inverse) argument
85 clip(view, crossRect, inverse);
91 testCorner(BView* view, clipper clip, bool inverse) argument
[all...]
/haiku/src/servers/app/drawing/
H A DAlphaMaskCache.h34 bool inverse);
47 bool inverse)
50 fInverse(inverse),
45 ShapeMaskElement(const shape_data* shape, ShapeAlphaMask* mask, AlphaMask* previousMask, bool inverse) argument
H A DAlphaMask.h33 bool inverse);
121 BPoint where, bool inverse);
142 bool inverse);
165 BPoint where, bool inverse);
174 BPoint where, bool inverse);
H A DAlphaMask.cpp31 AlphaMask::AlphaMask(AlphaMask* previousMask, bool inverse) argument
38 fInverse(inverse),
351 BPoint where, bool inverse)
353 AlphaMask(previousMask, inverse),
448 bool inverse)
450 VectorAlphaMask<PictureAlphaMask>(previousMask, where, inverse),
510 const shape_data& shape, BPoint where, bool inverse)
512 VectorAlphaMask<ShapeAlphaMask>(previousMask, where, inverse),
539 BPoint where, bool inverse)
543 previousMask, inverse), tru
350 VectorAlphaMask(AlphaMask* previousMask, BPoint where, bool inverse) argument
446 PictureAlphaMask(AlphaMask* previousMask, ServerPicture* picture, const DrawState& drawState, BPoint where, bool inverse) argument
509 ShapeAlphaMask(AlphaMask* previousMask, const shape_data& shape, BPoint where, bool inverse) argument
538 Create(AlphaMask* previousMask, const shape_data& shape, BPoint where, bool inverse) argument
[all...]
H A DAlphaMaskCache.cpp106 bool inverse)
117 ShapeMaskElement element(&shape, NULL, previousMask, inverse);
105 Get(const shape_data& shape, AlphaMask* previousMask, bool inverse) argument
/haiku/src/add-ons/kernel/file_systems/netfs/shared/
H A DPortChannel.cpp27 PortChannel::PortChannel(const Info* info, bool inverse) argument
29 fSendPort(inverse ? info->receivePort : info->sendPort),
30 fReceivePort(inverse ? info->sendPort : info->receivePort),
H A DPortConnection.cpp175 if (i < fUpStreamChannels) // inverse, since we're on server side
190 bool inverse)
192 PortChannel* channel = (info ? new(std::nothrow) PortChannel(info, inverse)
189 _CreateChannel(PortChannel** _channel, PortChannel::Info* info, bool inverse) argument
/haiku/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DPortChannel.h19 PortChannel(const Info* info, bool inverse);
H A DPortConnection.h26 bool inverse = false);
/haiku/src/servers/app/
H A DCanvas.cpp150 Canvas::ClipToRect(BRect rect, bool inverse) argument
152 bool needDrawStateUpdate = fDrawState->ClipToRect(rect, inverse);
159 Canvas::ClipToShape(shape_data* shape, bool inverse) argument
161 fDrawState->ClipToShape(shape, inverse);
H A DCanvas.h59 bool ClipToRect(BRect rect, bool inverse);
60 void ClipToShape(shape_data* shape, bool inverse);
H A DDrawState.h89 bool ClipToRect(BRect rect, bool inverse);
90 void ClipToShape(shape_data* shape, bool inverse);
H A DDrawState.cpp475 DrawState::ClipToRect(BRect rect, bool inverse) argument
478 if (!inverse) {
511 ClipToShape(&rectShape, inverse);
516 if (inverse) {
538 DrawState::ClipToShape(shape_data* shape, bool inverse) argument
547 BPoint(0, 0), inverse), true);
H A DServerWindow.cpp2097 bool inverse = false; local
2107 if (link.Read<bool>(&inverse) != B_OK)
2116 *fCurrentView->CurrentState(), where, inverse), true);
2186 bool inverse; local
2189 link.Read<bool>(&inverse);
2193 rect, inverse);
2209 bool inverse; local
2210 link.Read<bool>(&inverse);
2221 fCurrentView->ClipToShape(&shape, inverse);
3967 bool inverse local
3990 bool inverse; local
4001 bool inverse; local
[all...]
/haiku/src/kits/tracker/
H A DSelectionWindow.cpp101 fInverseCheckBox = new BCheckBox("inverse", B_TRANSLATE("Invert"), NULL);
264 bool inverse = fInverseCheckBox->Value() != 0; local
268 return inverse;
H A DTrackerString.cpp182 bool inverse = *pattern == '^' || *pattern == '!'; local
185 if (inverse)
234 return (match ^ inverse) != 0;
/haiku/headers/private/interface/
H A DPictureDataWriter.h52 const BPoint& origin, bool inverse);
127 bool inverse);
130 const void* ptList, bool inverse);
H A DPicturePlayer.h93 void (*clip_to_rect)(void* userData, const BRect& rect, bool inverse);
95 int32 ptCount, const BPoint ptList[], bool inverse);
/haiku/src/kits/interface/
H A DPicturePlayer.cpp492 clip_to_rect(void* _context, const BRect& rect, bool inverse) argument
496 context->function_table[53])(context->user_data, rect, inverse);
502 int32 ptCount, const BPoint ptList[], bool inverse)
507 ptCount, ptList, inverse);
1307 const bool* inverse; local
1309 || !reader.Get(where) || !reader.Get(inverse))
1312 callbacks.clip_to_picture(userData, *token, *where, *inverse);
1645 const bool* inverse; local
1648 if (callbacks.clip_to_rect == NULL || !reader.Get(inverse)
1653 callbacks.clip_to_rect(userData, *rect, *inverse);
501 clip_to_shape(void* _context, int32 opCount, const uint32 opList[], int32 ptCount, const BPoint ptList[], bool inverse) argument
1659 const bool* inverse; local
[all...]
H A DPictureDataWriter.cpp268 const BPoint& origin, bool inverse)
275 Write<bool>(inverse);
897 PictureDataWriter::WriteClipToRect(const BRect& rect, bool inverse) argument
901 Write<bool>(inverse);
914 int32 ptCount, const void* ptList, bool inverse)
918 Write<bool>(inverse);
267 WriteClipToPicture(int32 pictureToken, const BPoint& origin, bool inverse) argument
913 WriteClipToShape(int32 opCount, const void* opList, int32 ptCount, const void* ptList, bool inverse) argument
/haiku/src/apps/glteapot/
H A DQuaternion.h222 Quaternion inverse() const function in class:Quaternion
369 inverse(const Quaternion& q) function
371 return q.inverse();
/haiku/src/apps/haiku3d/
H A DQuaternion.h229 Quaternion inverse() const function in class:Quaternion
376 inverse(const Quaternion& q) function
378 return q.inverse();
/haiku/src/add-ons/kernel/file_systems/btrfs/
H A DExtentAllocator.h116 bool inverse = false);
H A DExtentAllocator.cpp430 BlockGroup::LoadExtent(CachedExtentTree* tree, bool inverse) argument
437 if (inverse == false)
466 if (inverse == false) {
480 if (inverse == true)
H A DBTree.h286 void Rewind(bool inverse = false);

Completed in 196 milliseconds

12