HomeSort by relevance Sort by last modified time
    Searched full:line (Results 551 - 575 of 6501) sorted by null

<<21222324252627282930>>

  /development/samples/TicTacToeMain/
README.txt 10 Build is supported both via Ant (command-line tools) or via ADT (the Android
22 file TicTacToeMain/default.properties contains the special line:
29 contains the special line:
  /external/bluetooth/bluez/rfcomm/
parser.h 73 #line 50 "parser.y"
79 /* Line 1489 of yacc.c. */
80 #line 81 "parser.h"
  /external/bluetooth/glib/gio/
gdatainputstream.c 102 * as a line ending when reading complete lines from the stream.
108 P_("The accepted types of line ending"),
250 * @type: the type of new line return as #GDataStreamNewlineType.
739 * Reads a line from the data input stream.
745 * Returns: a string with the line that was read in (without the newlines).
746 * Set @length to a #gsize to get the length of the read line.
762 char *line; local
800 line = g_malloc (found_pos + newline_len + 1);
803 line,
809 line[found_pos] = 0
943 gchar *line; member in struct:__anon1170
1104 gchar *line; local
    [all...]
  /external/dbus/test/
shell-test.c 48 printf ("\n\nTesting command line '%s'\n", command_line);
53 fprintf (stderr, "Error parsing command line: %s\n", error.message ? error.message : "");
104 || test_command_line ("ls", "\"a wrong string'", NULL) /* invalid command line */ )
  /external/embunit/inc/
AssertImpl.h 42 void addFailure(const char *msg, long line, const char *file); /*TestCase.c*/
44 void assertImplementationInt(int expected,int actual, long line, const char *file);
45 void assertImplementationCStr(const char *expected,const char *actual, long line, const char *file);
  /external/ipsec-tools/src/libipsec/
policy_parse.h 83 #line 129 "policy_parse.y"
92 /* Line 1489 of yacc.c. */
93 #line 94 "policy_parse.h"
  /external/openssl/crypto/threads/
th-lock.c 91 static void irix_locking_callback(int mode,int type,char *file,int line);
92 static void solaris_locking_callback(int mode,int type,char *file,int line);
93 static void win32_locking_callback(int mode,int type,char *file,int line);
94 static void pthreads_locking_callback(int mode,int type,char *file,int line);
137 void win32_locking_callback(int mode, int type, char *file, int line)
203 void solaris_locking_callback(int mode, int type, char *file, int line)
209 (type&CRYPTO_READ)?"r":"w",file,line);
216 mode,file,line);
296 void irix_locking_callback(int mode, int type, char *file, int line)
353 int line)
    [all...]
  /external/proguard/src/proguard/classfile/attribute/
LineNumberTableAttribute.java 27 * This Attribute represents a line number table attribute.
60 * Returns the line number corresponding to the given byte code program
89 * Applies the given visitor to all line numbers.
  /external/proguard/src/proguard/gui/splash/
TextSprite.java 39 * Creates a new TextSprite containing a single line of text.
57 * first line of text.
59 * first line of text.
  /external/qemu/
a.out.h 38 * F_LNNO line numbers stripped from file
112 host_ulong s_lnnoptr; /* file ptr to line numbers */
114 unsigned short s_nlnno; /* number of line number entries*/
130 /********************** LINE NUMBERS **********************/
132 /* 1 line number entry for every "breakpointable" source line in a section.
133 * Line numbers are grouped on a per function basis; first entry in a function
140 host_ulong l_paddr; /* (physical) address of line number */
142 unsigned short l_lnno; /* line number */
180 unsigned short x_lnno; /* declaration line number *
    [all...]
  /external/qemu/android/utils/
system.c 102 char* line = *pline; local
103 char* p = line;
127 return line;
  /external/skia/src/animator/
SkXMLAnimatorWriter.cpp 72 w.startElement("line");
73 w.addAttribute("id", "line");
81 w.addAttribute("scope", "line");
  /external/srec/portable/include/
pmemory.h 172 * @param line The line at which the function is invoked. Should be the
176 PORTABLE_API void *pmalloc(size_t nbBytes, const LCHAR* tag, const LCHAR* file, int line);
193 * @param line The line at which the function is invoked. Should be the
198 PORTABLE_API void *pcalloc(size_t nbItems, size_t itemSize, const LCHAR* tag, const LCHAR* file, int line);
213 * @param line The line at which the function is invoked. Should be the
218 PORTABLE_API void *prealloc(void* ptr, size_t newSize, const LCHAR* file, int line);
231 * @param line The line at which the function is invoked. Should be th
    [all...]
  /external/srec/portable/src/
pLastError.c 23 void printGetLastErrorInternal(const LCHAR* text, char* file, int line)
48 pfprintf(PSTDERR, L("[%s:%d] %s: %s\n"), file, line, text, msg);
58 pfprintf(PSTDERR, "[%s:%d] %s, errno = %x\n", file, line, text, err);
  /external/srec/shared/include/
ESR_CommandLine.h 37 * Returns value of command-line argument.
41 * @param key Name of command-line argument to look up
46 * ESR_NO_MATCH_ERROR if the specified command-line option could not be fonud
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/LexicalConventions/
7.2-6.js 24 ECMA Section: 7.2 Line Terminators
33 \u000A line feed <LF> \n
42 var TITLE = "Line Terminators";
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/
browser.js 72 function err( msg, page, line ) {
73 writeLineToLog( "Test failed on line " + line + " with the message: " + msg );
  /external/webkit/JavaScriptCore/tests/mozilla/js1_2/
browser.js 72 function err ( msg, page, line ) {
73 writeLineToLog( "Test " + page + " failed on line " + line +" with the message: " + msg );
  /external/webkit/WebCore/manual-tests/inspector/
bp-in-named-eval-after-reload.html 14 executable line of the function <code>f1()</code>, the invocation of <code>doNothing()</code>.
16 executable line of the function <code>f2()</code>, the invocation of <code>doNothing()</code>.
38 function doNothing() { /* allows multi-line functions, easier to debug */ };
  /frameworks/base/core/java/android/text/
