Home
last modified time | relevance | path

Searched refs:book (Results 1 – 25 of 324) sorted by relevance

12345678910>>...13

/third_party/boost/libs/container_hash/examples/
Dbooks.cpp18 library::book knife(3458, "Zane Grey", "The Hash Knife Outfit"); in main()
19 library::book dandelion(1354, "Paul J. Shanley", "Hash & Dandelion Greens"); in main()
21 boost::hash<library::book> book_hasher; in main()
41 bool operator==(book const& a, book const& b) in operator ==()
46 std::size_t hash_value(book const& b) in hash_value()
Dbooks.hpp14 struct book struct
20 book(int i, std::string const& a, std::string const& t) in book() function
24 bool operator==(book const&, book const&);
25 std::size_t hash_value(book const&);
/third_party/boost/libs/bimap/example/
Dtutorial_info_hook.cpp44 typedef bm_type::value_type book; in tutorial_about_info_hook() typedef
50 book( "Bjarne Stroustrup" , "The C++ Programming Language", in tutorial_about_info_hook()
100 typedef bm_type::value_type book; in tutorial_about_tagged_info_hook() typedef
106 book( "Bjarne Stroustrup" , "The C++ Programming Language", in tutorial_about_tagged_info_hook()
140 typedef bm_type::value_type book; in bimap_without_an_info_hook() typedef
144 bm.insert( book( "Bjarne Stroustrup" , "The C++ Programming Language" ) ); in bimap_without_an_info_hook()
145 bm.insert( book( "Scott Meyers" , "Effective C++" ) ); in bimap_without_an_info_hook()
146 bm.insert( book( "Andrei Alexandrescu" , "Modern C++ Design" ) ); in bimap_without_an_info_hook()
/third_party/protobuf/src/google/protobuf/util/internal/
Dprotostream_objectsource_test.cc369 Book book; in TEST_P() local
370 book.set_title("My Book"); in TEST_P()
371 book.set_allocated_author(author); in TEST_P()
379 DoTest(book, Book::descriptor()); in TEST_P()
440 Book* book = new Book(); in TEST_P() local
441 book->set_length(250); in TEST_P()
442 book->set_published(2014L); in TEST_P()
444 nested.set_allocated_book(book); in TEST_P()
475 Book book; in TEST_P() local
479 Book_Label* label = book.add_labels(); in TEST_P()
[all …]
Dprotostream_objectwriter_test.cc204 Book book; in TEST_P() local
205 book.set_title("My Title"); in TEST_P()
206 book.set_length(222); in TEST_P()
207 book.set_content(content); in TEST_P()
214 CheckOutput(book); in TEST_P()
218 Book book; in TEST_P() local
219 book.set_title("Some Book"); in TEST_P()
220 book.set_length(102); in TEST_P()
221 Publisher* publisher = book.mutable_publisher(); in TEST_P()
223 Author* robert = book.mutable_author(); in TEST_P()
[all …]
/third_party/boost/libs/multi_index/example/
Dip_allocator.cpp48 struct book struct
55 book(const shared_string::allocator_type& al): in book() argument
59 friend std::ostream& operator<<(std::ostream& os,const book& b) in operator <<()
112 book,
115 BOOST_MULTI_INDEX_MEMBER(book,shared_string,author)
118 BOOST_MULTI_INDEX_MEMBER(book,shared_string,name),
122 BOOST_MULTI_INDEX_MEMBER(book,unsigned,prize)
125 bip::allocator<book,bip::managed_mapped_file::segment_manager>
216 rng.first,rng.second,std::ostream_iterator<book>(std::cout)); in main()
225 std::ostream_iterator<book>(std::cout)); in main()
[all …]
/third_party/protobuf/examples/
Dlist_people.go34 func listPeople(w io.Writer, book *pb.AddressBook) {
35 for _, p := range book.People {
54 book := &pb.AddressBook{}
55 if err := proto.Unmarshal(in, book); err != nil {
60 listPeople(os.Stdout, book)
Dadd_person.go110 book := &pb.AddressBook{}
112 if err := proto.Unmarshal(in, book); err != nil {
121 book.People = append(book.People, addr)
125 out, err := proto.Marshal(book)
DREADME.md4 address book. Two programs are provided for each supported language. The
5 add_person example adds a new person to an address book, prompting the user to
7 the address book. The examples use the exact same format in all three languages,
8 so you can, for example, use add_person_java to create an address book and then
51 simply take an address book file as their parameter. The add_person_cpp
90 scripts) and can be used to create/display an address book data file.
Dlist_people.dart35 /// Reads the entire address book from a file and prints all
43 // Read the existing address book.
/third_party/ffmpeg/libavcodec/
Dvorbisenc.c275 int i, book, ret; in create_vorbis_context() local
289 for (book = 0; book < venc->ncodebooks; book++) { in create_vorbis_context()
290 vorbis_enc_codebook *cb = &venc->codebooks[book]; in create_vorbis_context()
292 cb->ndimensions = cvectors[book].dim; in create_vorbis_context()
293 cb->nentries = cvectors[book].real_len; in create_vorbis_context()
294 cb->min = cvectors[book].min; in create_vorbis_context()
295 cb->delta = cvectors[book].delta; in create_vorbis_context()
296 cb->lookup = cvectors[book].lookup; in create_vorbis_context()
303 memcpy(cb->lens, cvectors[book].clens, cvectors[book].len); in create_vorbis_context()
304 memset(cb->lens + cvectors[book].len, 0, cb->nentries - cvectors[book].len); in create_vorbis_context()
[all …]
/third_party/boost/libs/container_hash/doc/
Dtutorial.qbk57 If you have a structure `library::book`, where each `book` is uniquely
62 struct book
71 bool operator==(book const& a, book const& b)
81 std::size_t hash_value(book const& b)
88 And you can now use [classref boost::hash] with book:
90 library::book knife(3458, "Zane Grey", "The Hash Knife Outfit");
91 library::book dandelion(1354, "Paul J. Shanley",
94 ``[classref boost::hash]``<library::book> book_hasher;
98 std::unordered_set<library::book, ``[classref boost::hash]``<library::book> > books;
100 books.insert(library::book(2443, "Lindgren, Torgny", "Hash"));
[all …]
/third_party/libuv/docs/src/guide/
Dintroduction.rst4 This 'book' is a small set of tutorials about using libuv_ as
13 This book is still a work in progress, so sections may be incomplete, but
16 Who this book is for
19 If you are reading this book, you are either:
28 this you will require some other resources as the book does not cover parts
31 This book assumes that you are comfortable with the C programming language.
50 This book and the code is based on libuv version `v1.42.0`_.
55 All the example code and the source of the book is included as part of
Dabout.rst4 `Nikhil Marathe <https://nikhilism.com>`_ started writing this book one
8 documentation was present, there were no comprehensive tutorials. This book is
9 the output of that need and tries to be accurate. That said, the book may have
16 This book was made using `Sphinx <https://www.sphinx-doc.org>`_ and `vim
/third_party/nghttp2/doc/_themes/sphinx_rtd_theme/static/css/
Dbadge_only.css1book:before,.icon-book:before{content:"\f02d"}.fa-caret-down:before,.icon-caret-down:before{conten…
/third_party/libxml2/result/XInclude/
Ddocids.xml.rdr1 0 10 book 0 0
2 0 1 book 0 0
35 0 15 book 0 0
/third_party/gstreamer/gstplugins_good/tests/examples/gtk/
Dglliveshader.c278 GtkWidget *window, *paned, *video, *right_box, *book; in main() local
310 book = gtk_notebook_new (); in main()
312 gtk_notebook_append_page (GTK_NOTEBOOK (book), _new_source_view (&state, in main()
314 gtk_notebook_append_page (GTK_NOTEBOOK (book), _new_source_view (&state, in main()
316 gtk_notebook_append_page (GTK_NOTEBOOK (book), _new_source_view (&state, in main()
323 gtk_box_pack_start (GTK_BOX (right_box), book, TRUE, TRUE, 0); in main()
/third_party/libxml2/result/
Disolat3.rdr7 <!ENTITY book "La Peste: Albert Camus,
13 2 3 #text 0 1 book
Disolat3.rde7 <!ENTITY book "La Peste: Albert Camus,
13 2 3 #text 0 1 book
/third_party/boost/libs/mpl/example/fsm/
DREADME.txt6 it was auto-extracted from the examples as shown in the book. The
13 test an intermediate example that appears in the book.
22 * player.cpp, state_machine.hpp - This example predates the book, and
/third_party/protobuf/csharp/src/AddressBook/
DSampleUsage.cs59 AddressBook book = new AddressBook in Main()
63 bytes = book.ToByteArray(); in Main()
/third_party/glib/gio/tests/desktop-files/usr/applications/
Dgnome-contacts.desktop12 Keywords=friends;address book;
19 Icon=x-office-address-book
/third_party/boost/tools/quickbook/doc/
Dstructure.qbk48 * [@http://www.docbook.org/tdg/en/html/book.html book]
195 you wish to create a book with an introduction and a chapter, you first create
196 a file for the book:
198 [book Simple example
215 Write the introduction to the book here....
240 [book Title
/third_party/ltp/docparse/
DMakefile12 METADATA_GENERATOR_PARAMS := -d book metadata.txt
17 METADATA_GENERATOR_PARAMS := --xsltproc-opts "--stringparam toc.section.depth 1" -d book -L --reso…
/third_party/protobuf/src/google/protobuf/util/internal/testdata/
Dbooks.proto45 // A book
88 // A publisher of a book, tests required fields.
93 // An author of a book
190 optional Book book = 1; field
196 repeated uint32 book = 1 [packed = true]; // Packed to optional message. field

12345678910>>...13