Lines Matching +refs:val +refs:entry
256 * First entry is always present, and grabs the whole regex.
2323 for (LookupEntry *entry = schemes; entry->sval ; entry++)
2325 int p2 = match(p, entry->sval);
2328 schemeStr = entry->sval;
2329 scheme = entry->ival;
2330 port = entry->port;
2369 long val = strtol(pstr, &endStr, 10);
2371 port = val;
2674 void setDirectory(const String &val)
2675 { directory = val; }
2680 void setFiles(const std::vector<String> &val)
2681 { files = val; }
2692 void setIncludes(const std::vector<String> &val)
2693 { includes = val; }
2704 void setExcludes(const std::vector<String> &val)
2705 { excludes = val; }
2797 void setDirectory(const String &val)
2798 { directory = val; }
2803 void setFiles(const std::vector<String> &val)
2804 { files = val; }
2920 void setLine(int val)
2921 { line = val; }
2933 virtual void setProperty(const String &name, const String &val)
2935 properties[name] = val;
2943 String val;
2946 val = iter->second;
2948 if (!getSubstitutions(val, sval))
3055 std::vector<String> tokenize(const String &val,
3122 * Parse a <fileset> entry, and determine which files
3129 * Parse a <filelist> entry
3275 virtual void setPath(const String &val)
3276 { path = val; }
3287 virtual void setPrefix(const String &val)
3288 { prefix = val; }
3519 res = elem->getTagAttribute("entry", name);
4470 String val;
4471 if (!pkgConfigRecursive(depPkgName, path, prefix, query, val, deplist))
4477 result.append(val);
4490 String val;
4491 if (!pkgConfigRecursive(packageName, path, prefix, query, val, deplist))
4493 result = val;
4521 String val;
4522 if (!pkgConfigQuery(varname, 0, val))
4524 result = val;
4530 String val;
4531 if (!pkgConfigQuery(varname, 1, val))
4533 result = val;
4539 String val;
4540 if (!pkgConfigQuery(varname, 2, val))
4542 result = val;
4548 String val;
4553 if (!bzrRevno.query(val))
4555 result = "r"+val;
4557 /*if (!svnInfo.query(varname, val))
4559 result = val;*/
4596 String val;
4623 val.append(varval2);
4635 val.push_back(ch);
4638 result = val;
4678 String val = eval(s, "false");
4679 if (val.size()==0)
4681 if (val == "true" || val == "TRUE")
4692 int val = atoi(s.c_str());
4694 return val;
4731 * Parse a <patternset> entry
4769 * Parse a <fileset> entry, and determine which files
4842 * Parse a <filelist> entry. This is far simpler than FileSet,
5324 String val;
5325 int pos2 = getword(pos, val);
5329 //trace("val %s", val.c_str());
5330 requireList.push_back(val);
5340 long val = strtol(s, &ends, 10);
5344 return val;
5808 virtual void setSourceDirectory(const String &val)
5809 { sourceDir = val; }
6610 virtual void setType(int val)
6611 { type = val; }
8420 String val = "";
8422 val = pkgconfig.getCflags();
8424 val =pkgconfig.getLibs();
8426 val = pkgconfig.getAll();
8432 taskstatus("property %s = '%s'", propName.c_str(), val.c_str());
8433 parent.setProperty(propName, val);
9139 virtual void setName(const String &val)
9140 { name = val; }
9151 virtual void setDescription(const String &val)
9152 { description = val; }
9157 virtual void addDependency(const String &val)
9158 { deps.push_back(val); }
9163 virtual void parseDependencies(const String &val)
9164 { deps = tokenize(val, ", "); }
9181 virtual void setIf(const String &val)
9182 { ifVar = val; }
9193 virtual void setUnless(const String &val)
9194 { unlessVar = val; }
9199 virtual void addTask(Task *val)
9200 { tasks.push_back(val); }
9644 String val;
9650 val.push_back(ch);
9653 result = val;
9687 String val;
9721 p2 = getword(p, s, val);
9736 val = s.substr(p);
9739 //allow property to be set, even if val=""
9741 //trace("key:'%s' val:'%s'", key.c_str(), val.c_str());
9747 val = iter->second;
9749 key.c_str(), val.c_str());
9751 properties[key] = val;
9773 String val;
9774 if (!getAttribute(elem, "value", val))
9776 if (val.size() > 0)
9778 properties[attrVal] = val;
9782 if (!getAttribute(elem, "location", val))
9785 properties[attrVal] = val;
9792 val = iter->second;
9794 attrVal.c_str(), val.c_str());
9795 properties[attrVal] = val;
10107 static bool parseProperty(const String &s, String &name, String &val)
10127 val.push_back(ch);