Searched refs:code (Results 151 - 175 of 474) sorted by path

1234567891011>>

/haiku/src/kits/interface/
H A DGridView.cpp69 BGridView::Perform(perform_code code, void* _data) argument
71 return BView::Perform(code, _data);
H A DGroupLayout.cpp338 BGroupLayout::Perform(perform_code code, void* _data) argument
340 return BTwoDimensionalLayout::Perform(code, _data);
H A DGroupView.cpp71 BGroupView::Perform(perform_code code, void* _data) argument
73 return BView::Perform(code, _data);
H A DInput.cpp165 BInputDevice::Control(uint32 code, BMessage *message) argument
174 command.AddInt32("code", code);
213 BInputDevice::Control(input_device_type type, uint32 code, BMessage *message) argument
219 command.AddInt32("code", code);
H A DLayout.cpp638 BLayout::Perform(perform_code code, void* _data) argument
640 return BLayoutItem::Perform(code, _data);
H A DLayoutItem.cpp207 BLayoutItem::Perform(perform_code code, void* _data) argument
209 return BArchivable::Perform(code, _data);
H A DPicture.cpp297 BPicture::Perform(perform_code code, void* arg) argument
299 return BArchivable::Perform(code, arg);
H A DPictureButton.cpp294 BPictureButton::MouseMoved(BPoint where, uint32 code, argument
298 if (code == B_EXITED_VIEW)
300 else if (code == B_ENTERED_VIEW)
303 BControl::MouseMoved(where, code, dragMessage);
415 BPictureButton::Perform(perform_code code, void* _data) argument
417 switch (code) {
471 return BControl::Perform(code, _data);
H A DPopUpMenu.cpp129 BPopUpMenu::MouseMoved(BPoint point, uint32 code, const BMessage* message) argument
131 BView::MouseMoved(point, code, message);
179 BPopUpMenu::Perform(perform_code code, void* _data) argument
181 switch (code) {
230 return BMenu::Perform(code, _data);
H A DPrivateScreen.cpp420 int32 code; local
421 if (link.FlushWithReply(code) == B_OK
422 && code == B_OK)
H A DRadioButton.cpp328 BRadioButton::MouseMoved(BPoint where, uint32 code, argument
403 BRadioButton::Perform(perform_code code, void* _data) argument
405 switch (code) {
468 return BControl::Perform(code, _data);
H A DShape.cpp521 BShape::Perform(perform_code code, void* data) argument
523 return BArchivable::Perform(code, data);
H A DSlider.cpp306 BSlider::Perform(perform_code code, void* _data) argument
308 switch (code) {
369 return BControl::Perform(code, _data);
H A DStringView.cpp504 BStringView::Perform(perform_code code, void* _data) argument
506 switch (code) {
563 return BView::Perform(code, _data);
H A DTwoDimensionalLayout.cpp47 // code and serves as a proxy for the layout, providing service methods
1424 BTwoDimensionalLayout::Perform(perform_code code, void* _data) argument
1426 return BAbstractLayout::Perform(code, _data);
H A DWindowStack.cpp70 int32 code = B_ERROR; local
71 if (fLink->FlushWithReply(code) != B_OK)
72 return code;
105 int32 code = B_ERROR; local
106 if (fLink->FlushWithReply(code) != B_OK)
107 return code;
121 int32 code = B_ERROR; local
122 fLink->FlushWithReply(code);
123 if (code != B_OK)
140 int32 code local
163 int32 code = B_ERROR; local
[all...]
/haiku/src/kits/interface/textview_support/
H A DWidthBuffer.cpp38 uint32 code; member in struct:BPrivate::hashed_escapement
43 code = kInvalidCode;
49 /*! \brief Convert a UTF8 char to a code, which will be used
53 \return The code for the given character,
242 while ((found = widths[hashed].code) != kInvalidCode) {
313 while ((found = widths[hashed].code) != kInvalidCode) {
322 widths[hashed].code = value;
338 if (widths[oldPos].code != kInvalidCode) {
340 = Hash(widths[oldPos].code) & (newSize - 1);
341 while (newWidths[newPos].code !
[all...]
/haiku/src/kits/mail/
H A DMailAttachment.cpp700 type_code code; local
701 memcpy(&code, &start[index], sizeof(type_code));
702 code = B_BENDIAN_TO_HOST_INT32(code);
710 swap_data(code, &start[index], buf_length, B_SWAP_BENDIAN_TO_HOST);
711 _attributes.AddData(name, code, &start[index], buf_length);
H A DMailContainer.cpp135 /* Debug code
417 BMailComponent *code = (BMailComponent *)_components_in_code.ItemAt(i); local
418 status_t status = code->RenderToRFC822(render_to); //----Easy enough
/haiku/src/kits/media/
H A DControllable.cpp17 * * Redistributions of source code must retain the above copyright notice,
269 reply.code = 0;
276 reply.code = fWeb->TypeCode();
292 reply.code = 0;
H A DDataExchange.cpp214 int32 code; local
215 status = read_port_etc(request->reply_port, &code, reply, replySize,
H A DDecoderPlugin.cpp45 Decoder::Perform(perform_code code, void* _data) argument
H A DEncoderPlugin.cpp33 Encoder::AddTrackInfo(uint32 code, const void* data, size_t size, uint32 flags) argument
104 Encoder::Perform(perform_code code, void* data) argument
H A DMediaEncoder.cpp173 BMediaEncoder::AddTrackInfo(uint32 code, const char* data, size_t size) argument
180 return fEncoder->AddTrackInfo(code, data, size);
H A DMediaFormats.cpp382 type_code code;
385 || reply.GetInfo("formats", &code, &count) < B_OK)

Completed in 202 milliseconds

1234567891011>>