Searched defs:iter (Results 1 - 25 of 590) sorted by relevance

1234567891011>>

/external/chromium/chrome/common/extensions/
H A Duser_script_unittest.cc146 void* iter = NULL; local
148 script2.Unpickle(pickle, &iter);
/external/skia/include/gpu/
H A DGrClipIterator.h64 * Call to move to the next element in the list, previous path iter can be
71 * Call to rewind iter, first checking to see if iter is NULL
73 static inline void GrSafeRewind(GrClipIterator* iter) { argument
74 if (iter) {
75 iter->rewind();
/external/chromium/chrome/browser/automation/
H A Dautomation_provider_list.cc18 iterator iter = automation_providers_.begin(); local
19 while (iter != automation_providers_.end()) {
20 (*iter)->Release();
21 iter = automation_providers_.erase(iter);
H A Dautomation_resource_tracker.cc59 HandleToResourceMap::const_iterator iter = handle_to_resource_.find(handle); local
60 if (iter == handle_to_resource_.end())
63 return iter->second;
67 ResourceToHandleMap::const_iterator iter = local
69 if (iter == resource_to_handle_.end())
72 return iter->second;
H A Dautomation_tab_tracker.cc51 std::map<NavigationController*, base::Time>::iterator iter = local
54 if (iter != last_navigation_times_.end())
55 last_navigation_times_.erase(iter);
69 std::map<NavigationController*, base::Time>::const_iterator iter = local
71 if (iter != last_navigation_times_.end())
72 return iter->second;
/external/chromium/chrome/browser/status_icons/
H A Dstatus_tray.cc33 StatusIconList::iterator iter = std::find( local
35 if (iter != status_icons_.end()) {
37 delete *iter;
38 status_icons_.erase(iter);
/external/chromium/chrome/common/
H A Drender_messages.cc16 const Message* m, void** iter, ContentSettings* r) {
18 if (!ReadParam(m, iter, &r->settings[i]))
15 Read( const Message* m, void** iter, ContentSettings* r) argument
H A Dcommon_param_traits.cc16 bool ParamTraits<ContentSetting>::Read(const Message* m, void** iter, argument
19 if (!m->ReadInt(iter, &type))
54 bool ParamTraits<ContentSettingsType>::Read(const Message* m, void** iter, argument
57 if (!m->ReadInt(iter, &type))
H A Dcommon_param_traits_unittest.cc35 void* iter = NULL; local
36 EXPECT_TRUE(IPC::ParamTraits<GURL>::Read(&msg, &iter, &output));
56 void* iter = NULL; local
57 EXPECT_FALSE(IPC::ParamTraits<GURL>::Read(&msg, &iter, &output));
69 void* iter = NULL; local
70 EXPECT_TRUE(IPC::ParamTraits<TestPair>::Read(&msg, &iter, &output));
88 void* iter = NULL; local
89 EXPECT_TRUE(IPC::ParamTraits<SkBitmap>::Read(&msg, &iter, &output));
104 iter = NULL;
105 msg.ReadData(&iter,
128 void* iter = NULL; local
162 void* iter = NULL; local
182 void* iter = NULL; local
[all...]
H A Drender_messages.h64 static bool Read(const Message* m, void** iter, param_type* p) { argument
81 static bool Read(const Message* m, void** iter, param_type* r);
/external/clang/test/SemaCXX/
H A Dfor-range-no-std.cpp18 struct iter { struct in namespace:NS
20 bool operator!=(iter);
23 iter begin(ADL); // expected-note {{not viable}}
24 iter end(ADL);
28 NS::iter begin(NS::NoADL); // expected-note {{not viable}}
29 NS::iter end(NS::NoADL);
/external/icu4c/i18n/
H A Dfphdlimp.h49 FieldPositionIterator* iter; // can be NULL member in class:FieldPositionIteratorHandler
/external/libmtp/examples/
H A Dalbums.c38 LIBMTP_mtpdevice_t *device_list, *iter; local
70 for(iter = device_list; iter != NULL; iter = iter->next)
76 friendlyname = LIBMTP_Get_Friendlyname(iter);
84 album_list = LIBMTP_Get_Album_List(iter);
H A Dfiles.c51 LIBMTP_mtpdevice_t *device_list, *iter; local
84 for(iter = device_list; iter != NULL; iter = iter->next)
90 friendlyname = LIBMTP_Get_Friendlyname(iter);
99 files = LIBMTP_Get_Filelisting_With_Callback(iter, NULL, NULL);
102 LIBMTP_Dump_Errorstack(iter);
103 LIBMTP_Clear_Errorstack(iter);
H A Dtracks.c84 LIBMTP_mtpdevice_t *device_list, *iter; local
116 for(iter = device_list; iter != NULL; iter = iter->next)
120 friendlyname = LIBMTP_Get_Friendlyname(iter);
129 tracks = LIBMTP_Get_Tracklisting_With_Callback(iter, NULL, NULL);
/external/chromium/base/
H A Dcommand_line_unittest.cc83 std::vector<CommandLine::StringType>::const_iterator iter = args.begin(); local
84 EXPECT_EQ(FILE_PATH_LITERAL("flim"), *iter);
85 ++iter;
86 EXPECT_EQ(FILE_PATH_LITERAL("flan"), *iter);
87 ++iter;
88 EXPECT_EQ(FILE_PATH_LITERAL("--"), *iter);
89 ++iter;
90 EXPECT_EQ(FILE_PATH_LITERAL("--not-a-switch"), *iter);
91 ++iter;
92 EXPECT_EQ(FILE_PATH_LITERAL("in the time of submarines..."), *iter);
[all...]
/external/chromium/chrome/browser/autofill/
H A Dcredit_card_field.cc51 std::vector<AutofillField*>::const_iterator* iter,
54 std::vector<AutofillField*>::const_iterator q = *iter;
180 *iter = q;
197 *iter = q;
50 Parse( std::vector<AutofillField*>::const_iterator* iter, bool is_ecml) argument
/external/chromium/chrome/browser/chromeos/status/
H A Dwindow_switcher_button.cc21 BrowserList::const_iterator iter; local
22 for (iter = BrowserList::begin(); iter != BrowserList::end(); ++iter) {
23 if ((*iter)->type() == Browser::TYPE_NORMAL)
/external/chromium/chrome/browser/extensions/
H A Dextension_browser_actions_api.cc51 void* iter = NULL; local
54 IPC::ReadParam(&bitmap_pickle, &iter, &bitmap));
/external/chromium/chrome/browser/notifications/
H A Dballoon_collection_base.cc26 Balloons::iterator iter; local
27 for (iter = balloons_.begin(); iter != balloons_.end(); ++iter) {
28 if ((*iter) == balloon) {
29 balloons_.erase(iter);
39 Balloons::iterator iter; local
40 for (iter = balloons_.begin(); iter != balloons_.end(); ++iter) {
55 Balloons::iterator iter; local
77 Balloons::iterator iter; local
[all...]
/external/chromium/chrome/browser/ui/gtk/
H A Daccelerators_gtk.cc202 base::hash_map<int, ui::AcceleratorGtk>::const_iterator iter = local
205 if (iter == primary_accelerators_.end())
208 return &iter->second;
/external/chromium/chrome/browser/ui/webui/options/
H A Dfont_settings_utils_win.cc42 std::set<std::wstring>::iterator iter; local
43 for (iter = font_names.begin(); iter != font_names.end(); iter++) {
45 font_item->Append(Value::CreateStringValue(*iter));
46 font_item->Append(Value::CreateStringValue(*iter));
/external/chromium/net/base/
H A Dssl_client_auth_cache.cc25 AuthCacheMap::iterator iter = cache_.find(server); local
26 if (iter == cache_.end())
29 *certificate = iter->second;
/external/chromium/webkit/glue/
H A Dpassword_form_dom_manager.cc65 PasswordFormMap::const_iterator iter; local
66 for (iter = matches.begin(); iter != matches.end(); iter++) {
67 if (iter->second != preferred_match)
68 result->additional_logins[iter->first] = iter->second->password_value;
H A Dwebcursor_unittest.cc29 void* iter = NULL; local
30 EXPECT_TRUE(custom_cursor.Deserialize(&ok_custom_pickle, &iter));
46 iter = NULL;
47 EXPECT_FALSE(custom_cursor.Deserialize(&short_custom_pickle, &iter));
65 iter = NULL;
66 EXPECT_FALSE(custom_cursor.Deserialize(&large_custom_pickle, &iter));
82 iter = NULL;
83 EXPECT_FALSE(custom_cursor.Deserialize(&neg_custom_pickle, &iter));
91 iter = NULL;
92 EXPECT_TRUE(custom_cursor.Deserialize(&win32_custom_pickle, &iter));
115 void* iter = NULL; local
[all...]

Completed in 384 milliseconds

1234567891011>>