Searched refs:comment (Results 1 - 25 of 27) sorted by relevance

12

/haiku/headers/os/locale/tools/
H A DCollectingCatalog.h19 #define B_TRANSLATE_COMMENT(string, comment) \
20 B_CATKEY((string), B_TRANSLATION_CONTEXT, (comment))
23 #define B_TRANSLATE_ALL(string, context, comment) \
24 B_CATKEY((string), (context), (comment))
43 #define B_TRANSLATE_MARK_COMMENT(string, comment) \
44 B_CATKEY((string), B_TRANSLATION_CONTEXT, (comment))
47 #define B_TRANSLATE_MARK_ALL(string, context, comment) \
48 B_CATKEY((string), (context), (comment))
67 #define B_TRANSLATE_MARK_COMMENT_VOID(string, comment) \
68 B_CATKEY((string), B_TRANSLATION_CONTEXT, (comment))
[all...]
/haiku/headers/os/locale/
H A DCatalog.h34 const char* comment = NULL)
116 #define B_TRANSLATE_COMMENT(string, comment) \
118 B_TRANSLATION_CONTEXT, (comment))
121 #define B_TRANSLATE_ALL(string, context, comment) \
123 (comment))
167 #define B_TRANSLATE_MARK_COMMENT(string, comment) (string)
170 #define B_TRANSLATE_MARK_ALL(string, context, comment) (string)
186 #define B_TRANSLATE_MARK_COMMENT_VOID(string, comment)
189 #define B_TRANSLATE_MARK_ALL_VOID(string, context, comment)
204 #define B_TRANSLATE_NOCOLLECT_COMMENT(string, comment) \
[all...]
H A DCatalogData.h36 const char* comment = NULL) = 0;
53 const char* comment = NULL);
/haiku/src/tools/locale/
H A DCatalog.cpp38 BCatalog::GetString(const char *string, const char *context, const char *comment) argument
45 translated = cat->GetString(string, context, comment);
H A DPlainTextCatalog.cpp198 std::string comment; local
202 // Each line is : "original string \t context \t comment \t translation"
210 if (!std::getline(catalogFile, comment,'\t').good()) {
211 fprintf(stderr, "Unable to get comment for string %s from %s\n",
228 comment.c_str());
280 BString comment; local
286 comment = entry.key.fComment;
290 escapeQuotedChars(comment);
296 << comment << "\t"
H A DCatalogData.cpp73 const char *context, const char *comment)
72 SetString(const char *string, const char *translated, const char *context, const char *comment) argument
/haiku/src/apps/haikudepot/packagemodel/
H A DUserRating.cpp25 const BString& comment, const BString& languageId,
30 fComment(comment),
24 UserRating(const UserInfo& userInfo, float rating, const BString& comment, const BString& languageId, const BString& packageVersion, uint64 createTimestamp) argument
H A DUserRating.h20 const BString& comment,
/haiku/src/tools/checkstyle/
H A Dutils.py150 return [ (start, end, comment) for (start, end, comment) in highlights \
151 if (start, end, comment) != (0, 0, "") ]
/haiku/headers/private/locale/
H A DEditableCatalog.h29 const char* comment = NULL);
H A DHashMapCatalog.h39 // A comment that can be used to separate strings that
77 const char *comment = NULL);
82 const char *context = NULL, const char *comment = NULL);
/haiku/src/kits/locale/
H A DEditableCatalog.cpp32 const char* context, const char* comment)
37 return fCatalogData->SetString(string, translated, context, comment);
31 SetString(const char* string, const char* translated, const char* context, const char* comment) argument
H A DCatalogData.cpp66 const char* context, const char* comment)
65 SetString(const char* string, const char* translated, const char* context, const char* comment) argument
H A DHashMapCatalog.cpp60 // Two keys are equal if their hashval and key (string,context,comment)
72 // Two keys are equal if their hashval and key (string,context,comment)
124 const char *comment)
126 CatKey key(string, context, comment);
216 const char *context, const char *comment)
227 BString commentCopy(comment);
123 GetString(const char *string, const char *context, const char *comment) argument
215 SetString(const char *string, const char *translated, const char *context, const char *comment) argument
H A DCatalog.cpp57 const char* comment)
65 translated = cat->GetString(string, context, comment);
56 GetString(const char* string, const char* context, const char* comment) argument
/haiku/src/add-ons/locale/catalogs/plaintext/
H A DCatalog.cpp245 std::string comment; local
249 // Each line is : "original string \t context \t comment \t translation"
254 if (!std::getline(catalogFile, comment,'\t').good())
265 comment.c_str());
308 BString comment; local
314 comment = entry.key.fComment;
318 escapeQuotedChars(comment);
324 << comment << "\t"
/haiku/src/add-ons/translators/ppm/
H A DPPMTranslator.cpp145 if (*ptr == '#' || !*ptr) /* comment or blank */
228 int* max, bool* ascii, color_space* space, bool* is_ppm, char** comment);
312 char* comment = NULL; local
314 &ascii, &space, &is_ppm, &comment);
315 if (comment != NULL) {
317 ioExtension->AddString(B_TRANSLATOR_EXT_COMMENT, comment);
318 free(comment);
377 // comment = NULL;
640 int* max, bool* ascii, color_space* space, bool* is_ppm, char** comment)
695 if (comment) { /* collec
639 read_ppm_header(BDataIO* inSource, int* width, int* rowbytes, int* height, int* max, bool* ascii, color_space* space, bool* is_ppm, char** comment) argument
857 bool comment = false; local
[all...]
/haiku/src/apps/cortex/RouteApp/
H A DConnectionIO.cpp380 BString comment = "\n"; local
381 comment << context.indentString();
382 comment << "<!-- initial requested format -->";
383 context.writeString(comment);
/haiku/src/apps/haikudepot/server/
H A DWebAppInterface.h83 const BString& comment,
93 const BString& comment,
H A DWebAppInterface.cpp555 const BString& comment,
613 if (comment.Length() > 0) {
614 requestEnvelopeWriter.WriteObjectName("comment");
615 requestEnvelopeWriter.WriteString(comment.String());
631 const BString& comment,
666 if (comment.Length() > 0) {
667 requestEnvelopeWriter.WriteObjectName("comment");
668 requestEnvelopeWriter.WriteString(comment);
547 CreateUserRating(const BString& packageName, const BPackageVersion& version, const BString& architecture, const BString& webAppRepositoryCode, const BString& webAppRepositorySourceCode, const BString& naturalLanguageCode, const BString& comment, const BString& stability, int rating, BMessage& message) argument
627 UpdateUserRating(const BString& ratingID, const BString& naturalLanguageCode, const BString& comment, const BString& stability, int rating, bool active, BMessage& message) argument
/haiku/headers/libs/glut/GL/
H A Dglut.h44 # pragma comment (lib, "winmm.lib") /* link with Windows MultiMedia lib */
48 # pragma comment (lib, "opengl.lib") /* link with SGI OpenGL for Windows lib */
49 # pragma comment (lib, "glu.lib") /* link with SGI OpenGL Utility lib */
50 # pragma comment (lib, "glut.lib") /* link with Win32 GLUT for SGI OpenGL lib */
52 # pragma comment (lib, "opengl32.lib") /* link with Microsoft OpenGL lib */
53 # pragma comment (lib, "glu32.lib") /* link with Microsoft OpenGL Utility lib */
54 # pragma comment (lib, "glut32.lib") /* link with Win32 GLUT lib */
/haiku/src/apps/haikudepot/ui/
H A DRatePackageWindow.cpp486 BString comment; local
487 if (response.FindString("comment", &comment) == B_OK) {
489 fRatingText = parser.CreateDocumentFromMarkup(comment);
498 &fCommentLanguageId) == B_OK && !comment.IsEmpty()) {
635 BString comment = fRatingText->Text(); local
677 languageId, comment, stability, rating, active, info);
682 languageId, comment, stability, rating, info);
/haiku/src/add-ons/print/drivers/pcl6/
H A DPCL6Writer.cpp267 PCL6Writer::PJLHeader(ProtocolClass protocolClass, int dpi, const char* comment) argument
292 if (comment != NULL) {
294 AppendString(comment);
H A DPCL6Writer.h160 const char* comment = NULL);
/haiku/src/kits/interface/
H A DColumnTypes.cpp26 #define B_TRANSLATE_COMMENT(str, comment) \
27 gSystemCatalog.GetString(B_TRANSLATE_MARK_COMMENT(str, comment), \
28 B_TRANSLATION_CONTEXT, (comment))

Completed in 223 milliseconds

12