HomeSort by relevance Sort by last modified time
    Searched refs:multiline (Results 1 - 25 of 66) sorted by null

1 2 3

  /external/chromium_org/ash/system/user/
login_status.h 26 bool multiline);
login_status.cc 18 bool multiline) {
43 // handled. Depending on the value of |multiline|, actual line breaks or
45 base::string16 newline = multiline ? ASCIIToUTF16("\n") : ASCIIToUTF16(" ");
  /external/mockito/src/org/mockito/internal/reporting/
PrintSettings.java 21 private boolean multiline; field in class:PrintSettings
24 public void setMultiline(boolean multiline) {
25 this.multiline = multiline;
29 return multiline;
  /external/smack/src/org/xbill/DNS/
Tokenizer.java 57 private int multiline; field in class:Tokenizer
151 multiline = 0;
209 if (!(c == '\n' && multiline > 0)) {
220 if (multiline > 0)
271 multiline++;
275 if (multiline <= 0)
279 multiline--;
310 } else if (multiline > 0) {
  /external/chromium_org/v8/test/mjsunit/
newline-in-string.js 28 // Test multiline string literal.
38 // Allow CR+LF in multiline string literals.
42 // Allow LF+CR in multiline string literals.
regexp-static.js 147 RegExp.multiline = "foo";
148 assertTrue(typeof RegExp.multiline == typeof Boolean(), "RegExp.multiline coerces values to booleans");
regexp.js 245 // multiline flag.
256 // Test that empty matches are handled correctly for multiline global
436 assertFalse(re.multiline);
443 assertTrue(re.multiline);
456 assertFalse(re.multiline);
474 assertTrue(re.multiline);
614 desc = Object.getOwnPropertyDescriptor(re, "multiline");
  /external/v8/test/mjsunit/
newline-in-string.js 28 // Test multiline string literal.
38 // Allow CR+LF in multiline string literals.
42 // Allow LF+CR in multiline string literals.
regexp-static.js 147 RegExp.multiline = "foo";
148 assertTrue(typeof RegExp.multiline == typeof Boolean(), "RegExp.multiline coerces values to booleans");
regexp.js 245 // multiline flag.
256 // Test that empty matches are handled correctly for multiline global
436 assertFalse(re.multiline);
443 assertTrue(re.multiline);
456 assertFalse(re.multiline);
474 assertTrue(re.multiline);
614 desc = Object.getOwnPropertyDescriptor(re, "multiline");
  /external/chromium_org/v8/src/
regexp.js 47 + (pattern.multiline ? 'm' : '');
56 var multiline = false;
73 if (multiline) {
76 multiline = true;
83 %RegExpInitializeObject(object, pattern, global, ignoreCase, multiline);
270 (regexp.ignoreCase ? regexp.multiline ? "im" : "i"
271 : regexp.multiline ? "m" : ""));
285 if (this.multiline) result += 'm';
435 // The properties multiline and $* are aliases for each other. When this
438 // the value of the expression 'RegExp.multiline = null' (for instance) is th
    [all...]
  /external/v8/src/
regexp.js 43 + (pattern.multiline ? 'm' : '');
52 var multiline = false;
69 if (multiline) {
72 multiline = true;
79 %RegExpInitializeObject(object, pattern, global, ignoreCase, multiline);
273 (regexp.ignoreCase ? regexp.multiline ? "im" : "i"
274 : regexp.multiline ? "m" : ""));
288 if (this.multiline) result += 'm';
435 // The properties multiline and $* are aliases for each other. When this
438 // the value of the expression 'RegExp.multiline = null' (for instance) is th
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/kde/
RegExp.js 47 shouldBeFalse("(/a/).multiline");
48 shouldBeTrue("rm.multiline");
58 rm.multiline = false;
59 shouldBeTrue("rm.multiline");
146 shouldBeTrue("reg.multiline === false");
  /external/chromium_org/v8/test/mjsunit/regress/
regress-219.js 39 function assertFlags(re, global, multiline, ignoreCase) {
42 (multiline ? assertTrue : assertFalse)(re.multiline, name + "m");
regress-1217.js 35 assertEquals(false, proto.multiline);
  /external/v8/test/mjsunit/regress/
regress-219.js 39 function assertFlags(re, global, multiline, ignoreCase) {
42 (multiline ? assertTrue : assertFalse)(re.multiline, name + "m");
regress-1217.js 35 assertEquals(false, proto.multiline);
  /libcore/luni/src/main/java/libcore/net/url/
FtpURLConnection.java 355 boolean multiline = false;
357 multiline = true;
360 if (multiline) {
361 while (readMultiLine()) {/* Read all of a multiline reply */
  /external/chromium_org/v8/test/webkit/fast/js/
Object-getOwnPropertyNames.js 55 "new RegExp('foo')": "['global', 'ignoreCase', 'lastIndex', 'multiline', 'source']",
56 "(function(){var x=new RegExp();x.__proto__=[1,2,3];return x;})()": "['global', 'ignoreCase', 'lastIndex', 'multiline', 'source']",
88 "RegExp": "['$&', \"$'\", '$*', '$+', '$1', '$2', '$3', '$4', '$5', '$6', '$7', '$8', '$9', '$_', '$`', 'input', 'lastMatch', 'lastParen', 'leftContext', 'length', 'multiline', 'name', 'prototype', 'rightContext']",
89 "RegExp.prototype": "['compile', 'constructor', 'exec', 'global', 'ignoreCase', 'lastIndex', 'multiline', 'source', 'test', 'toString']",
regexp-bol-with-multiline.js 25 'Test for beginning of line (BOL or ^) matching in a multiline string</a>'
  /external/chromium_org/ui/gfx/
render_text.h 219 // TODO(ckocagil): Multiline text rendering is currently only supported on
221 bool multiline() const { return multiline_; } function in class:gfx::RenderText
222 void SetMultiline(bool multiline);
323 // wrapped size in multiline mode). Note that this returns the raw size of the
335 // Returns the width of the content (which is the wrapped width in multiline
507 // display area, display offset, application LTR/RTL mode and multiline.
render_text.cc 428 void RenderText::SetMultiline(bool multiline) {
429 if (multiline != multiline_) {
430 multiline_ = multiline;
741 // TODO(ckocagil): Support multiline. This function should return the height
743 // the multiline size, eliminate its use here.
926 // TODO(ckocagil): Apply the display offset for multiline scrolling.
927 if (!multiline())
937 // TODO(ckocagil): Convert multiline view space points to text space.
941 if (!multiline())
    [all...]
render_text_win.cc 309 // Internal class to generate Line structures. If |multiline| is true, the text
311 // than |max_width|. If |multiline| is false, only outputs a single Line from
321 bool multiline,
328 multiline_(multiline),
417 // TODO(ckocagil): Determine optimal multiline height behavior.
485 // Size of the multiline text, not including the currently processed line.
772 font_list().GetHeight(), multiline(),
774 multiline() ? &GetLineBreaks() : NULL,
827 if (!multiline()) {
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
parser.py 55 self.multiline = {}
142 self.multiline[l] = rng
166 rng = self.multiline.get(line)
214 normalized to the first line of multiline statements.
  /external/chromium_org/chrome/browser/resources/web_dev_style/
css_checker.py 217 re.MULTILINE | re.VERBOSE)
233 re.MULTILINE | re.VERBOSE)
260 re.MULTILINE | re.VERBOSE)
274 'multiline': True,
309 'multiline': True,
313 'multiline': True,
322 'multiline': True,
340 # If the check is multiline, it receieves the whole file and gives us
341 # back a list of things wrong. If the check isn't multiline, we pass it
343 if ('multiline' in check and check['multiline'])
    [all...]

Completed in 991 milliseconds

1 2 3