/external/chromium_org/third_party/skia/src/pdf/ |
SkPDFStream.cpp | 17 static bool skip_compression(SkPDFCatalog* catalog) { 18 return SkToBool(catalog->getDocumentFlags() & 48 void SkPDFStream::emitObject(SkWStream* stream, SkPDFCatalog* catalog, 51 return emitIndirectObject(stream, catalog); 54 if (!this->populate(catalog)) { 55 return fSubstitute->emitObject(stream, catalog, indirect); 58 this->INHERITED::emitObject(stream, catalog, false); 65 size_t SkPDFStream::getOutputSize(SkPDFCatalog* catalog, bool indirect) { 67 return getIndirectOutputSize(catalog); 70 if (!this->populate(catalog)) { [all...] |
SkPDFPage.h | 40 * to the passed catalog, so it must be called for each document 42 * @param catalog The catalog to add page content objects to. 50 void finalizePage(SkPDFCatalog* catalog, bool firstPage, 59 /** Determine the size of the page content and store to the catalog 62 * @param catalog The catalog to add the object offsets to. 66 off_t getPageSize(SkPDFCatalog* catalog, off_t fileOffset); 70 * @param catalog The active object catalog [all...] |
SkPDFTypes.h | 36 * @param catalog The object catalog to use. 39 virtual size_t getOutputSize(SkPDFCatalog* catalog, bool indirect); 53 /** Emit this object unless the catalog has a substitute object, in which 57 void emit(SkWStream* stream, SkPDFCatalog* catalog, bool indirect); 60 * @param catalog The object catalog to use. 63 void emitIndirectObject(SkWStream* stream, SkPDFCatalog* catalog); 66 * @param catalog The object catalog to use [all...] |
SkPDFPage.cpp | 24 void SkPDFPage::finalizePage(SkPDFCatalog* catalog, bool firstPage, 31 if (!SkToBool(catalog->getDocumentFlags() & 43 catalog->addObject(fContentStream.get(), firstPage); 49 off_t SkPDFPage::getPageSize(SkPDFCatalog* catalog, off_t fileOffset) { 51 catalog->setFileOffset(fContentStream.get(), fileOffset); 52 return fContentStream->getOutputSize(catalog, true); 55 void SkPDFPage::emitPage(SkWStream* stream, SkPDFCatalog* catalog) { 57 fContentStream->emitObject(stream, catalog, true); 62 SkPDFCatalog* catalog, 113 catalog->addObject(curNodes[i], false) [all...] |
SkPDFStream.h | 44 virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog, 46 virtual size_t getOutputSize(SkPDFCatalog* catalog, bool indirect); 68 virtual bool populate(SkPDFCatalog* catalog);
|
SkPDFTypes.cpp | 22 void SkPDFObject::emit(SkWStream* stream, SkPDFCatalog* catalog, 24 SkPDFObject* realObject = catalog->getSubstituteObject(this); 25 return realObject->emitObject(stream, catalog, indirect); 28 size_t SkPDFObject::getOutputSize(SkPDFCatalog* catalog, bool indirect) { 30 emit(&buffer, catalog, indirect); 37 void SkPDFObject::emitIndirectObject(SkWStream* stream, SkPDFCatalog* catalog) { 38 catalog->emitObjectNumber(stream, this); 40 emit(stream, catalog, false); 44 size_t SkPDFObject::getIndirectOutputSize(SkPDFCatalog* catalog) { 45 return catalog->getObjectNumberSize(this) + strlen(" obj\n") [all...] |
SkPDFGraphicState.h | 44 virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog, 46 virtual size_t getOutputSize(SkPDFCatalog* catalog, bool indirect);
|
SkPDFImage.h | 104 virtual bool populate(SkPDFCatalog* catalog);
|
SkPDFFontImpl.h | 21 virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog,
|
SkPDFDocument.cpp | 21 SkPDFCatalog* catalog) { 23 catalog->addObject((*resourceSet)[i], firstPage); 27 static void perform_font_subsetting(SkPDFCatalog* catalog, 30 SkASSERT(catalog); 43 catalog->setSubstitute(entry->fFont, subsetFont); 54 fDocCatalog = SkNEW_ARGS(SkPDFDict, ("Catalog")); 162 // Figure out the size of things and inform the catalog of file offsets.
|
SkPDFImage.cpp | 24 static bool skip_compression(SkPDFCatalog* catalog) { 25 return SkToBool(catalog->getDocumentFlags() & 585 bool SkPDFImage::populate(SkPDFCatalog* catalog) { 589 if (!skip_compression(catalog) && fEncoder && 616 return INHERITED::populate(catalog); 618 !skip_compression(catalog) && 621 // but the new catalog wants it compressed. 625 catalog->setSubstitute(this, substitute); 648 SkPDFCatalog* catalog, bool indirect) SK_OVERRIDE { 650 this->emitIndirectObject(stream, catalog); [all...] |
SkPDFGraphicState.cpp | 72 void SkPDFGraphicState::emitObject(SkWStream* stream, SkPDFCatalog* catalog, 75 SkPDFDict::emitObject(stream, catalog, indirect); 79 size_t SkPDFGraphicState::getOutputSize(SkPDFCatalog* catalog, bool indirect) { 81 return SkPDFDict::getOutputSize(catalog, indirect);
|
/external/apache-http/src/org/apache/http/impl/ |
DefaultHttpResponseFactory.java | 62 /** The catalog for looking up reason phrases. */ 67 * Creates a new response factory with the given catalog. 69 * @param catalog the catalog of reason phrases 71 public DefaultHttpResponseFactory(ReasonPhraseCatalog catalog) { 72 if (catalog == null) { 74 ("Reason phrase catalog must not be null."); 76 this.reasonCatalog = catalog; 80 * Creates a new response factory with the default catalog. 81 * The default catalog i [all...] |
/external/chromium_org/third_party/skia/tests/ |
PDFPrimitivesTest.cpp | 79 SkPDFCatalog catalog(docFlags); 80 size_t directSize = obj->getOutputSize(&catalog, false); 84 obj->emit(&buffer, &catalog, false); 96 catalog.addObject(obj, false); 98 size_t indirectSize = obj->getOutputSize(&catalog, true); 103 obj->emit(&buffer, &catalog, true); 170 SkPDFCatalog catalog((SkPDFDocument::Flags)0); 177 catalog.addObject(int1.get(), false); 178 catalog.addObject(int2.get(), false); 179 catalog.addObject(int3.get(), false) [all...] |
/external/chromium_org/third_party/libxml/src/ |
testThreads.c | 10 #include <libxml/catalog.h> 29 static const char *catalog = "test/threads/complex.xml"; variable 106 xmlLoadCatalog(catalog); 151 xmlLoadCatalog(catalog); 152 printf("loaded catalog: %s\n", catalog); 199 fprintf(stderr, "libxml was not compiled with thread or catalog support\n");
|
xmlcatalog.c | 28 #include <libxml/catalog.h> 46 #define XML_SGML_DEFAULT_CATALOG "/etc/sgml/catalog" 295 printf("\tdump: print the current catalog state\n"); 313 \tParse the catalog file and query it for the entities\n\ 316 \t--create : create a new catalog\n\ 322 \t used with --add or --del, it saves the catalog changes\n\ 323 \t and with --sgml it automatically updates the super catalog\n\ 324 \t--no-super-update: do not update the SGML super catalog\n\ 399 /* No catalog entry specified */ 401 fprintf(stderr, "No catalog entry specified to remove from\n") [all...] |
testThreadsWin32.c | 9 #include <libxml/catalog.h> 19 static const char *catalog = "test/threads/complex.xml"; variable 96 xmlLoadCatalog(catalog); 147 fprintf(stderr, "libxml was not compiled with thread or catalog support\n");
|
/external/libxml2/ |
xmlcatalog.c | 28 #include <libxml/catalog.h> 46 #define XML_SGML_DEFAULT_CATALOG "/etc/sgml/catalog" 295 printf("\tdump: print the current catalog state\n"); 313 \tParse the catalog file and query it for the entities\n\ 316 \t--create : create a new catalog\n\ 322 \t used with --add or --del, it saves the catalog changes\n\ 323 \t and with --sgml it automatically updates the super catalog\n\ 324 \t--no-super-update: do not update the SGML super catalog\n\ 399 /* No catalog entry specified */ 401 fprintf(stderr, "No catalog entry specified to remove from\n") [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
ant-apache-resolver.jar | |
/external/apache-http/src/org/apache/http/message/ |
BasicHttpResponse.java | 72 * @param catalog the reason phrase catalog, or 79 final ReasonPhraseCatalog catalog, 86 this.reasonCatalog = catalog; 92 * The response will not have a reason phrase catalog and 103 * The response will not have a reason phrase catalog and 197 * This method evaluates the currently set catalog and locale. 198 * It also handles a missing catalog.
|
/external/chromium_org/extensions/common/ |
extension_l10n_util_unittest.cc | 223 linked_ptr<base::DictionaryValue> catalog(new base::DictionaryValue); 227 catalog->Set("name", name_tree); 231 catalog->Set("short_name", short_name_tree); 235 catalog->Set("description", description_tree); 239 catalog->Set("title", action_title_tree); 243 catalog->Set("omnibox_keyword", omnibox_keyword_tree); 247 catalog->Set("file_handler_title", file_handler_title_tree); 251 catalog->Set("launch_local_path", launch_local_path_tree); 255 catalog->Set("launch_web_url", launch_web_url_tree); 260 catalog->Set("first_command_description", first_command_description_tree) [all...] |
extension_l10n_util.cc | 47 *error = base::StringPrintf("Catalog file is missing for locale %s.", 299 *error = base::StringPrintf("Catalog file is missing for locale %s.", 381 linked_ptr<base::DictionaryValue> catalog( 383 if (!catalog.get()) { 388 catalogs.push_back(catalog); 413 scoped_ptr<base::DictionaryValue> catalog(
|
/external/bzip2/ |
xmlproc.sh | 59 export XML_CATALOG_FILES=/etc/xml/catalog
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/documentation/ |
DocumentationCatalog.js | 140 * @param {!WebInspector.DocumentationCatalog} catalog 142 WebInspector.DocumentationCatalog.Loader = function(catalog) 147 this._catalog = catalog;
|
/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
JDBCDatabaseMetaData.java | 497 public ResultSet getProcedures(String catalog, String schemaPattern, 503 public ResultSet getProcedureColumns(String catalog, 511 public ResultSet getTables(String catalog, String schemaPattern, 587 public ResultSet getColumns(String catalog, String schemaPattern, 684 public ResultSet getColumnPrivileges(String catalog, String schema, 705 public ResultSet getTablePrivileges(String catalog, String schemaPattern, 725 public ResultSet getBestRowIdentifier(String catalog, String schema, 840 public ResultSet getVersionColumns(String catalog, String schema, 859 public ResultSet getPrimaryKeys(String catalog, String schema, 1022 public ResultSet getImportedKeys(String catalog, String schema [all...] |