Home
last modified time | relevance | path

Searched refs:propline (Results 1 – 4 of 4) sorted by relevance

/external/cldr/tools/scripts/
Dcldr-svnprops-check.py100 for propline in aprops:
101 if re.match("\s*(#.*)?$", propline): # Match comment and blank lines
103 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: " + propline
108 file_type, string_proplist = propline.split("=", 1)
/external/python/cpython2/Demo/tkinter/guido/
DManPage.py118 propline = nextline
122 propline = None
147 if not propline:
154 for i in range(min(len(propline), len(textline))):
155 if propline[i] != p:
159 p = propline[i]
/external/icu/icu4c/source/test/intltest/
Dintltest.h280 virtual void setProperty(const char* propline);
Dintltest.cpp2181 void IntlTest::setProperty(const char* propline) { in setProperty() argument
2183 proplines[numProps] = propline; in setProperty()