/external/icu4c/layoutex/layout/ |
ParagraphLayout.h | 41 * Clients can use this to break a paragraph into lines, and to display the glyphs in each line. 50 * This class represents a single line of text in a <code>ParagraphLayout</code>. They 51 * can only be created by calling <code>ParagraphLayout::nextLine()</code>. Each line 60 class U_LAYOUTEX_API Line : public UObject 71 ~Line(); 74 * Count the number of visual runs in the line. 83 * Get the ascent of the line. This is the maximum ascent 84 * of all the fonts on the line. 86 * @return the ascent of the line. 93 * Get the descent of the line. This is the maximum descen [all...] |
/dalvik/dx/tests/021-code-attrib-LineNumberTable/ |
small-class.txt | 48 0000 0011 # offset 0000, line #17 49 0001 0022 # offset 0001, line #34
|
/development/pdk/hosting/ |
edoxfix.sh | 4 # insert the line: '</div>\n' after line 25 in each generated source file:
|
/external/dhcpcd/ |
dhcpcd-run-hooks.in | 43 local key="$1" value= x= line= 50 while read line; do 51 case "${line}" in 52 "${key}"*) echo "${line##${key}}";; 63 local m1="$1" m2="$2" x= line= in_marker=0 70 while read line; do 71 case "${line}" in 74 *) [ ${in_marker} = 0 ] && echo "${line}";;
|
/external/dropbear/libtommath/ |
dep.pl | 28 # first line will be the #ifdef 29 my $line = <SRC>; 30 if ($line =~ /include/) { 31 print OUT $line; 33 print OUT "#include <tommath.h>\n#ifdef $define\n$line"; 66 my $line = $_; 67 while ($line =~ m/(fast_)*(s_)*mp\_[a-z_0-9]*/) { 68 $line = $';
|
/external/icu4c/tools/pkgdata/ |
Makefile | 3 # the device command line tool 35 # the host command line tool
|
/external/libffi/src/ |
debug.c | 41 void ffi_assert(char *expr, char *file, int line) 43 fprintf(stderr, "ASSERTION FAILURE: %s at %s:%d\n", expr, file, line); 50 void ffi_type_test(ffi_type *a, char *file, int line) 52 FFI_ASSERT_AT(a != NULL, file, line); 54 FFI_ASSERT_AT(a->type <= FFI_TYPE_LAST, file, line); 55 FFI_ASSERT_AT(a->type == FFI_TYPE_VOID || a->size > 0, file, line); 56 FFI_ASSERT_AT(a->type == FFI_TYPE_VOID || a->alignment > 0, file, line); 57 FFI_ASSERT_AT(a->type != FFI_TYPE_STRUCT || a->elements != NULL, file, line);
|
/external/qemu/ |
offset_layout.py | 60 line = sys.stdin.readline() 61 if not line: 63 m_line = _RE_LINE.match(line) 72 if mode == "button" and "{" in line: 77 elif "}" in line: 83 m_xy = _RE_XY.match(line) 104 line = "%(start)s%(xy)s%(num)s%(end)s" % d 105 sys.stdout.write(line)
|
/external/skia/src/svg/ |
SkSVGLine.cpp | 28 DEFINE_SVG_INFO(Line) 31 parser._startElement("line");
|
/external/webkit/WebCore/manual-tests/ |
drag_select_highlighting.html | 6 <p>Drag across the following line from right to left and all the way back.</p> 10 <p>Drag across the following line from left to right and all the way back.</p>
|
/external/webkit/WebCore/manual-tests/inspector/ |
debugger-pause-on-else-statements.html | 13 Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=21944">Bug 21944: Can't set a breakpoint on the statement after a single line "else"</a>. 16 in the call stack, you should see the execution line on the call to test().
|
debugger-pause-on-for-in-statements.html | 13 Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=22004">Bug 22004: Can't set a breakpoint on the statement after a single line "for"</a>. 16 in the call stack, you should see the execution line on the call to test().
|
debugger-pause-on-for-statements.html | 11 Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=22004">Bug 22004: Can't set a breakpoint on the statement after a single line "for"</a>. 14 in the call stack, you should see the execution line on the call to test().
|
/frameworks/base/core/java/android/pim/vcard/exception/ |
VCardInvalidCommentLineException.java | 20 * Thrown when the vCard has some line starting with '#'. In the specification, 21 * both vCard 2.1 and vCard 3.0 does not allow such line, but some actual exporter emit
|
VCardInvalidLineException.java | 20 * Thrown when the vCard has some line starting with '#'. In the specification, 21 * both vCard 2.1 and vCard 3.0 does not allow such line, but some actual exporter emit
|
/frameworks/base/core/java/com/android/internal/util/ |
HexDump.java | 32 byte[] line = new byte[16]; 46 if (line[j] > ' ' && line[j] < '~') 48 result.append(new String(line, j, 1)); 66 line[lineIndex++] = b; 80 if (line[i] > ' ' && line[i] < '~') 82 result.append(new String(line, i, 1));
|
/frameworks/base/graphics/java/android/graphics/ |
CornerPathEffect.java | 23 * replacing any sharp angles between line segments into rounded angles of 25 * @param radius Amount to round sharp angles between line segments.
|
/frameworks/base/sax/java/android/sax/ |
BadXmlException.java | 23 * An XML parse exception which includes the line number in the message. 32 return "Line " + getLineNumber() + ": " + super.getMessage();
|
/hardware/ril/reference-ril/ |
misc.h | 18 /** returns 1 if line starts with prefix, 0 if it does not */ 19 int strStartsWith(const char *line, const char *prefix);
|
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
MultiLineReceiver.java | 33 /** unfinished message line, stored for next packet */ 62 // if we had an unfinished line we add it. 74 // if \r\n was not found, this is an unfinished line 82 // extract the line 83 String line = s.substring(start, index); local 85 line = line.trim(); 87 mArray.add(line);
|
/system/core/nexus/ |
Controller.cpp | 103 char line[255]; local 104 while(fgets(line, sizeof(line), fp)) { 105 char *endTag = strchr(line, ' '); 108 LOGW("Unable to find tag for line '%s'", line); 111 if (!strncmp(line, modtag, (endTag - line))) {
|
/bionic/libc/kernel/tools/ |
kernel.py | 74 def checkInclude(self, line, from_file, kernel_root=None): 76 m = HeaderScanner.re_combined.match(line) 78 m = HeaderScanner.re_rel_dir.match(line) 118 for line in f: 119 if (HeaderScanner.re_combined.match(line) or 120 (kernel_root and HeaderScanner.re_rel_dir.match(line))): 301 def parseLine(self,line): 302 line = string.strip(line) 305 if len(line) == 0 or line[0] == "#" [all...] |
/external/e2fsprogs/lib/blkid/ |
read.c | 87 static char *strip_line(char *line) 91 line = skip_over_blank(line); 93 p = line + strlen(line) - 1; 95 while (*line) { 102 return line; 131 * Start parsing a new line from the cache. 133 * line starts with "<device" return 1 -> continue parsing line [all...] |
/external/opencore/oscl/oscl/oscllib/src/ |
oscl_library_list.cpp | 109 // Advance to end of line 117 // Parse UUID from line - begins with "(" 138 // Reached the end of line but did not find the closing parentheses 139 // Skip this malformed line 141 (0, "OsclLibraryList::Populate - incomplete uuid, skipping line")); 145 // Buffer is filled but did not reach the end of UUID - skip this malformed line 147 (0, "OsclLibraryList::Populate - uuid too long, skipping line")); 148 // Advance to end of line 160 // Parse path from line 168 // If already found a comma, break and skip this malformed line [all...] |
/external/v8/src/ |
checks.h | 35 extern "C" void V8_Fatal(const char* file, int line, const char* format, ...); 58 int line, 62 V8_Fatal(file, line, "CHECK(%s) failed", source); 73 static inline void CheckEqualsHelper(const char* file, int line, 77 V8_Fatal(file, line, 85 static inline void CheckEqualsHelper(const char* file, int line, 93 V8_Fatal(file, line, 108 int line, 114 V8_Fatal(file, line, "CHECK_NE(%s, %s) failed\n# Value: %i", 123 int line, [all...] |