/external/bluetooth/glib/tests/ |
iochannel-test-infile | 0 Line one 2 Line two 3 Line three
|
unicode-encoding.c | 81 process (gint line, 97 fail ("line %d: valid but g_utf8_validate returned FALSE\n", line); 107 fail ("line %d: invalid but g_utf8_validate returned TRUE\n", line); 121 fail ("line %d: incomplete input not properly detected\n", line); 130 fail ("line %d: incomplete input not properly detected\n", line); 145 fail ("line %d: conversion to ucs4 failed: %s\n", line, error->message) 318 gint line = 1; local [all...] |
unicode-collate.c | 13 } Line; 19 const Line *line_a = a; 20 const Line *line_b = b; 28 const Line *line_a = a; 29 const Line *line_b = b; 38 GArray *line_array = g_array_new (FALSE, FALSE, sizeof(Line)); 95 Line line; local 103 line.key = g_utf8_collate_key_for_filename (str, -1); 105 line.key = g_utf8_collate_key (str, -1) [all...] |
/external/webkit/LayoutTests/storage/ |
transaction-callback-exception-crash-expected.txt | 1 CONSOLE MESSAGE: line 0: TransactionCallbackError
|
/sdk/layoutopt/app/ |
README | 3 Simple command line front end for the uix library
|
/packages/apps/IM/libwbxml/src/ |
csp13tags_hash.c | 2 /* Command-line: gperf -G -C -F ,0 -t -NfindTag gperf/csp13tags.gperf */ 32 #line 1 "gperf/csp13tags.gperf" 54 #line 23 "gperf/csp13tags.gperf" 148 #line 81 "gperf/csp13tags.gperf" 151 #line 83 "gperf/csp13tags.gperf" 153 #line 307 "gperf/csp13tags.gperf" 155 #line 366 "gperf/csp13tags.gperf" 158 #line 446 "gperf/csp13tags.gperf" 160 #line 82 "gperf/csp13tags.gperf" 163 #line 279 "gperf/csp13tags.gperf [all...] |
csp13values_hash.c | 2 /* Command-line: gperf -G -C -F ,0 -c -t -NfindToken gperf/csp13values.gperf */ 32 #line 1 "gperf/csp13values.gperf" 54 #line 23 "gperf/csp13values.gperf" 131 #line 66 "gperf/csp13values.gperf" 134 #line 187 "gperf/csp13values.gperf" 137 #line 60 "gperf/csp13values.gperf" 140 #line 158 "gperf/csp13values.gperf" 142 #line 76 "gperf/csp13values.gperf" 145 #line 98 "gperf/csp13values.gperf" 147 #line 64 "gperf/csp13values.gperf [all...] |
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/ |
Mixer.java | 20 public interface Mixer extends Line { 67 Line getLine(Line.Info info) throws LineUnavailableException; 69 int getMaxLines(Line.Info info); 73 Line.Info[] getSourceLineInfo(); 75 Line.Info[] getSourceLineInfo(Line.Info info); 77 Line[] getSourceLines(); 79 Line.Info[] getTargetLineInfo(); 81 Line.Info[] getTargetLineInfo(Line.Info info) [all...] |
/external/webkit/LayoutTests/platform/android-v8/storage/ |
transaction-callback-exception-crash-expected.txt | 1 CONSOLE MESSAGE: line 13: Uncaught TransactionCallbackError
|
/external/oprofile/libutil/ |
op_cpufreq.c | 21 char * line = NULL; local 28 line = op_get_line(fp); 30 if (!line) 33 if (line[0] == '\0') { 34 free(line); 39 if (sscanf(line, "cpu MHz : %lf", &fval) == 1) 42 if (sscanf(line, "clock : %lfMHz", &fval) == 1) 45 if (sscanf(line, "cycle frequency [Hz] : %lu", &uval) == 1) { 50 if (sscanf(line, "Cpu0ClkTck : %lx", &uval) == 1) { 56 free(line); [all...] |
/hardware/ti/omap3/omx/system/src/openmax_il/perf/src/ |
perf_config.c | 32 static int assign_string_if_matches(char const *line, char const *argument, 35 static int assign_long_if_matches(char const *line, char const *argument, 37 static void read_line(PERF_Config *sConfig, char const *line, char const *tag); 38 static char const *get_value_if_matches(char const *line, char const *argument); 103 * Arg2 configuration line (trimmed of trailing white 116 void read_line(PERF_Config *cfg, char const *line, char const *tag) 121 while (*line && isspace(*line)) line++; 124 if (!*line || *line == '#') return 179 char line[PERF_CONFIG_LINELENGTH]; local [all...] |
/external/elfutils/libdw/ |
dwarf_linesrc.c | 1 /* Find line information for address. 23 dwarf_linesrc (Dwarf_Line *line, Dwarf_Word *mtime, Dwarf_Word *length) 25 if (line == NULL) 28 if (line->file >= line->files->nfiles) 35 *mtime = line->files->info[line->file].mtime; 38 *length = line->files->info[line->file].length; 40 return line->files->info[line->file].name [all...] |
/dalvik/dx/tests/069-dex-source-position/ |
Blort.java | 20 if (x == 0) { // line 6 21 return 1; // line 7 24 x = test(x - 1); // line 10 25 } catch (RuntimeException ex) { // line 11 26 return 2; // line 12 28 x += test(x - 2); // line 14 29 return x; // line 15
|
/bionic/libc/tools/ |
genserv.py | 43 for line in f.xreadlines(): 44 if len(line) > 0 and line[-1] == "\n": 45 line = line[:-1] 46 if len(line) > 0 and line[-1] == "\r": 47 line = line[:-1] 49 line = string.strip(line [all...] |
/build/tools/droiddoc/src/ |
SourcePositionInfo.java | 21 this.line = 0; 25 public SourcePositionInfo(String file, int line, int column) 28 this.line = line; 35 this.line = that.line; 50 int line = that.line; local 55 line++; 59 return new SourcePositionInfo(that.file, line, 0) 67 int line = that.line-1; \/\/ -1 because, well, it seems to work local 93 public int line; field in class:SourcePositionInfo [all...] |
/frameworks/base/core/tests/coretests/src/android/pim/vcard/ |
LineVerifierElem.java | 36 public LineVerifierElem addExpected(final String line) { 37 if (!TextUtils.isEmpty(line)) { 38 mExpectedLineList.add(line); 51 final String line = lineArray[i]; local 52 if (TextUtils.isEmpty(line)) { 56 if ("BEGIN:VCARD".equalsIgnoreCase(line)) { 58 mTestCase.fail("Multiple \"BEGIN:VCARD\" line found"); 63 } else if ("END:VCARD".equalsIgnoreCase(line)) { 65 mTestCase.fail("Multiple \"END:VCARD\" line found"); 70 } else if ((mIsV30 ? "VERSION:3.0" : "VERSION:2.1").equalsIgnoreCase(line)) { [all...] |
/external/guava/src/com/google/common/io/ |
LineBuffer.java | 22 * Package-protected abstract class that implements the line reading 23 * algorithm used by {@link LineReader}. Line separators are per {@link 24 * java.io.BufferedReader}: line feed, carriage return, or carriage 34 /** Holds partial line contents. */ 35 private StringBuilder line = new StringBuilder(); field in class:LineBuffer 36 /** Whether a line ending with a CR is pending processing. */ 40 * Process additional characters from the stream. When a line separator 41 * is found the contents of the line and the line separator itself 54 // Last call to add ended with a CR; we can handle the line now [all...] |
/development/scripts/app_engine_server/ |
index.yaml | 7 # index.yaml file manually, remove the above marker line (the line 9 # manually, move them above the marker line. The index.yaml file is
|
/build/core/ |
filter_symbols.sh | 15 $NM -g -fp $1 | while read -a line 17 type=${line[1]} 20 echo "$PREFIX${line[0]}$SUFFIX # ${line[1]}"
|
/external/icu4c/tools/genprops/misc/ |
ucdmerge.c | 17 * Merges adjacent, identical per-code point data lines into one line with range syntax. 58 /* find the first semicolon in each line - there must be one */ 66 /* compare the line data portions */ 73 static char line[2000], firstLine[2000], lastLine[2000]; local 82 if(gets(line)!=NULL) { 84 c=strtol(line, &end, 16); 85 if(end!=line && *skipWhitespace(end)==';') { 91 line[0]=0; 96 if(last>=0 && (c!=(last+1) || !sameData(firstLine, line))) { 99 /* there was no range, just output the one line we found * [all...] |
/external/webkit/WebKitTools/Scripts/webkitpy/ |
diff_parser.py | 45 def git_diff_to_svn_diff(line): 46 """Converts a git formatted diff line to a svn formatted line. 49 line: A string representing a line of the diff. 58 matched = match(pattern, line) 61 return line 68 first_diff_line: The first filename line of a diff file. 69 If this line is git formatted, we'll return a 87 If deleted_line_number is zero, it means this line is newly added [all...] |
/dalvik/libcore/support/src/test/java/tests/resources/ |
hyts_htmltest.html | 10 <LI>A Line of text</LI> 11 <LI>A Line of text</LI> 12 <LI>A Line of text</LI> 13 <LI>A Line of text</LI> 14 <LI>A Line of text</LI> 15 <LI>A Line of text</LI> 16 <LI>A Line of text</LI> 17 <LI>A Line of text</LI> 18 <LI>A Line of text</LI> 19 <LI>A Line of text</LI [all...] |
/external/qemu/ |
gen-charmap.py | 69 def match_char_or_hex(line): 70 m = re_char.match(line) 72 m = re_hex.match(line) 82 def process_line(line,result): 83 m = re_start.match(line) 85 print "bad bad line: " + line 88 line = m.group(2) 89 m = match_char_or_hex(line) 91 print "character expected in: " + line [all...] |
/frameworks/base/core/tests/coretests/res/raw/ |
v21_invalid_comment_line.vcf | 6 # This line must be ignored.
9 # This line must be ignored too.
|
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/ |
uassert.h | 12 static void _uassert(int x, const char *xstr, const char *file, int line) { 14 printf("assert %s failed at %s:%d\n", xstr, file, line);
|