Searched refs:contents (Results 1 - 20 of 20) sorted by relevance

/haiku/src/apps/glteapot/
H A Dutil.h13 template <class contents>
15 contents* car;
19 inline LispNode(contents* value)
23 inline LispNode(contents* value, LispNode* next)
27 inline LispNode(LispNode* prev, contents* value)
32 template <class contents>
34 LispNode<contents> *first;
45 inline LispList(LispNode<contents>* _first)
66 inline int is_present(contents* element)
68 for (LispNode<contents>* nod
[all...]
/haiku/src/data/bin/
H A Duserguide8 https://www.haiku-os.org/docs/userguide/en/contents.html"
10 userGuide=$userGuideDir/en/contents.html
11 localizedUserGuide=$userGuideDir/"$language"/contents.html
12 localizedUserGuideBase=$userGuideDir/"$languageBase"/contents.html
/haiku/src/kits/storage/
H A DSymLink.cpp82 // Reads the contents of the symbolic link into a buffer.
106 // Combines a directory path and the contents of this symbolic link to form an
125 // Combines a directory path and the contents of this symbolic link to form an
133 char contents[B_PATH_NAME_LENGTH]; local
134 ssize_t result = ReadLink(contents, sizeof(contents));
136 if (BPrivate::Storage::is_absolute_path(contents))
137 result = path->SetTo(contents);
139 result = path->SetTo(dir, contents);
153 char contents[B_PATH_NAME_LENGT local
[all...]
/haiku/src/apps/mediaplayer/support/
H A DFileReadWrite.cpp38 FileReadWrite::Write(const BString& contents) const
40 ssize_t written = fFile->Write(contents.String(), contents.Length());
41 if (written != contents.Length())
H A DFileReadWrite.h23 status_t Write(const BString& contents) const;
/haiku/build/scripts/
H A Dbuild_archive56 echo "Preparing contents of archive $archive ..."
77 contents=$(ls)
78 tar --format ustar -czf $archive $contents
/haiku/src/kits/storage/disk_device/jobs/
H A DMoveJob.h22 PartitionReference** contents,
H A DMoveJob.cpp43 MoveJob::Init(off_t offset, PartitionReference** contents, int32 contentsCount) argument
51 fContents[i] = contents[i];
/haiku/src/preferences/mail/
H A DConfigViews.cpp65 BView* contents = new BView(NULL, 0); local
66 AddChild(contents);
68 BLayoutBuilder::Grid<>(contents, 0.f)
145 BView* contents = new BView(NULL, 0); local
146 AddChild(contents);
148 BLayoutBuilder::Group<>(contents, B_VERTICAL)
H A DFilterConfigView.cpp191 BView* contents = new BView("contents", 0); local
192 AddChild(contents);
194 BLayoutBuilder::Group<>(contents, B_VERTICAL)
225 BView* contents = new BView(NULL, 0); local
226 box->AddChild(contents);
256 BLayoutBuilder::Group<>(contents, B_VERTICAL)
/haiku/src/tests/system/libroot/posix/
H A Dseek_and_write_test.cpp16 test_for_content(int fd, off_t start, const char* contents, size_t length) argument
27 if (memcmp(contents, buffer, toRead)) {
32 contents += toRead;
106 // Truncate it again in order to remove its contents
115 // Test contents
/haiku/src/bin/
H A Durlwrapper.cpp98 BString contents; local
100 if (f.ReadAt(0LL, contents.LockBuffer(size), size) < B_OK)
102 contents.UnlockBuffer();
103 while (contents.Length()) {
105 int32 cr = contents.FindFirst('\n');
107 cr = contents.Length();
108 //contents.MoveInto(line, 0, cr);
109 contents.CopyInto(line, 0, cr);
110 contents.Remove(0, cr+1);
136 BString contents; local
[all...]
/haiku/headers/private/interface/
H A DAboutWindow.h43 const char** contents = NULL);
/haiku/src/kits/interface/
H A DAboutWindow.cpp570 BAboutWindow::AddText(const char* header, const char** contents) argument
587 if (contents != NULL) {
589 for (int32 i = 0; contents[i]; i++)
590 text << indent << contents[i] << "\n"; local
595 if (contents != NULL && header != NULL) {
/haiku/src/system/libroot/posix/glibc/extensions/
H A Dobstack.c204 h->next_free = h->object_base = chunk->contents;
264 h->next_free = h->object_base = chunk->contents;
308 __INT_TO_PTR ((__PTR_TO_INT (new_chunk->contents) + h->alignment_mask)
334 if (h->object_base == old_chunk->contents && ! h->maybe_empty_object)
H A Dobstack.h104 /* Don't do the contents of this file more than once. */
162 char contents[4]; /* objects begin here */
394 (__o->chunk->prev == 0 && __o->next_free - __o->chunk->contents == 0); })
514 ((h)->chunk->prev == 0 && (h)->next_free - (h)->chunk->contents == 0)
161 char contents[4]; /* objects begin here */ member in struct:_obstack_chunk
/haiku/src/tests/add-ons/print/ppd/ui/
H A DPPDConfigView.cpp421 void SetScrollBar(BScrollBar* scroller, float contents, float client) argument
424 float extent = contents - client;
427 scroller->SetProportion(1-extent / contents);
/haiku/src/tests/kits/app/broster/
H A DFindAppTester.cpp123 const char *contents = NULL)
125 if (contents)
126 system((string("echo -n \"") + contents + "\" > " + filename).c_str());
H A DLaunchTester.cpp171 const char *contents = NULL)
173 if (contents)
174 system((string("echo -n \"") + contents + "\" > " + filename).c_str());
/haiku/docs/develop/kits/storage/resources/
H A DResourcesFormat.tex41 attributes resources are part of the file contents and thus do not require a
610 \item{The unknown section: The contents of the unknown section and of unknown

Completed in 116 milliseconds