Searched refs:group (Results 76 - 100 of 1472) sorted by relevance

1234567891011>>

/external/qemu/
H A Dgen-charmap.py87 keycode = m.group(1)
88 line = m.group(2)
93 disp = quote(m.group(1))
94 line = m.group(2)
99 number = quote(m.group(1))
100 line = m.group(2)
105 base = quote(m.group(1))
106 line = m.group(2)
111 caps = quote(m.group(1))
112 line = m.group(
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DRadioButtonGroupScope.cpp97 // A radio button not in a group is always valid. We need to make it
98 // invalid only if the group is invalid.
160 // A radio button not in a group is always valid. We need to make it
161 // valid only if the group was invalid.
212 OwnPtrWillBeMember<RadioButtonGroup>& group = m_nameToGroupMap->add(element->name(), nullptr).storedValue->value; local
213 if (!group)
214 group = RadioButtonGroup::create();
215 group->add(element);
226 RadioButtonGroup* group = m_nameToGroupMap->get(element->name());
227 ASSERT(group);
[all...]
/external/chromium_org/components/renderer_context_menu/
H A Dcontext_menu_content_type.cc64 bool ContextMenuContentType::SupportsGroup(int group) { argument
68 if (group == ITEM_GROUP_CUSTOM)
76 return group == ITEM_GROUP_DEVELOPER;
88 if (group != ITEM_GROUP_CUSTOM &&
89 group != ITEM_GROUP_EDITABLE &&
90 group != ITEM_GROUP_COPY &&
91 group != ITEM_GROUP_DEVELOPER) {
96 return SupportsGroupInternal(group);
99 bool ContextMenuContentType::SupportsGroupInternal(int group) { argument
103 switch (group) {
[all...]
/external/chromium_org/tools/telemetry/telemetry/results/
H A Dresults_options.py25 group = optparse.OptionGroup(parser, 'Results options')
26 group.add_option('--chartjson', action='store_true',
28 group.add_option('--output-format', action='append', dest='output_formats',
32 group.add_option('-o', '--output',
36 group.add_option('--output-trace-tag',
39 group.add_option('--reset-results', action='store_true',
41 group.add_option('--upload-results', action='store_true',
43 group.add_option('--results-label',
46 group.add_option('--suppress_gtest_report',
49 parser.add_option_group(group)
[all...]
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_metrics.cc41 // First, translates |field_type| to the corresponding logical |group| from
46 // The interpolation maps the pair (|group|, |metric|) to a single index, so
47 // that all the indicies for a given group are adjacent. In particular, with
67 FieldTypeGroupForMetrics group = AMBIGUOUS; local
68 switch (AutofillType(field_type).group()) {
70 group = AMBIGUOUS;
75 group = NAME;
79 group = COMPANY;
86 group = ADDRESS_LINE_1;
89 group
[all...]
/external/chromium_org/mojo/public/python/mojo/bindings/
H A Dserialization.py67 for group in self._groups:
69 group.GetByteSize())
70 (entry, new_handles) = group.Serialize(
77 position = position + group.GetByteSize()
89 for (group, value) in zip(filtered_groups, entitities):
91 group.GetByteSize())
92 fields.update(group.Deserialize(value, buffer(data, position), handles))
93 position += group.GetByteSize()
108 return [group for group i
[all...]
/external/chromium_org/chrome/browser/resources/net_internals/
H A Dsocket_pool_wrapper.js104 var group = origPool.groups[groupName];
105 idleSources = idleSources.concat(group.idle_sockets);
106 connectingSources = connectingSources.concat(group.connect_jobs);
138 var group = this.origPool.groups[groupName];
142 tablePrinter.addCell(group.pending_request_count);
143 if (group.top_pending_priority != undefined)
144 tablePrinter.addCell(group.top_pending_priority);
148 tablePrinter.addCell(group.active_socket_count);
149 var idleCell = tablePrinter.addCell(group.idle_sockets.length);
150 var connectingCell = tablePrinter.addCell(group
[all...]
/external/chromium_org/tools/grit/grit/
H A Dshortcuts.py14 group. Knows how to detect conflicting shortcut keys.
25 # List of cliques in this group
64 warnings.append("WARNING - duplicate keys exist in shortcut group %s" %
86 for group in c.shortcut_groups:
87 if group not in groups:
88 groups[group] = ShortcutGroup(group)
89 groups[group].AddClique(c)
90 for group in groups.values():
91 warnings += group
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/test/unit/
H A Dtest-template.rb12 File.dirname( __FILE__ ), 'sample-input', 'template-group'
77 templates = @group.templates
79 templates.should equal @group::TEMPLATES
89 template_class.should be < @group # it should include the group module
93 example "template_defined?( name ) should verify whether a template is defined in a group" do
95 @group.template_defined?( name ).should be_true
96 @group.template_defined?( name.to_s ).should be_true
99 @group.template_defined?( :something_else ).should be_false
104 @group
[all...]
/external/aac/libAACdec/src/
H A Drvlcconceal.cpp116 int band,bnds,group,startBand; local
139 for (group=conceal_group_min; group >= 0; group--) {
141 bnds = 16*group+band;
191 int band,bnds,group,startBand; local
215 for (group=conceal_group_max; group < pRvlc->numWindowGroups; group++) {
217 bnds = 16*group
269 int band,bnds,startBand,endBand,group; local
405 int band,bnds,startBand,endBand,group; local
535 int band,bnds,group; local
643 int band,bnds,group; local
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fReadPixelsTests.cpp424 TestCaseGroup* group = new TestCaseGroup(m_context, "alignment", "Read pixels pack alignment parameter tests"); local
426 group->addChild(new ReadPixelsTest(m_context, "rgba_ubyte_1", "", false, 1, 0, 0, 0, GL_RGBA, GL_UNSIGNED_BYTE));
427 group->addChild(new ReadPixelsTest(m_context, "rgba_ubyte_2", "", false, 2, 0, 0, 0, GL_RGBA, GL_UNSIGNED_BYTE));
428 group->addChild(new ReadPixelsTest(m_context, "rgba_ubyte_4", "", false, 4, 0, 0, 0, GL_RGBA, GL_UNSIGNED_BYTE));
429 group->addChild(new ReadPixelsTest(m_context, "rgba_ubyte_8", "", false, 8, 0, 0, 0, GL_RGBA, GL_UNSIGNED_BYTE));
431 group->addChild(new ReadPixelsTest(m_context, "rgba_int_1", "", false, 1, 0, 0, 0, GL_RGBA_INTEGER, GL_INT));
432 group->addChild(new ReadPixelsTest(m_context, "rgba_int_2", "", false, 2, 0, 0, 0, GL_RGBA_INTEGER, GL_INT));
433 group->addChild(new ReadPixelsTest(m_context, "rgba_int_4", "", false, 4, 0, 0, 0, GL_RGBA_INTEGER, GL_INT));
434 group->addChild(new ReadPixelsTest(m_context, "rgba_int_8", "", false, 8, 0, 0, 0, GL_RGBA_INTEGER, GL_INT));
436 group
450 TestCaseGroup* group = new TestCaseGroup(m_context, "rowlength", "Read pixels rowlength test"); local
475 TestCaseGroup* group = new TestCaseGroup(m_context, "skip", "Read pixels skip pixels and rows test"); local
[all...]
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dwpa_auth.c39 struct wpa_group *group);
42 struct wpa_group *group);
44 struct wpa_group *group);
224 if (random_get_bytes(wpa_auth->group->GMK, WPA_GMK_LEN)) {
230 wpa_auth->group->GMK, WPA_GMK_LEN);
243 struct wpa_group *group; local
246 for (group = wpa_auth->group; group; group
288 wpa_group_init_gmk_and_counter(struct wpa_authenticator *wpa_auth, struct wpa_group *group) argument
323 struct wpa_group *group; local
447 struct wpa_group *group = wpa_auth->group; local
466 struct wpa_group *group, *prev; local
509 struct wpa_group *group; local
752 wpa_receive_error_report(struct wpa_authenticator *wpa_auth, struct wpa_state_machine *sm, int group) argument
1652 wpa_group_ensure_init(struct wpa_authenticator *wpa_auth, struct wpa_group *group) argument
2452 wpa_gtk_update(struct wpa_authenticator *wpa_auth, struct wpa_group *group) argument
2485 wpa_group_gtk_init(struct wpa_authenticator *wpa_auth, struct wpa_group *group) argument
2622 wpa_group_setkeys(struct wpa_authenticator *wpa_auth, struct wpa_group *group) argument
2657 wpa_group_config_group_keys(struct wpa_authenticator *wpa_auth, struct wpa_group *group) argument
2701 wpa_group_fatal_failure(struct wpa_authenticator *wpa_auth, struct wpa_group *group) argument
2711 wpa_group_setkeysdone(struct wpa_authenticator *wpa_auth, struct wpa_group *group) argument
2728 wpa_group_sm_step(struct wpa_authenticator *wpa_auth, struct wpa_group *group) argument
2809 struct wpa_group *group; local
3102 struct wpa_group *group; local
3122 struct wpa_group *group; local
[all...]
/external/wpa_supplicant_8/src/ap/
H A Dwpa_auth.c39 struct wpa_group *group);
42 struct wpa_group *group);
44 struct wpa_group *group);
224 if (random_get_bytes(wpa_auth->group->GMK, WPA_GMK_LEN)) {
230 wpa_auth->group->GMK, WPA_GMK_LEN);
243 struct wpa_group *group; local
246 for (group = wpa_auth->group; group; group
288 wpa_group_init_gmk_and_counter(struct wpa_authenticator *wpa_auth, struct wpa_group *group) argument
323 struct wpa_group *group; local
447 struct wpa_group *group = wpa_auth->group; local
466 struct wpa_group *group, *prev; local
509 struct wpa_group *group; local
752 wpa_receive_error_report(struct wpa_authenticator *wpa_auth, struct wpa_state_machine *sm, int group) argument
1652 wpa_group_ensure_init(struct wpa_authenticator *wpa_auth, struct wpa_group *group) argument
2452 wpa_gtk_update(struct wpa_authenticator *wpa_auth, struct wpa_group *group) argument
2485 wpa_group_gtk_init(struct wpa_authenticator *wpa_auth, struct wpa_group *group) argument
2622 wpa_group_setkeys(struct wpa_authenticator *wpa_auth, struct wpa_group *group) argument
2657 wpa_group_config_group_keys(struct wpa_authenticator *wpa_auth, struct wpa_group *group) argument
2701 wpa_group_fatal_failure(struct wpa_authenticator *wpa_auth, struct wpa_group *group) argument
2711 wpa_group_setkeysdone(struct wpa_authenticator *wpa_auth, struct wpa_group *group) argument
2728 wpa_group_sm_step(struct wpa_authenticator *wpa_auth, struct wpa_group *group) argument
2809 struct wpa_group *group; local
3102 struct wpa_group *group; local
3122 struct wpa_group *group; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dwpa_auth.c39 struct wpa_group *group);
42 struct wpa_group *group);
44 struct wpa_group *group);
224 if (random_get_bytes(wpa_auth->group->GMK, WPA_GMK_LEN)) {
230 wpa_auth->group->GMK, WPA_GMK_LEN);
243 struct wpa_group *group; local
246 for (group = wpa_auth->group; group; group
288 wpa_group_init_gmk_and_counter(struct wpa_authenticator *wpa_auth, struct wpa_group *group) argument
323 struct wpa_group *group; local
447 struct wpa_group *group = wpa_auth->group; local
466 struct wpa_group *group, *prev; local
509 struct wpa_group *group; local
752 wpa_receive_error_report(struct wpa_authenticator *wpa_auth, struct wpa_state_machine *sm, int group) argument
1652 wpa_group_ensure_init(struct wpa_authenticator *wpa_auth, struct wpa_group *group) argument
2452 wpa_gtk_update(struct wpa_authenticator *wpa_auth, struct wpa_group *group) argument
2485 wpa_group_gtk_init(struct wpa_authenticator *wpa_auth, struct wpa_group *group) argument
2622 wpa_group_setkeys(struct wpa_authenticator *wpa_auth, struct wpa_group *group) argument
2657 wpa_group_config_group_keys(struct wpa_authenticator *wpa_auth, struct wpa_group *group) argument
2701 wpa_group_fatal_failure(struct wpa_authenticator *wpa_auth, struct wpa_group *group) argument
2711 wpa_group_setkeysdone(struct wpa_authenticator *wpa_auth, struct wpa_group *group) argument
2728 wpa_group_sm_step(struct wpa_authenticator *wpa_auth, struct wpa_group *group) argument
2809 struct wpa_group *group; local
3102 struct wpa_group *group; local
3122 struct wpa_group *group; local
[all...]
/external/chromium_org/build/mac/
H A Dstrip_save_dsym59 archs.append(type_match.group(1))
60 return [type_match.group(1)]
65 for i in range(0, int(type_match.group(1))):
71 archs.append(arch_match.group(1))
133 uuid = new_uuid_match.group(1)
143 uuid = old_uuid_match.group(1) + old_uuid_match.group(2) + \
144 old_uuid_match.group(3) + old_uuid_match.group(4) + "-" + \
145 old_uuid_match.group(
[all...]
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dlink_converter.py24 title = matches.group(3)
25 if matches.group(2).count('#') != 1:
26 return '<a%shref=%s>%s</a>' % (matches.group(1),
27 matches.group(2),
29 clean = (matches.group(2).replace('\\', '')
40 return '<a%shref=%s>%s</a>' % (matches.group(1),
41 matches.group(2),
46 if matches.group(1) == ' ':
49 padding = matches.group(1)
/external/chromium_org/chrome/browser/
H A Dicon_manager.h88 const IconGroupID& group) OVERRIDE;
91 const IconGroupID& group) OVERRIDE;
95 CacheKey(const IconGroupID& group, IconLoader::IconSize size);
100 IconGroupID group; member in struct:IconManager::CacheKey
104 gfx::Image* LookupIconFromGroup(const IconGroupID& group,
/external/chromium_org/third_party/skia/src/pdf/
H A DSkPDFFormXObject.cpp75 SkAutoTUnref<SkPDFDict> group(new SkPDFDict("Group"));
76 group->insertName("S", "Transparency");
79 group->insertName("CS", colorSpace);
81 group->insert("I", new SkPDFBool(true))->unref(); // Isolated.
82 insert("Group", group.get());
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/
H A DTrackMetaData.java32 private int group = 0; field in class:TrackMetaData
124 return group;
127 public void setGroup(int group) { argument
128 this.group = group;
/external/skia/src/pdf/
H A DSkPDFFormXObject.cpp75 SkAutoTUnref<SkPDFDict> group(new SkPDFDict("Group"));
76 group->insertName("S", "Transparency");
79 group->insertName("CS", colorSpace);
81 group->insert("I", new SkPDFBool(true))->unref(); // Isolated.
82 insert("Group", group.get());
/external/chromium_org/third_party/webrtc/video_engine/
H A Dvie_channel_manager.cc87 // Create a new channel group and add this channel.
88 ChannelGroup* group = new ChannelGroup(engine_id_, module_process_thread_, local
90 BitrateController* bitrate_controller = group->GetBitrateController();
100 group->GetRemoteBitrateEstimator();
102 group->GetEncoderStateFeedback();
104 group->GetCallStats()->rtcp_rtt_stats();
114 delete group;
127 group->AddChannel(*channel_id);
128 channel_groups_.push_back(group);
130 group
211 ChannelGroup* group = NULL; local
344 ChannelGroup* group = FindGroup(channel_id); local
357 ChannelGroup* group = FindGroup(channel_id); local
391 ChannelGroup* group = FindGroup(channel_id); local
402 ChannelGroup* group = FindGroup(channel_id); local
413 ChannelGroup* group = FindGroup(channel_id); local
[all...]
/external/chromium_org/net/socket/
H A Dclient_socket_pool_base.cc222 // limit. To find such a request, look for a group that has more requests
225 // |max_sockets_per_group_|, then the request is stalled on the group limit,
268 Group* group = GetOrCreateGroup(group_name); local
276 group->InsertPendingRequest(request.Pass());
281 if (group->IsStalledOnPoolMaxSockets(max_sockets_per_group_)) {
311 Group* group = GetOrCreateGroup(group_name); local
313 // RequestSocketsInternal() may delete the group.
318 group->NumActiveSocketSlots() < num_sockets &&
328 // Unexpected. The group should only be getting deleted on synchronous
336 if (!deleted_group && group
350 Group* group = GetOrCreateGroup(group_name); local
440 AssignIdleSocketToRequest( const Request& request, Group* group) argument
491 group, local
523 Group* group = GetOrCreateGroup(group_name); local
572 const Group& group = *group_map_.find(group_name)->second; local
608 const Group* group = it->second; local
676 Group* group = i->second; local
772 Group* group = i->second; local
831 FindTopStalledGroup( Group** group, std::string* group_name) const argument
872 Group* group = group_it->second; local
939 RemoveConnectJob(ConnectJob* job, Group* group) argument
948 OnAvailableSocketSlot( const std::string& group_name, Group* group) argument
958 ProcessPendingRequest( const std::string& group_name, Group* group) argument
974 HandOutSocket( scoped_ptr<StreamSocket> socket, ClientSocketHandle::SocketReuseType reuse_type, const LoadTimingInfo::ConnectTiming& connect_timing, ClientSocketHandle* handle, base::TimeDelta idle_time, Group* group, const BoundNetLog& net_log) argument
1004 AddIdleSocket( scoped_ptr<StreamSocket> socket, Group* group) argument
1018 Group* group = i->second; local
1037 Group* group = i->second; local
1080 Group* group = i->second; local
[all...]
/external/chromium_org/native_client_sdk/src/build_tools/
H A Dgenerate_index.py31 group = desc['GROUP']
32 assert group in self.section_list
33 self.section_map[group].append(desc)
/external/markdown/markdown/extensions/
H A Dmeta.py71 key = m1.group('key').lower().strip()
72 meta[key] = [m1.group('value').strip()]
77 meta[key].append(m2.group('value').strip())
/external/chromium_org/content/browser/appcache/
H A Dappcache_working_set.cc45 void AppCacheWorkingSet::AddGroup(AppCacheGroup* group) { argument
48 const GURL& url = group->manifest_url();
50 groups_.insert(GroupMap::value_type(url, group));
51 groups_by_origin_[url.GetOrigin()].insert(GroupMap::value_type(url, group));
54 void AppCacheWorkingSet::RemoveGroup(AppCacheGroup* group) { argument
55 const GURL& url = group->manifest_url();

Completed in 770 milliseconds

1234567891011>>