/external/llvm/test/TableGen/ |
CStyleComment.td | 1 // Test that multiline, nested, comments work correctly.
|
/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;
|
SmartPrinter.java | 12 * Makes sure both wanted and actual are printed consistently (single line or 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.
|
/external/markdown/MarkdownTest/Tests_2004/ |
Inline HTML (Simple).text | 31 Multiline:
|
Inline HTML (Simple).html | 33 <p>Multiline:</p>
|
Inline HTML (Simple).text-out | 31 <p>Multiline:</p>
|
Inline HTML (Simple).text-res | 31 <p>Multiline:</p>
|
/external/markdown/MarkdownTest/Tests_2007/ |
Inline HTML (Simple).text | 31 Multiline:
|
Inline HTML (Simple).html | 33 <p>Multiline:</p>
|
/external/markdown/tests/markdown-test/ |
inline-html-simple.txt | 31 Multiline:
|
inline-html-simple.html | 26 <p>Multiline:</p>
|
/external/markdown/tests/safe_mode/ |
inline-html-simple.txt | 31 Multiline:
|
/cts/hostsidetests/monkey/src/com/android/cts/monkey/ |
PackageTest.java | 25 Pattern.MULTILINE); 29 Pattern.MULTILINE);
|
/external/toybox/tests/ |
expand.test | 29 testing "expand multiline single" "expand -t 4 input" "foo \n bar\n" "foo\t\n\tbar\n" "" 30 testing "expand multiline tablist" "expand -t 4,8 input" \
|
/external/v8/src/ |
regexp.js | 24 + (pattern.multiline ? 'm' : ''); 35 var multiline = false; 53 if (multiline) { 56 multiline = true; 69 %RegExpInitializeObject(object, pattern, global, ignoreCase, multiline, sticky); 261 (regexp.ignoreCase ? regexp.multiline ? "im" : "i" 262 : regexp.multiline ? "m" : "")); 276 if (this.multiline) result += 'm'; 425 // The properties multiline and $* are aliases for each other. When this 428 // the value of the expression 'RegExp.multiline = null' (for instance) is th [all...] |
/external/chromium-trace/trace-viewer/tracing/build/ |
css_presubmit_checker.py | 98 re.MULTILINE) 130 for z in re.finditer(re.compile(zeros, re.MULTILINE), contents): 141 'multiline': True, 187 'multiline': True, 198 'multiline': True, 216 # If the check is multiline, it receieves the whole file and gives us 217 # back a list of things wrong. If the check isn't multiline, we pass it 219 if ('multiline' in check and check['multiline']): 222 # There are currently no multiline checks with ['after'] [all...] |
/external/v8/test/mjsunit/regress/ |
regress-219.js | 39 function assertFlags(re, global, multiline, ignoreCase) { 42 (multiline ? assertTrue : assertFalse)(re.multiline, name + "m");
|
/frameworks/rs/api/ |
Generator.cpp | 53 * {Multiline description. Can include HTML. References to constants, types, 56 * { Multiline code lines to be included as-is in the generated header file.}] 69 * {Multiline description. Can include HTML. References to constants, types, 83 * {Multiline description. Can include HTML. References to constants, types, 97 * {Multiline description. Can include HTML. References to constants, types, 110 * {Multiline description. Can include HTML. References to constants, types, 131 * {Multiline description. Can include HTML. References to constants, types, 134 * {Multiline code that implements this function inline.}]
|
/external/v8/test/webkit/ |
multiline-comment-newline.js | 25 "This test checks that a multiline comment containing a newline is converted to a line terminator token."
|
/development/samples/Wiktionary/src/com/example/android/wiktionary/ |
ExtendedWikiHelper.java | 60 Pattern.compile("^=+(.+?)=+.+?(?=^=)", Pattern.MULTILINE | Pattern.DOTALL); 164 Pattern.MULTILINE)); 168 Pattern.MULTILINE)); 170 Pattern.MULTILINE)); 172 Pattern.MULTILINE)); 186 "\\[http.+?\\]|\\[\\[Category:.+?\\]\\])", "", Pattern.MULTILINE | Pattern.DOTALL)); 188 Pattern.MULTILINE));
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/readwrite/ |
multiline_adjlist.py | 21 # example.multiline-adjlist 47 """Generate a single line of the graph G in multiline adjacency list format. 59 Lines of data in multiline adjlist format. 141 """ Write the graph G in multiline adjacency list format to path 184 for multiline in generate_multiline_adjlist(G, delimiter): 185 multiline+='\n' 186 path.write(multiline.encode(encoding)) 191 """Parse lines of a multiline adjacency list representation of a graph. 196 Input data in multiline adjlist format 217 The graph corresponding to the lines in multiline adjacency list format [all...] |
/external/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");
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
ActionableToastBar.java | 157 setVisibility(false /* multiLine */, showAction); 162 // if specific views exist to handle the multiline case 167 setVisibility(true /* multiLine */, showAction); 325 * @param multiLine <tt>true</tt> if the View requires multiple lines to display the toast 328 private void setVisibility(boolean multiLine, boolean showAction) { 329 mSingleLineDescriptionView.setVisibility(!multiLine ? View.VISIBLE : View.GONE); 330 mSingleLineActionView.setVisibility(!multiLine && showAction ? View.VISIBLE : View.GONE); 332 mMultiLineDescriptionView.setVisibility(multiLine ? View.VISIBLE : View.GONE); 335 mMultiLineActionView.setVisibility(multiLine && showAction ? View.VISIBLE : View.GONE);
|
/external/clang/include/clang/Rewrite/Core/ |
HTMLRewrite.h | 32 /// multiline. 39 /// if the range is multiline.
|