Searched refs:new_info (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/tools/gn/
H A Dfunction_write_file_unittest.cc83 base::File::Info new_info; local
84 foo_file.GetInfo(&new_info);
85 EXPECT_EQ(original_info.last_modified, new_info.last_modified);
/external/chromium_org/ash/display/
H A Ddisplay_change_observer_chromeos.cc229 DisplayInfo& new_info = displays.back(); local
230 new_info.set_device_scale_factor(device_scale_factor);
231 new_info.SetBounds(display_bounds);
232 new_info.set_native(true);
233 new_info.set_is_aspect_preserving_scaling(
238 GetInternalDisplayModeList(new_info, state) :
240 new_info.set_display_modes(display_modes);
242 new_info.set_available_color_profiles(
H A Ddisplay_manager.cc1140 void DisplayManager::InsertAndUpdateDisplayInfo(const DisplayInfo& new_info) { argument
1142 display_info_.find(new_info.id());
1144 info->second.Copy(new_info);
1146 display_info_[new_info.id()] = new_info;
1147 display_info_[new_info.id()].set_native(false);
1149 display_info_[new_info.id()].UpdateDisplaySize();
1151 OnDisplayInfoUpdated(display_info_[new_info.id()]);
H A Ddisplay_manager.h332 // can be different from |new_info| (due to overscan state), so
335 void InsertAndUpdateDisplayInfo(const DisplayInfo& new_info);
/external/chromium_org/base/win/
H A Dwindows_version.cc27 OSInfo* new_info = new OSInfo(); local
29 reinterpret_cast<PVOID*>(&info), new_info, NULL)) {
30 delete new_info;
/external/ltrace/
H A Dvalue.c488 struct arg_type_info *new_info = calloc(sizeof(*new_info), 1); local
489 if (new_info == NULL)
495 type_init_pointer(new_info, orig, own);
496 new_info->lens = orig->lens;
497 value_set_type(value, new_info, 1);
/external/chromium_org/storage/browser/fileapi/
H A Dsandbox_directory_database.cc584 FileId file_id, const FileInfo& new_info) {
593 if (old_info.parent_id != new_info.parent_id &&
594 !IsDirectory(new_info.parent_id))
596 if (old_info.parent_id != new_info.parent_id ||
597 old_info.name != new_info.name) {
600 if (GetChildWithName(new_info.parent_id, new_info.name, &temp_id)) {
607 !AddFileInfoHelper(new_info, file_id, &batch))
583 UpdateFileInfo( FileId file_id, const FileInfo& new_info) argument
/external/chromium_org/content/renderer/
H A Drender_widget.cc1767 blink::WebTextInputInfo new_info; local
1769 new_info = webwidget_->textInputInfo();
1770 const ui::TextInputMode new_mode = ConvertInputMode(new_info.inputMode);
1796 blink::WebTextInputInfo new_info;
1798 new_info = webwidget_->textInputInfo();
1806 text_input_info_ != new_info ||
1814 p.flags = new_info.flags;
1815 p.value = new_info.value.utf8();
1816 p.selection_start = new_info.selectionStart;
1817 p.selection_end = new_info
[all...]
/external/chromium_org/net/quic/
H A Dquic_unacked_packet_map.cc150 TransmissionInfo* new_info = local
152 delete new_info->all_transmissions;
153 new_info->all_transmissions = NULL;
/external/pcre/dist/
H A Dpcretest.c2410 new_info(pcre *re, pcre_extra *study, int option, void *ptr) function
3639 if (new_info(re, NULL, PCRE_INFO_OPTIONS, &get_options) < 0)
4054 if (new_info(re, NULL, PCRE_INFO_OPTIONS, &get_options) < 0)
4069 new_info(re, NULL, PCRE_INFO_NAMECOUNT, &name_count);
4070 new_info(re, NULL, PCRE_INFO_NAMEENTRYSIZE, &name_entry_size);
4084 new_info(re, NULL, PCRE_INFO_SIZE, &size);
4123 if (new_info(re, extra, PCRE_INFO_JITSIZE, &jitsize) == 0 &&
4165 if (new_info(re, NULL, PCRE_INFO_CAPTURECOUNT, &count) +
4166 new_info(re, NULL, PCRE_INFO_BACKREFMAX, &backrefmax) +
4167 new_info(r
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_vbuf.c1114 struct pipe_draw_info new_info = *info; local
1115 new_info.indexed = FALSE;
1116 new_info.index_bias = 0;
1117 new_info.min_index = 0;
1118 new_info.max_index = info->count - 1;
1119 new_info.start = 0;
1121 pipe->draw_vbo(pipe, &new_info);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_vbuf.c1114 struct pipe_draw_info new_info = *info; local
1115 new_info.indexed = FALSE;
1116 new_info.index_bias = 0;
1117 new_info.min_index = 0;
1118 new_info.max_index = info->count - 1;
1119 new_info.start = 0;
1121 pipe->draw_vbo(pipe, &new_info);
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-buffer.cc91 hb_glyph_info_t *new_info = NULL; local
105 new_info = (hb_glyph_info_t *) realloc (info, new_allocated * sizeof (info[0]));
108 if (unlikely (!new_pos || !new_info))
114 if (likely (new_info))
115 info = new_info;
/external/harfbuzz_ng/src/
H A Dhb-buffer.cc91 hb_glyph_info_t *new_info = NULL; local
105 new_info = (hb_glyph_info_t *) realloc (info, new_allocated * sizeof (info[0]));
108 if (unlikely (!new_pos || !new_info))
114 if (likely (new_info))
115 info = new_info;
/external/chromium_org/third_party/lcov/contrib/galaxy/
H A Dgenflat.pl238 my %new_info;
244 %new_info = %{read_info_file($_)};
246 # Combine %new_info with %info_data
247 %info_data = %{combine_info_files(\%info_data, \%new_info)};
/external/chromium_org/v8/src/
H A Dliveedit-debugger.js301 var new_info = old_node.corresponding_node.info;
304 %LiveEditReplaceFunctionCode(new_info.raw_array,
332 change_log.push( {function_patched: new_info.function_name} );
334 change_log.push( {function_patched: new_info.function_name,
/external/chromium_org/third_party/lcov/bin/
H A Dgenhtml707 my %new_info;
712 %new_info = %{read_info_file($_)};
714 # Combine %new_info with %info_data
715 %info_data = %{combine_info_files(\%info_data, \%new_info)};

Completed in 470 milliseconds