Home
last modified time | relevance | path

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

/external/icu4c/tools/
Dicu-svnprops-check.py99 for propline in aprops:
100 if re.match("\s*(#.*)?$", propline): # Match comment and blank lines
102 if re.match("\s*\[auto-props\]", propline): # Match the [auto-props] line.
104 if not re.match("\s*[^\s]+\s*=", propline): # minimal syntax check for <file-type> =
105 print "Bad line from autoprops definitions: " + propline
107 file_type, string_proplist = propline.split("=", 1)
/external/icu4c/test/intltest/
Dintltest.h229 virtual void setProperty(const char* propline);
Dintltest.cpp1822 void IntlTest::setProperty(const char* propline) { in setProperty() argument
1824 proplines[numProps] = propline; in setProperty()