HomeSort by relevance Sort by last modified time
    Searched defs:group_name (Results 1 - 11 of 11) sorted by null

  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
group-file-parser.rb 99 RULE_METHODS = [ :group_spec, :group_name, :member, :parameter_declaration,
170 # 79:1: group_spec[ namespace ] returns [ group ] : ( group_name[ $namespace ] | ) ( member[ $group ] )* ;
179 # at line 80:5: ( group_name[ $namespace ] | ) ( member[ $group ] )*
180 # at line 80:5: ( group_name[ $namespace ] | )
193 # at line 80:7: group_name[ $namespace ]
195 group_name1 = group_name( namespace )
244 # parser rule group_name
247 # 86:1: group_name[ namespace ] returns [ group ] : 'group' (mod= CONSTANT '::' )* name= CONSTANT ( ';' )? ;
249 def group_name( namespace ) method in class:ANTLR3.Template.GroupFile.Parser
  /external/chromium/base/metrics/
field_trial.cc 99 std::string FieldTrial::group_name() { function in class:base::FieldTrial
188 return field_trial->group_name();
201 std::string group_name = it->second->group_name_internal(); local
202 if (group_name.empty())
204 // group_name.
205 group_name = it->second->default_group_name();
207 DCHECK_EQ(group_name.find(kPersistentStringSeparator), std::string::npos);
210 output->append(group_name);
238 std::string group_name(parent_trials, name_end + 1,
245 if ((field_trial->group_name_internal() != group_name) &
    [all...]
  /external/chromium/chrome/browser/
plugin_updater.cc 57 void PluginUpdater::EnablePluginGroup(bool enable, const string16& group_name) {
58 webkit::npapi::PluginList::Singleton()->EnableGroup(enable, group_name);
170 string16 group_name; local
201 } else if (!enabled && plugin->GetString("name", &group_name)) {
204 if (force_enable_internal_pdf && pdf_group_name == group_name)
208 EnablePluginGroup(false, group_name);
  /external/chromium/chrome/browser/ui/webui/
plugins_ui.cc 247 string16 group_name; local
248 if (!args->GetString(0, &group_name))
251 plugin_updater->EnablePluginGroup(enable, group_name);
258 if (group_name == adobereader) {
260 } else if (group_name == internalpdf) {
  /external/chromium/net/socket/
client_socket_handle.h 28 // The handle's |group_name| uniquely identifies the origin and type of the
73 int Init(const std::string& group_name,
132 const std::string& group_name() const { return group_name_; } function in class:net::ClientSocketHandle
186 int ClientSocketHandle::Init(const std::string& group_name,
194 CHECK(!group_name.empty());
202 group_name_ = group_name;
205 group_name, &socket_params, priority, this, &callback_, net_log);
client_socket_pool_base.cc 47 ConnectJob::ConnectJob(const std::string& group_name,
51 : group_name_(group_name),
57 DCHECK(!group_name.empty());
121 make_scoped_refptr(new NetLogStringParameter("group_name", group_name_)));
226 const std::string& group_name,
236 Group* group = GetOrCreateGroup(group_name);
238 int rv = RequestSocketInternal(group_name, request);
250 const std::string& group_name,
269 Group* group = GetOrCreateGroup(group_name);
278 rv = RequestSocketInternal(group_name, &request)
796 const std::string group_name = job->group_name(); local
    [all...]
client_socket_pool_base.h 70 ConnectJob(const std::string& group_name,
77 const std::string& group_name() const { return group_name_; } function in class:net::ConnectJob
212 const std::string& group_name,
234 int RequestSocket(const std::string& group_name, const Request* request);
237 void RequestSockets(const std::string& group_name,
242 void CancelRequest(const std::string& group_name,
246 void ReleaseSocket(const std::string& group_name,
263 int IdleSocketCountInGroup(const std::string& group_name) const;
266 LoadState GetLoadState(const std::string& group_name,
275 int NumConnectJobsInGroup(const std::string& group_name) const
    [all...]
  /external/protobuf/python/
mox.py 664 def _CheckAndCreateNewGroup(self, group_name, group_class):
670 group_name: the name of the group.
676 if isinstance(group, group_class) and group.group_name() == group_name:
681 new_group = group_class(group_name)
686 def InAnyOrder(self, group_name="default"):
697 group_name: the name of the unordered group.
702 return self._CheckAndCreateNewGroup(group_name, UnorderedGroup)
704 def MultipleTimes(self, group_name="default"):
711 group_name: the name of the unordered group
1188 def group_name(self): member in class:MethodGroup
    [all...]
  /external/llvm/test/Bindings/Ocaml/
vmcore.ml 18 let group_name = ref "" var
33 group_name := !suite_name ^ "/" ^ name;
45 prerr_endline ("FAILED: " ^ !suite_name ^ "/" ^ !group_name ^ " #" ^ (string_of_int !case_num))
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new.c 1073 char group_name[3]; local
1078 os_memcpy(group_name, ssid->ssid + P2P_WILDCARD_SSID_LEN, 2);
1079 group_name[2] = '\0';
1083 wpa_s->dbus_new_path, group_name);
    [all...]
  /external/dbus/bus/
config-parser.c 1039 DBusString group_name; local
1040 _dbus_string_init_const (&group_name, group);
1042 if (_dbus_parse_unix_group_from_config (&group_name,
    [all...]

Completed in 575 milliseconds