Home | History | Annotate | Download | only in util

Lines Matching refs:words

50     words = line.split()
51 if len(words) < 2:
53 if words[0] in PRODUCT_KEYWORDS:
55 if overrideProperty and words[1] == ":=":
56 if len(productData[words[0]]) != 0:
57 print "** Warning: overriding property " + words[0] + " that was:" + \
58 productData[words[0]]
59 productData[words[0]] = {}
60 d = productData[words[0]]
61 for word in words[2:]:
67 elif words[0] == "$(call" and words[1].startswith("inherit-product"):
68 parseProduct(substPathVars(removeTrailingParen(words[2]), productPath), productData)
69 elif words[0] == "include":
70 parseProduct(substPathVars(words[1], productPath), productData, True)
71 elif words[0] == "-include":
72 parseProduct(substPathVars(words[1], productPath), productData, True)