HomeSort by relevance Sort by last modified time
    Searched full:multiline (Results 176 - 200 of 466) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/go/linux-x86/src/encoding/csv/
reader_test.go 74 Name: "MultiLine",
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
smtplib.py 207 most recent EHLO command. This is usually multiline.
345 - server response string corresponding to response code (multiline
346 responses are converted to a single, multiline string).
374 # Check if multiline response.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
smtplib.py 207 most recent EHLO command. This is usually multiline.
345 - server response string corresponding to response code (multiline
346 responses are converted to a single, multiline string).
374 # Check if multiline response.
  /prebuilts/tools/common/m2/repository/net/sourceforge/cssparser/cssparser/0.9.13/
cssparser-0.9.13.pom 85 <regexFlag>MULTILINE</regexFlag>
  /toolchain/binutils/binutils-2.25/bfd/
verilog.c 35 multiline, using syntax similar to C++. Addresses are
  /cts/tools/vm-tests-tf/src/util/build/
BuildDalvikSuite.java 672 Pattern p = Pattern.compile("@uses\\s+(.*)\\s+", Pattern.MULTILINE);
680 Pattern loadPattern = Pattern.compile("load\\(\"([^\"]*)\"", Pattern.MULTILINE);
688 Pattern loadAndRunPattern = Pattern.compile("loadAndRun\\(\"([^\"]*)\"", Pattern.MULTILINE);
  /external/chromium-trace/catapult/third_party/coverage/coverage/
parser.py 60 self.multiline = {}
145 self.multiline[l] = first_line
169 first_line = self.multiline.get(line)
phystokens.py 156 COOKIE_RE = re.compile(r"^[ \t]*#.*coding[:=][ \t]*([-\w.]+)", flags=re.MULTILINE)
  /external/chromium-trace/catapult/third_party/webapp2/docs/tutorials/gettingstarted/
usingdatastore.rst 67 content = db.StringProperty(multiline=True)
167 content = db.StringProperty(multiline=True)
175 Giving the ``db.StringProperty`` constructor the ``multiline=True`` parameter
  /external/pcre/dist/doc/html/
pcresyntax.html 350 also after internal newline in multiline mode
354 also before internal newline in multiline mode
403 (?m) multiline
  /external/regex-re2/re2/testing/
tester.cc 147 { multi_line, "multiline" },
148 { multi_line|Regexp::NonGreedy, "multiline, nongreedy" },
149 { multi_line|Regexp::Latin1, "multiline, latin1" },
  /external/v8/src/js/
regexp.js 496 throw MakeTypeError(kRegExpNonRegExp, "RegExp.prototype.multiline");
500 %FunctionSetName(RegExpGetMultiline, "RegExp.prototype.multiline");
539 utils.InstallGetter(GlobalRegExp.prototype, 'multiline', RegExpGetMultiline);
  /system/core/crash_reporter/
kernel_collector.cc 324 pcrecpp::RE line_re("(.+)", pcrecpp::MULTILINE());
435 pcrecpp::MULTILINE());
471 pcrecpp::MULTILINE());
  /external/opencv3/modules/ts/misc/
run.py 280 connected_devices = re.findall(r"^[^\n]+[ \t]+device\r?$", adb_res, re.MULTILINE)
643 hw = re.search(r"^Hardware[ \t]*:[ \t]*(.*?)$", adb_res, re.MULTILINE)
678 pkg_name = re.search(r"^[ ]+A: package=\"(?P<pkg>.*?)\" \(Raw: \"(?P=pkg)\"\)\r?$", manifest_tag[0], flags=re.MULTILINE).group("pkg")
684 pkg_runner = re.search(r"^[ ]+A: android:name\(0x[0-9a-f]{8}\)=\"(?P<runner>.*?)\" \(Raw: \"(?P=runner)\"\)\r?$", instrumentation_tag[0], flags=re.MULTILINE).group("runner")
685 pkg_target = re.search(r"^[ ]+A: android:targetPackage\(0x[0-9a-f]{8}\)=\"(?P<pkg>.*?)\" \(Raw: \"(?P=pkg)\"\)\r?$", instrumentation_tag[0], flags=re.MULTILINE).group("pkg")
    [all...]
  /libcore/ojluni/src/main/java/java/util/regex/
Pattern.java 338 * <a href="#UNIX_LINES">d</a> <a href="#MULTILINE">m</a> <a href="#DOTALL">s</a>
344 * <a href="#MULTILINE">m</a> <a href="#DOTALL">s</a> <a href="#UNICODE_CASE">u</a >
461 * of the entire input sequence. If {@link #MULTILINE} mode is activated then
463 * except at the end of input. When in {@link #MULTILINE} mode <tt>$</tt>
    [all...]
  /external/pcre/dist/
pcrecpp.h 240 // CASELESS(), UTF8(), MULTILINE(), DOTALL(), EXTENDED()
392 bool multiline() const { function in class:pcrecpp::RE_Options
472 static inline RE_Options MULTILINE() {
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
GuidedAction.java 476 * @param multilineDescription Whether this action has a multiline description.
796 * Returns whether this action is has a multiline description.
797 * @return true if the action was constructed as having a multiline description, false
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
View_UsingViewsTest.java 167 v.setSingleLine(); // otherwise the multiline state interferes with theses tests
  /external/autotest/client/site_tests/platform_MemoryMonitor/
platform_MemoryMonitor.py 190 for pid in re.findall(r'\((\d+)\)', pstree, re.MULTILINE):
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/tools/docmaker/
sources.py 204 re_url = re.compile( url, re.VERBOSE | re.MULTILINE )
  /external/opencv3/modules/core/src/opencl/runtime/generator/
common.py 16 re.DOTALL | re.MULTILINE
  /external/pcre/dist/doc/
pcregrep.1 385 performance, and the \fB-M\fP (multiline) option ceases to work.
428 \fB-M\fP, \fB--multiline\fP
435 When this option is set, the PCRE library is called in "multiline" mode.
590 \fB-M\fP, \fB--multiline\fP, \fB-N\fP, \fB--newline\fP, \fB--om-separator\fP,
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/emitter/
Emitter.java 707 || (event instanceof ScalarEvent && !analysis.empty && !analysis.multiline)
771 if (!(simpleKeyContext && (analysis.empty || analysis.multiline))
782 if (analysis.allowSingleQuoted && !(simpleKeyContext && analysis.multiline)) {
    [all...]
  /external/tcpdump/
print-wb.c 40 * For instance, multiline objects are sent piecewise.
  /frameworks/opt/setupwizard/library/main/res/values/
styles.xml 81 <style name="SuwCheckBox.Multiline" parent="SuwCheckBox">

Completed in 6041 milliseconds

1 2 3 4 5 6 78 91011>>