Searched refs:propline (Results 1 – 4 of 4) sorted by relevance
100 for propline in aprops:101 if re.match("\s*(#.*)?$", propline): # Match comment and blank lines103 if re.match("\s*\[auto-props\]", propline): # Match the [auto-props] line.105 if not re.match("\s*[^\s]+\s*=", propline): # minimal syntax check for <file-type> =106 print "Bad line from autoprops definitions: " + propline108 file_type, string_proplist = propline.split("=", 1)
118 propline = nextline122 propline = None147 if not propline:154 for i in range(min(len(propline), len(textline))):155 if propline[i] != p:159 p = propline[i]
280 virtual void setProperty(const char* propline);
2181 void IntlTest::setProperty(const char* propline) { in setProperty() argument2183 proplines[numProps] = propline; in setProperty()