Home
last modified time | relevance | path

Searched refs:current_text (Results 1 – 12 of 12) sorted by relevance

/external/libpng/
Dpngpread.c1226 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 …]
Dpngread.c1492 png_free(png_ptr, png_ptr->current_text); in png_read_destroy()
Dpng.h1461 png_charp current_text PNG_DEPSTRUCT; /* current text chunk buffer */
DCHANGES1173 Plugged memory leak of png_ptr->current_text (Matt Holgate).
/external/qemu/distrib/libpng-1.2.19/
Dpngpread.c1079 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 …]
Dpngread.c1282 png_free(png_ptr, png_ptr->current_text); in png_read_destroy()
Dpng.h1275 png_charp current_text; /* current text chunk buffer */ member
/external/chromium/chrome/browser/autocomplete/
Dautocomplete_edit_view_views.cc376 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()
Dautocomplete_edit_view_win.cc666 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()
Dautocomplete_edit_view_gtk.cc563 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()
Dautocomplete_edit_view_mac.mm377 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/
Ddownload_item_view.cc1087 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()