Lines Matching refs:name

80          * Creates a new component with the provided name.
81 * @param name The name of the component.
83 public Component(String name, Component parent) {
84 mName = name;
89 * Returns the name of the component.
90 * @return The name of the component.
138 String name= prop.getName();
139 ArrayList<Property> props = mPropsMap.get(name);
142 mPropsMap.put(name, props);
156 * Returns a list of properties with the specified name. Returns null
158 * @param name The name of the property that should be returned.
159 * @return A list of properties with the requested name.
161 public List<Property> getProperties(String name) {
162 return mPropsMap.get(name);
166 * Returns the first property with the specified name. Returns null
168 * @param name The name of the property that should be returned.
169 * @return The first property with the specified name.
171 public Property getFirstProperty(String name) {
172 List<Property> props = mPropsMap.get(name);
242 * Creates a new property with the provided name.
243 * @param name The name of the property.
245 public Property(String name) {
246 mName = name;
250 * Creates a new property with the provided name and value.
251 * @param name The name of the property.
254 public Property(String name, String value) {
255 mName = name;
260 * Returns the name of the property.
261 * @return The name of the property.
288 ArrayList<Parameter> params = mParamsMap.get(param.name);
291 mParamsMap.put(param.name, params);
305 * Returns the list of parameters with the specified name. May return
307 * @param name The name of the parameters that should be returned.
308 * @return The list of parameters with the specified name.
310 public List<Parameter> getParameters(String name) {
311 return mParamsMap.get(name);
315 * Returns the first parameter with the specified name. May return
317 * @param name The name of the parameter that should be returned.
318 * @return The first parameter with the specified name.
320 public Parameter getFirstParameter(String name) {
321 ArrayList<Parameter> params = mParamsMap.get(name);
358 public String name;
368 * Creates a new parameter with the specified name and value.
369 * @param name The name of the parameter.
372 public Parameter(String name, String value) {
373 this.name = name;
388 sb.append(name);
438 // name *(";" param) ":" value
472 // grab the name
480 String name = line.substring(0, state.index);
483 if (!Component.BEGIN.equals(name)) {
489 if (Component.BEGIN.equals(name)) {
497 } else if (Component.END.equals(name)) {
506 property = new Property(name);
579 parameter.name = text.substring(startIndex + 1, equalIndex);