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

1 2

  /gdk/build/awk/
convert-deps-to-cygwin.awk 41 LINE=""
45 LINE = LINE SEP CYGDRIVE_PREFIX tolower(substr($nn,1,1)) "/" substr($nn,4)
47 LINE = LINE SEP $nn
51 # Any leading space on the original line should be preserved
56 printf("%s%s\n", MARGIN, LINE)
  /external/e2fsprogs/install-utils/
convfstab 12 while read LINE
14 set -- $LINE
19 echo "$LINE"
27 echo "Don't have a clue about \"$LINE\"." >&2
28 echo "$LINE"
51 echo "$LINE $DEF_FLAGS $DUMP $PASS"
54 echo "$LINE $DUMP $PASS"
57 echo "$LINE $PASS"
60 echo "$LINE"
67 echo "Warning: One empty line removed." >&
    [all...]
  /development/tools/findunused/
removeunusedresources 26 read LINE NUM
27 while [ "$LINE" != "" ]
29 if [ "Z$LINE" = "Z-----------------------------------------------------------" ]
33 elif [ "$LINE" = "$app" ]
39 find res | grep -w $LINE | {
48 echo WARNING unexpected result for $LINE
53 grep -Rwl $LINE res | {
60 echo REMOVING STRING $LINE from $RESLINE
61 xmlstarlet ed -P -S -d "/resources/string[@name='$LINE']" $RESLINE > tf$$
65 echo REMOVING $LINE from $RESLIN
    [all...]
  /external/libmtp/
hotplug.sh.in 16 while read LINE; do
17 if [ "x${LINE}" != "x" ]; then
18 firstword=`echo ${LINE} | awk '{ print $1 }'`
20 # This is a device line entry
22 manid=`echo ${LINE} | awk '{ print $3 }'`
23 productid=`echo ${LINE} | awk '{ print $4 }'`
45 while read LINE; do
46 if [ "x$LINE" != "x" ]; then
47 firstword=`echo ${LINE} | awk '{ print $1 }'`
49 # This is a comment line, save it
    [all...]
  /external/grub/stage2/
vstafs.h 25 #define LINE 16
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
uda1341.h 72 LINE,
  /external/doclava/src/com/google/doclava/
DocFile.java 27 private static final Pattern LINE = Pattern.compile("(.*)[\r]?\n", Pattern.MULTILINE);
64 // The document is properties up until the line "@jd:body".
68 Matcher lines = LINE.matcher(filedata);
69 String line = null; local
71 line = lines.group(1);
72 if (line.length() > 0) {
73 if (line.equals("@jd:body")) {
77 Matcher prop = PROP.matcher(line);
90 if (line != null) {
91 System.err.println(docfile + ":" + lineno + ":" + line);
    [all...]
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
MathDetector.java 129 if (type == AbstractInsnNode.LINE || type == AbstractInsnNode.LABEL) {
142 if (type == AbstractInsnNode.LINE || type == AbstractInsnNode.LABEL) {
FieldGetterDetector.java 99 if (type == AbstractInsnNode.LINE) {
100 currentLine = ((LineNumberNode) instruction).line;
145 int line = entry.lineNumber; local
148 // ASM line numbers are 1-based, Lint needs 0-based
149 location = Location.create(source, contents, line - 1, name,
215 // Skip label and line number nodes
  /frameworks/base/tests/RenderScriptTests/tests/src/com/android/rs/test/
UT_mesh.java 46 mBuilder.addIndexSetType(Primitive.LINE);
  /external/openfst/src/include/fst/extensions/far/
compile-strings.h 34 // line-by-line basis or on a per-stream basis. Note that the freshly
49 enum EntryType { LINE = 1, FILE = 2 };
69 VLOG(1) << "Processing source " << source_ << " at line " << nline_;
74 if (entry_type_ == LINE) {
79 string line; local
80 while (getline(strm_, line)) {
82 content_.append(line);
124 // Compute the minimal length required to encode each line number as a decimal
144 entry_type = StringReader<Arc>::LINE;
    [all...]
  /external/v8/test/mjsunit/third_party/
string-trim.js 49 {s : '\u000A', t : 'LINE FEED OR NEW LINE'},
67 {s : '\u2028', t : 'LINE SEPARATOR'},
  /external/mesa3d/src/glsl/
glsl_parser.h 149 LINE = 366,
240 /* Line 1685 of yacc.c */
241 #line 52 "glsl_parser.ypp"
273 /* Line 1685 of yacc.c */
274 #line 275 "glsl_parser.h"
  /external/chromium/chrome/browser/resources/
crashes.js 61 '****DO%20NOT%20CHANGE%20BELOW%20THIS%20LINE****%0Areport_id:' +
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/detector/api/
ClassContext.java 214 * Returns a location for the given source line number in this class file's
217 * @param line the line number (1-based, which is what ASM uses)
225 public Location getLocationForLine(int line, String patternStart, String patternEnd) {
228 // ASM line numbers are 1-based, and lint line numbers are 0-based
229 if (line != -1) {
230 return Location.create(sourceFile, getSourceContents(), line - 1,
342 * Finds the line number closest to the given node
344 * @param node the instruction node to get a line number fo
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/txt/
ReportGenerator.java 79 line (); method
142 line (); method
204 line (); method
251 line (); method
302 line (); method
445 private void line () method in class:ReportGenerator
449 m_out.write (LINE);
523 private static final String LINE = "-------------------------------------------------------------------------------";
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
MeshTest.java 192 assertEquals(Mesh.Primitive.LINE, Mesh.Primitive.valueOf("LINE"));
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/
build-hardy-toolchain.sh 1071 sha1sum $DOWNLOAD_DIR/*.deb | while read LINE; do
1072 PACKAGE=$(basename $(echo $LINE | awk '{ print $2;}'))
1073 SHA1=$(echo $LINE | awk '{ print $1; }')
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
GradientDrawable.java 89 * Shape is a line
91 public static final int LINE = 2;
292 * @param shape The desired shape for this drawable: {@link #LINE},
446 final boolean useLayer = haveStroke && haveFill && st.mShape != LINE &&
527 case LINE: {
    [all...]
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis5/
Visualization5RS.java 78 // 256 lines, with 4 points per line (2 space, 2 texture) each consisting of x and y,
79 // so 8 floats per line.
83 // 2 indices per line
266 // This will be a line mesh
267 meshBuilder.addIndexSetAllocation(mLineIdxAlloc, Mesh.Primitive.LINE);
  /external/mksh/src/
edit.c 67 static char holdbuf[LINE]; /* place to hold last edit buffer */
121 * read an edited command line
160 /* redraw line in Emacs mode */
182 * Handle the commenting/uncommenting of a line.
188 * moved to the start of the line after (un)commenting.
877 static int cur_col; /* current column on line */
1134 int off = source->line - x_nextcmd;
1383 * if we are already filling the line,
    [all...]
lex.c 1156 /* beginning of line */
1194 /* nope, mismatch; read until end of line */
1215 /* jump back to saved beginning of line */
1375 XcheckN(s->xs, xp, LINE);
1392 nread = x_read(xp, LINE);
1402 s->line++;
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/
build-hardy-toolchain.sh 1285 sha1sum $DOWNLOAD_DIR/*.deb | while read LINE; do
1286 PACKAGE=$(basename $(echo $LINE | awk '{ print $2;}')
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/
build-hardy-toolchain.sh 1285 sha1sum $DOWNLOAD_DIR/*.deb | while read LINE; do
1286 PACKAGE=$(basename $(echo $LINE | awk '{ print $2;}')
    [all...]
  /prebuilts/tools/common/asm-tools/
asm-tree-4.0.jar 

Completed in 949 milliseconds

1 2