Lines Matching defs:makeVarsContext
189 type makeVarsContext struct { struct
190 SingletonContext
191 pctx PackageContext
192 vars []makeVarsVariable
193 phonies []phony
568 func (c *makeVarsContext) DeviceConfig() DeviceConfig {
574 func (c *makeVarsContext) Eval(ninjaStr string) (string, error) {
584 func (c *makeVarsContext) addVariableRaw(name, value string, strict, sort bool) {
593 func (c *makeVarsContext) addVariable(name, ninjaStr string, strict, sort bool) {
601 func (c *makeVarsContext) addPhony(name string, deps []string) {
605 func (c *makeVarsContext) Strict(name, ninjaStr string) {
608 func (c *makeVarsContext) StrictSorted(name, ninjaStr string) {
611 func (c *makeVarsContext) StrictRaw(name, value string) {
615 func (c *makeVarsContext) Check(name, ninjaStr string) {
618 func (c *makeVarsContext) CheckSorted(name, ninjaStr string) {
621 func (c *makeVarsContext) CheckRaw(name, value string) {
625 func (c *makeVarsContext) Phony(name string, deps ...Path) {