Searched refs:current_text (Results 1 – 12 of 12) sorted by relevance
/external/libpng/ |
D | pngpread.c | 1226 png_ptr->current_text = (png_charp)png_malloc(png_ptr, in png_push_handle_tEXt() 1228 png_ptr->current_text[length] = '\0'; in png_push_handle_tEXt() 1229 png_ptr->current_text_ptr = png_ptr->current_text; in png_push_handle_tEXt() 1272 key = png_ptr->current_text; in png_push_read_tEXt() 1294 png_ptr->current_text = NULL; in png_push_read_tEXt() 1326 png_ptr->current_text = (png_charp)png_malloc(png_ptr, in png_push_handle_zTXt() 1328 png_ptr->current_text[length] = '\0'; in png_push_handle_zTXt() 1329 png_ptr->current_text_ptr = png_ptr->current_text; in png_push_handle_zTXt() 1368 key = png_ptr->current_text; in png_push_read_zTXt() 1376 png_ptr->current_text = NULL; in png_push_read_zTXt() [all …]
|
D | pngread.c | 1492 png_free(png_ptr, png_ptr->current_text); in png_read_destroy()
|
D | png.h | 1461 png_charp current_text PNG_DEPSTRUCT; /* current text chunk buffer */
|
D | CHANGES | 1173 Plugged memory leak of png_ptr->current_text (Matt Holgate).
|
/external/qemu/distrib/libpng-1.2.19/ |
D | pngpread.c | 1079 png_ptr->current_text = (png_charp)png_malloc(png_ptr, in png_push_handle_tEXt() 1081 png_ptr->current_text[length] = '\0'; in png_push_handle_tEXt() 1082 png_ptr->current_text_ptr = png_ptr->current_text; in png_push_handle_tEXt() 1123 key = png_ptr->current_text; in png_push_read_tEXt() 1145 png_ptr->current_text = NULL; in png_push_read_tEXt() 1177 png_ptr->current_text = (png_charp)png_malloc(png_ptr, in png_push_handle_zTXt() 1179 png_ptr->current_text[length] = '\0'; in png_push_handle_zTXt() 1180 png_ptr->current_text_ptr = png_ptr->current_text; in png_push_handle_zTXt() 1217 key = png_ptr->current_text; in png_push_read_zTXt() 1225 png_ptr->current_text = NULL; in png_push_read_zTXt() [all …]
|
D | pngread.c | 1282 png_free(png_ptr, png_ptr->current_text); in png_read_destroy()
|
D | png.h | 1275 png_charp current_text; /* current text chunk buffer */ member
|
/external/chromium/chrome/browser/autocomplete/ |
D | autocomplete_edit_view_views.cc | 376 const string16 current_text(GetText()); in SetForcedQuery() local 377 const size_t start = current_text.find_first_not_of(kWhitespaceUTF16); in SetForcedQuery() 378 if (start == string16::npos || (current_text[start] != '?')) { in SetForcedQuery() 381 SelectRange(current_text.size(), start + 1); in SetForcedQuery()
|
D | autocomplete_edit_view_win.cc | 666 const string16 current_text(GetText()); in SetForcedQuery() local 667 const size_t start = current_text.find_first_not_of(kWhitespaceWide); in SetForcedQuery() 668 if (start == string16::npos || (current_text[start] != '?')) in SetForcedQuery() 671 SetSelection(current_text.length(), start + 1); in SetForcedQuery()
|
D | autocomplete_edit_view_gtk.cc | 563 const string16 current_text(GetText()); in SetForcedQuery() local 564 const size_t start = current_text.find_first_not_of(kWhitespaceUTF16); in SetForcedQuery() 565 if (start == string16::npos || (current_text[start] != '?')) { in SetForcedQuery() 569 SetSelectedRange(CharRange(current_text.size(), start + 1)); in SetForcedQuery()
|
D | autocomplete_edit_view_mac.mm | 377 const string16 current_text(GetText()); 378 const size_t start = current_text.find_first_not_of(kWhitespaceUTF16); 379 if (start == string16::npos || (current_text[start] != '?')) { 382 NSRange range = NSMakeRange(start + 1, current_text.size() - start - 1);
|
/external/chromium/chrome/browser/ui/views/download/ |
D | download_item_view.cc | 1087 string16 current_text = text16; in SizeLabelToMinWidth() local 1098 current_text.replace(pos - 1, 1, 1, char16('\n')); in SizeLabelToMinWidth() 1100 current_text.insert(pos, 1, char16('\n')); in SizeLabelToMinWidth() 1101 dangerous_download_label_->SetText(UTF16ToWide(current_text)); in SizeLabelToMinWidth() 1116 prev_text = current_text; in SizeLabelToMinWidth() 1117 current_text = text16; in SizeLabelToMinWidth()
|