Searched refs:lang_key (Results 1 - 23 of 23) sorted by relevance

/external/chromium_org/third_party/libpng/
H A Dpngpread.c1286 text_ptr->lang_key = NULL;
1488 text_ptr->lang_key = NULL;
1558 png_charp lang_key; local
1586 for (lang_key = lang; *lang_key; lang_key++)
1589 lang_key++; /* Skip NUL separator */
1591 text=lang_key;
1593 if (lang_key < key + png_ptr->current_text_size - 1)
1608 text_ptr->lang_key
[all...]
H A Dpngset.c730 if (text_ptr[i].lang_key != NULL)
731 lang_key_len = png_strlen(text_ptr[i].lang_key);
777 textp->lang_key = textp->lang + lang_len + 1;
778 png_memcpy(textp->lang_key, text_ptr[i].lang_key, lang_key_len);
779 *(textp->lang_key + lang_key_len) = '\0';
780 textp->text = textp->lang_key + lang_key_len + 1;
787 textp->lang_key=NULL;
H A Dpngrutil.c2084 text_ptr->lang_key = NULL;
2204 text_ptr->lang_key = NULL;
2226 png_charp key, lang, text, lang_key; local
2308 for (lang_key = lang; *lang_key; lang_key++)
2310 lang_key++; /* Skip NUL separator */
2312 if (lang_key >= png_ptr->chunkdata + slength)
2320 for (text = lang_key; *text; text++)
2349 text_ptr->lang_key
[all...]
H A Dpngwutil.c1453 png_charp lang, png_charp lang_key, png_charp text)
1481 if (lang_key == NULL)
1484 lang_key_len = png_strlen(lang_key);
1497 * and the NULs after the key, lang, and lang_key parts */
1501 5 /* comp byte, comp flag, terminators for key, lang and lang_key */
1528 png_write_chunk_data(png_ptr, (lang_key ? (png_bytep)lang_key : cbuf),
1452 png_write_iTXt(png_structp png_ptr, int compression, png_charp key, png_charp lang, png_charp lang_key, png_charp text) argument
H A Dpngwrite.c244 info_ptr->text[i].lang_key,
351 info_ptr->text[i].lang_key,
H A Dpng.h694 * "lang_key" fields can be regular C strings, empty strings, or NULL pointers.
714 png_charp lang_key; /* keyword translated UTF-8 string, 0 or more member in struct:png_text_struct
3330 int compression, png_charp key, png_charp lang, png_charp lang_key,
/external/qemu/distrib/libpng-1.2.46/
H A Dpngpread.c1286 text_ptr->lang_key = NULL;
1488 text_ptr->lang_key = NULL;
1558 png_charp lang_key; local
1586 for (lang_key = lang; *lang_key; lang_key++)
1589 lang_key++; /* Skip NUL separator */
1591 text=lang_key;
1593 if (lang_key < key + png_ptr->current_text_size - 1)
1608 text_ptr->lang_key
[all...]
H A Dpngset.c740 if (text_ptr[i].lang_key != NULL)
741 lang_key_len = png_strlen(text_ptr[i].lang_key);
787 textp->lang_key = textp->lang + lang_len + 1;
788 png_memcpy(textp->lang_key, text_ptr[i].lang_key, lang_key_len);
789 *(textp->lang_key + lang_key_len) = '\0';
790 textp->text = textp->lang_key + lang_key_len + 1;
797 textp->lang_key=NULL;
H A Dpngrutil.c2100 text_ptr->lang_key = NULL;
2220 text_ptr->lang_key = NULL;
2242 png_charp key, lang, text, lang_key; local
2324 for (lang_key = lang; *lang_key; lang_key++)
2326 lang_key++; /* Skip NUL separator */
2328 if (lang_key >= png_ptr->chunkdata + slength)
2336 for (text = lang_key; *text; text++)
2365 text_ptr->lang_key
[all...]
H A Dpngwutil.c1453 png_charp lang, png_charp lang_key, png_charp text)
1481 if (lang_key == NULL)
1484 lang_key_len = png_strlen(lang_key);
1497 * and the NULs after the key, lang, and lang_key parts */
1501 5 /* comp byte, comp flag, terminators for key, lang and lang_key */
1528 png_write_chunk_data(png_ptr, (lang_key ? (png_bytep)lang_key : cbuf),
1452 png_write_iTXt(png_structp png_ptr, int compression, png_charp key, png_charp lang, png_charp lang_key, png_charp text) argument
H A Dpngwrite.c244 info_ptr->text[i].lang_key,
351 info_ptr->text[i].lang_key,
H A Dpng.h697 * "lang_key" fields can be regular C strings, empty strings, or NULL pointers.
717 png_charp lang_key; /* keyword translated UTF-8 string, 0 or more member in struct:png_text_struct
3414 int compression, png_charp key, png_charp lang, png_charp lang_key,
/external/libpng/
H A Dpngset.c790 if (text_ptr[i].lang_key != NULL)
791 lang_key_len = strlen(text_ptr[i].lang_key);
845 textp->lang_key = textp->lang + lang_len + 1;
846 memcpy(textp->lang_key, text_ptr[i].lang_key, lang_key_len);
847 *(textp->lang_key + lang_key_len) = '\0';
848 textp->text = textp->lang_key + lang_key_len + 1;
854 textp->lang_key=NULL;
H A Dexample.c890 text_ptr[0].lang_key = NULL;
899 text_ptr[1].lang_key = NULL;
908 text_ptr[2].lang_key = NULL;
H A Dpngwutil.c1674 png_const_charp lang, png_const_charp lang_key, png_const_charp text)
1720 if (lang_key == NULL) lang_key = ""; /* may be empty */
1721 lang_key_len = strlen(lang_key)+1;
1758 png_write_chunk_data(png_ptr, (png_const_bytep)lang_key, lang_key_len);
1673 png_write_iTXt(png_structrp png_ptr, int compression, png_const_charp key, png_const_charp lang, png_const_charp lang_key, png_const_charp text) argument
H A Dpngwrite.c293 info_ptr->text[i].lang_key,
388 info_ptr->text[i].lang_key,
H A Dpngpriv.h1099 png_const_charp lang_key, png_const_charp text),PNG_EMPTY);
H A Dpngrutil.c2459 text_info.lang_key = NULL;
2563 text.lang_key = NULL;
2710 text.lang_key = (png_charp)buffer + translated_keyword_offset;
H A Dpng.h675 * "lang_key" members of the structure only exist when the library is built
678 * the "lang" and "lang_key" fields contain NULL pointers when the
698 png_charp lang_key; /* keyword translated UTF-8 string, 0 or more member in struct:png_text_struct
/external/chromium_org/tools/imagediff/
H A Dimage_diff_png.cc447 png_text_[pos].lang_key = 0;
/external/libpng/contrib/libtests/
H A Dmakepng.c984 text->lang_key = NULL;
1060 text.lang_key = params[2]; /* translated keyword */
H A Dpngvalid.c3489 text.lang_key = 0;
3545 text.lang_key = 0;
3726 text.lang_key = 0;
3844 text.lang_key = 0;
4883 if (tp->lang_key != NULL)
4886 pos = safecat(msg, sizeof msg, pos, tp->lang_key);
/external/chromium_org/ui/gfx/codec/
H A Dpng_codec.cc548 png_text_[pos].lang_key = 0;

Completed in 350 milliseconds