Searched refs:catalog (Results 1 - 25 of 40) sorted by relevance

12

/external/stlport/stlport/stl/
H A D_messages_facets.h45 typedef int catalog; typedef in class:messages_base
57 typedef messages_base::catalog catalog; typedef in class:messages
63 catalog open(const string& __fn, const locale& __loc) const
65 string_type get(catalog __c, int __set, int __msgid,
68 inline void close(catalog __c) const
76 virtual catalog do_open(const string& __fn, const locale& __loc) const
78 virtual string_type do_get(catalog __c, int __set, int __msgid,
81 virtual void do_close(catalog __c) const
90 typedef messages_base::catalog catalo typedef in class:messages
126 typedef messages_base::catalog catalog; typedef in class:messages_byname
154 typedef messages_base::catalog catalog; typedef in class:messages_byname
[all...]
/external/skia/src/pdf/
H A DSkPDFStream.cpp41 void SkPDFStream::emitObject(SkWStream* stream, SkPDFCatalog* catalog, argument
44 return emitIndirectObject(stream, catalog);
46 this->INHERITED::emitObject(stream, catalog, false);
55 size_t SkPDFStream::getOutputSize(SkPDFCatalog* catalog, bool indirect) { argument
57 return getIndirectOutputSize(catalog);
59 return this->INHERITED::getOutputSize(catalog, false) +
H A DSkPDFTypes.cpp30 size_t SkPDFObject::getOutputSize(SkPDFCatalog* catalog, bool indirect) { argument
32 emitObject(&buffer, catalog, indirect);
38 void SkPDFObject::emitIndirectObject(SkWStream* stream, SkPDFCatalog* catalog) { argument
39 catalog->emitObjectNumber(stream, this);
41 emitObject(stream, catalog, false);
48 size_t SkPDFObject::getIndirectOutputSize(SkPDFCatalog* catalog) { argument
49 return catalog->getObjectNumberSize(this) + strlen(" obj\n") +
50 this->getOutputSize(catalog, false) + strlen("\nendobj\n");
53 void SkPDFObjRef::emitObject(SkWStream* stream, SkPDFCatalog* catalog, argument
56 catalog
60 getOutputSize(SkPDFCatalog* catalog, bool indirect) argument
68 emitObject(SkWStream* stream, SkPDFCatalog* catalog, bool indirect) argument
78 emitObject(SkWStream* stream, SkPDFCatalog* catalog, bool indirect) argument
88 getOutputSize(SkPDFCatalog* catalog, bool indirect) argument
98 emitObject(SkWStream* stream, SkPDFCatalog* catalog, bool indirect) argument
175 emitObject(SkWStream* stream, SkPDFCatalog* catalog, bool indirect) argument
182 getOutputSize(SkPDFCatalog* catalog, bool indirect) argument
255 emitObject(SkWStream* stream, SkPDFCatalog* catalog, bool indirect) argument
261 getOutputSize(SkPDFCatalog* catalog, bool indirect) argument
288 emitObject(SkWStream* stream, SkPDFCatalog* catalog, bool indirect) argument
302 getOutputSize(SkPDFCatalog* catalog, bool indirect) argument
359 getOutputSize(SkPDFCatalog* catalog, bool indirect) argument
[all...]
H A DSkPDFFormXObject.cpp65 void SkPDFFormXObject::emitObject(SkWStream* stream, SkPDFCatalog* catalog, argument
68 return emitIndirectObject(stream, catalog);
70 fStream->emitObject(stream, catalog, indirect);
73 size_t SkPDFFormXObject::getOutputSize(SkPDFCatalog* catalog, bool indirect) { argument
75 return getIndirectOutputSize(catalog);
77 return fStream->getOutputSize(catalog, indirect);
H A DSkPDFPage.cpp29 void SkPDFPage::finalizePage(SkPDFCatalog* catalog, bool firstPage, argument
41 catalog->addObject(fContentStream.get(), firstPage);
45 off_t SkPDFPage::getPageSize(SkPDFCatalog* catalog, off_t fileOffset) { argument
47 catalog->setFileOffset(fContentStream.get(), fileOffset);
48 return fContentStream->getOutputSize(catalog, true);
51 void SkPDFPage::emitPage(SkWStream* stream, SkPDFCatalog* catalog) { argument
53 fContentStream->emitObject(stream, catalog, true);
58 SkPDFCatalog* catalog,
114 catalog->addObject(curNodes[i], false);
135 catalog
57 generatePageTree(const SkTDArray<SkPDFPage*>& pages, SkPDFCatalog* catalog, SkTDArray<SkPDFDict*>* pageTree, SkPDFDict** rootNode) argument
[all...]
H A DSkPDFImage.cpp284 void SkPDFImage::emitObject(SkWStream* stream, SkPDFCatalog* catalog, argument
287 return emitIndirectObject(stream, catalog);
289 fStream->emitObject(stream, catalog, indirect);
292 size_t SkPDFImage::getOutputSize(SkPDFCatalog* catalog, bool indirect) { argument
294 return getIndirectOutputSize(catalog);
296 return fStream->getOutputSize(catalog, indirect);
H A DSkPDFDocument.cpp22 // Add the resources, starting at firstIndex to the catalog, removing any dupes.
26 SkPDFCatalog* catalog) {
34 catalog->addObject((*resourceList)[i], firstPage);
91 // Figure out the size of things and inform the catalog of file offsets.
149 // The rest of the pages will be added to the catalog along with the rest
24 addResourcesToCatalog(int firstIndex, bool firstPage, SkTDArray<SkPDFObject*>* resourceList, SkPDFCatalog* catalog) argument
H A DSkPDFGraphicState.cpp78 void SkPDFGraphicState::emitObject(SkWStream* stream, SkPDFCatalog* catalog, argument
81 SkPDFDict::emitObject(stream, catalog, indirect);
85 size_t SkPDFGraphicState::getOutputSize(SkPDFCatalog* catalog, bool indirect) { argument
87 return SkPDFDict::getOutputSize(catalog, indirect);
/external/stlport/src/
H A Dmessage_facets.h53 * In glibc nl_catd type is void *, but messages_base::catalog is defined as int
56 * catalog open---this case can't be represented with pointers.
58 * messages_base::catalog and nl_catd handler.
65 /* If no mapping a message_base::catalog entry, int typedef according C++ Standard 22.2.7.1,
78 typedef hash_map<messages_base::catalog, nl_catd_type, hash<messages_base::catalog>, equal_to<messages_base::catalog>,
79 allocator<pair<_STLP_CONST messages_base::catalog, nl_catd_type> > > map_type;
80 typedef hash_map<nl_catd_type, messages_base::catalog, hash<nl_catd_type>, equal_to<nl_catd_type>,
81 allocator<pair<_STLP_CONST nl_catd_type, messages_base::catalog> > > rmap_typ
119 typedef messages_base::catalog catalog; typedef in class:_Messages
[all...]
H A Dmessages.cpp72 messages_base::catalog _Catalog_nl_catd_map::insert(nl_catd_type cat) {
73 messages_base::catalog &res = Mr[cat];
89 void _Catalog_nl_catd_map::erase(messages_base::catalog cat) {
124 _Messages::catalog _Messages::do_open(const string& filename, const locale& L) const {
138 string _Messages::do_get(catalog cat,
149 _Messages::do_get(catalog thecat,
177 void _Messages::do_close(catalog thecat) const {
200 messages_byname<char>::catalog
205 messages_byname<char>::do_get(catalog cat, int set, int p_id,
209 void messages_byname<char>::do_close(catalog ca
[all...]
/external/skia/include/pdf/
H A DSkPDFPage.h46 * to the passed catalog, so it must be called for each document
48 * @param catalog The catalog to add page content objects to.
54 void finalizePage(SkPDFCatalog* catalog, bool firstPage,
57 /** Determine the size of the page content and store to the catalog
60 * @param catalog The catalog to add the object offsets to.
64 off_t getPageSize(SkPDFCatalog* catalog, off_t fileOffset);
68 * @param catalog The active object catalog
[all...]
H A DSkPDFStream.h42 virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog,
44 virtual size_t getOutputSize(SkPDFCatalog* catalog, bool indirect);
H A DSkPDFFormXObject.h49 virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog,
51 virtual size_t getOutputSize(SkPDFCatalog* catalog, bool indirect);
H A DSkPDFTypes.h44 * @param catalog The object catalog to use.
48 virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog,
54 * @param catalog The object catalog to use.
57 virtual size_t getOutputSize(SkPDFCatalog* catalog, bool indirect);
69 * @param catalog The object catalog to use.
72 void emitIndirectObject(SkWStream* stream, SkPDFCatalog* catalog);
75 * @param catalog Th
[all...]
H A DSkPDFImage.h59 virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog,
61 virtual size_t getOutputSize(SkPDFCatalog* catalog, bool indirect);
H A DSkPDFGraphicState.h44 virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog,
46 virtual size_t getOutputSize(SkPDFCatalog* catalog, bool indirect);
H A DSkPDFShader.h40 virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog,
42 virtual size_t getOutputSize(SkPDFCatalog* catalog, bool indirect);
/external/skia/tests/
H A DPDFPrimitivesTest.cpp45 SkPDFCatalog catalog; local
46 catalog.addObject(obj, false);
48 size_t indirectSize = obj->getOutputSize(&catalog, true);
53 obj->emitObject(&buffer, &catalog, true);
67 SkPDFCatalog catalog; local
76 catalog.addObject(int1.get(), false);
77 catalog.addObject(int2.get(), false);
78 catalog.addObject(int3.get(), false);
80 REPORTER_ASSERT(reporter, catalog.getObjectNumberSize(int1.get()) == 3);
81 REPORTER_ASSERT(reporter, catalog
102 SkPDFCatalog catalog; local
[all...]
/external/apache-http/src/org/apache/http/impl/
H A DDefaultHttpResponseFactory.java57 /** The catalog for looking up reason phrases. */
62 * Creates a new response factory with the given catalog.
64 * @param catalog the catalog of reason phrases
66 public DefaultHttpResponseFactory(ReasonPhraseCatalog catalog) { argument
67 if (catalog == null) {
69 ("Reason phrase catalog must not be null.");
71 this.reasonCatalog = catalog;
75 * Creates a new response factory with the default catalog.
76 * The default catalog i
[all...]
/external/libxml2/
H A Dxmlcatalog.c28 #include <libxml/catalog.h>
46 #define XML_SGML_DEFAULT_CATALOG "/etc/sgml/catalog"
298 printf("\tdump: print the current catalog state\n");
316 \tParse the catalog file and query it for the entities\n\
319 \t--create : create a new catalog\n\
325 \t used with --add or --del, it saves the catalog changes\n\
326 \t and with --sgml it automatically updates the super catalog\n\
327 \t--no-super-update: do not update the SGML super catalog\n\
402 /* No catalog entry specified */
404 fprintf(stderr, "No catalog entr
[all...]
H A DAndroid.mk30 catalog.c \
/external/chromium/chrome/common/extensions/
H A Dextension_message_bundle.cc76 DictionaryValue* catalog = (*it).get(); local
77 for (DictionaryValue::key_iterator key_it = catalog->begin_keys();
78 key_it != catalog->end_keys(); ++key_it) {
83 if (!GetMessageValue(*key_it, *catalog, &value, error))
133 const DictionaryValue& catalog,
138 if (!catalog.GetDictionaryWithoutPathExpansion(key, &name_tree)) {
132 GetMessageValue(const std::string& key, const DictionaryValue& catalog, std::string* value, std::string* error) const argument
/external/apache-http/src/org/apache/http/message/
H A DBasicHttpResponse.java67 * @param catalog the reason phrase catalog, or
74 final ReasonPhraseCatalog catalog,
81 this.reasonCatalog = catalog;
87 * The response will not have a reason phrase catalog and
98 * The response will not have a reason phrase catalog and
192 * This method evaluates the currently set catalog and locale.
193 * It also handles a missing catalog.
73 BasicHttpResponse(final StatusLine statusline, final ReasonPhraseCatalog catalog, final Locale locale) argument
/external/stlport/
H A Dconfigure38 --with-stlport=<dir> use STLport in catalog <dir>
40 --with-boost=<dir> use boost headers in catalog <dir>
42 --with-msvc=<dir> use MS VC from this catalog
43 --with-mssdk=<dir> use MS SDK from this catalog
/external/bzip2/
H A Dxmlproc.sh59 export XML_CATALOG_FILES=/etc/xml/catalog

Completed in 311 milliseconds

12