BoringLayout.java 27 * fits on a single line and is all left-to-right characters.
301 @Override public int getLineTop(int line) {
302 if (line == 0)
308 @Override public int getLineDescent(int line) {
312 @Override public int getLineStart(int line) {
313 if (line == 0)
319 @Override public int getParagraphDirection(int line) {
323 @Override public boolean getLineContainsTab(int line) {
327 @Override public float getLineMax(int line) {
331 @Override public final Directions getLineDirections(int line) {
    [all...]
  /frameworks/base/docs/html/guide/developing/testing/
index.jd 6 Whether you are working in Eclipse with ADT or working from the command line, these tools
26 then see the results in the Eclipse JUnit view. You can also use the SDK command-line
31 The SDK command-line tools provide the same capabilities as the ADT plugin. You can
  /system/core/nexus/
SupplicantStatus.cpp 53 char *line; local
54 while((line = strsep(&next, "\n"))) {
55 char *line_next = line;
  /external/quake/quake/src/QW/server/
pr_edict.c 276 static char line[256]; local
285 sprintf (line, "%s", PR_GetString(val->string));
288 sprintf (line, "entity %i", NUM_FOR_EDICT(PROG_TO_EDICT(val->edict)) );
292 sprintf (line, "%s()", PR_GetString(f->s_name));
296 sprintf (line, ".%s", PR_GetString(def->s_name));
299 sprintf (line, "void");
302 sprintf (line, "%5.1f", val->_float);
305 sprintf (line, "'%5.1f %5.1f %5.1f'", val->vector[0], val->vector[1], val->vector[2]);
308 sprintf (line, "pointer");
311 sprintf (line, "bad type %i", type)
328 static char line[256]; local
381 static char line[128]; local
405 static char line[128]; local
    [all...]
  /external/quake/quake/src/WinQuake/
pr_edict.cpp 282 static char line[256]; local
291 sprintf (line, "%s", pr_strings + val->string);
294 sprintf (line, "entity %i", NUM_FOR_EDICT(PROG_TO_EDICT(val->edict)) );
298 sprintf (line, "%s()", pr_strings + f->s_name);
302 sprintf (line, ".%s", pr_strings + def->s_name);
305 sprintf (line, "void");
308 sprintf (line, "%5.1f", val->_float);
311 sprintf (line, "'%5.1f %5.1f %5.1f'", val->vector[0], val->vector[1], val->vector[2]);
314 sprintf (line, "pointer");
317 sprintf (line, "bad type %i", type)
334 static char line[256]; local
387 static char line[128]; local
411 static char line[128]; local
    [all...]
  /sdk/traceview/src/com/android/traceview/
DmTraceReader.java 330 String line = null; local
332 line = in.readLine();
333 if (line == null) {
338 // extra byte is for the line ending not included by readLine().
339 offset += line.length() + 1;
340 if (line.startsWith("*")) {
341 if (line.equals("*version")) {
345 if (line.equals("*threads")) {
349 if (line.equals("*methods")) {
353 if (line.equals("*end"))
    [all...]

Completed in 434 milliseconds

<<21222324252627282930>>