Searched defs:line (Results 1 - 25 of 91) sorted by relevance

1234

/frameworks/base/tools/aapt/
H A DSourcePos.h13 int line; member in class:SourcePos
H A DSourcePos.cpp14 int line; member in struct:ErrorPos
20 ErrorPos(const String8& file, int line, const String8& error, bool fatal);
32 :line(-1), fatal(false)
38 line(that.line),
46 line(l),
61 if (this->line < rhs.line) return true;
62 if (this->line == rhs.line) {
[all...]
/frameworks/rs/cpu_ref/linkloader/utils/
H A Drsl_assert.cpp29 unsigned line,
33 llvm::errs() << "rslAssert [" << file << ":" << line << "] " << expr << "\n";
37 ALOGE("rslAssert [%s:%d] %s\n", file, line, expr);
28 ASSERT_FAILED(char const *file, unsigned line, char const *expr) argument
/frameworks/wilhelm/src/
H A Dassert.c24 void __assert(const char *file, int line, const char *failedexpr) argument
26 LOG_ALWAYS_FATAL("assertion \"%s\" failed: file \"%s\", line %d", failedexpr, file, line);
30 void __assert2(const char *file, int line, const char *func, const char *failedexpr) argument
32 LOG_ALWAYS_FATAL("assertion \"%s\" failed: file \"%s\", line %d, function \"%s\"",
33 failedexpr, file, line, func);
H A Dlocks.c34 void object_lock_exclusive_(IObject *thiz, const char *file, int line) argument
54 SL_LOGE("%s:%d: recursive lock detected", file, line);
57 SL_LOGE("%s:%d: pthread_mutex_lock_timeout_np returned %d", file, line, ok);
74 " (tid %d) at %s:%d\n", file, line, *(void **)&me, gettid(), thiz,
94 " %p (tid %d) at %s:%d\n", file, line, *(void **)&me, gettid(), thiz,
98 " state by pthread %p (tid %d) at %s:%d\n", file, line, *(void **)&me, gettid(),
105 thiz->mLine = line;
122 void object_unlock_exclusive_(IObject *thiz, const char *file, int line) argument
129 thiz->mLine = line;
150 const char *file, int line)
149 object_unlock_exclusive_attributes_(IObject *thiz, unsigned attributes, const char *file, int line) argument
275 object_cond_wait_(IObject *thiz, const char *file, int line) argument
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DAndroidPrintStream.java46 protected void log(String line) { argument
47 Log.println(priority, tag, line);
/frameworks/av/libvideoeditor/osal/src/
H A DM4PSW_DebugTrace.c38 * void M4OSA_DebugTrace(M4OSA_Int32 line, char* file, M4OSA_Int32 level,
43 * @param line (IN): the line number in the source file
52 M4OSAL_TRACE_EXPORT_TYPE void M4OSA_DebugTrace(M4OSA_Int32 line, argument
70 printf("Error: %li, on %s: %s Line %lu in: %s\n",err,cond,msg,line,file);
75 M4OSAL_TRACE_EXPORT_TYPE M4OSA_Void M4OSA_DEBUG_traceFunction(M4OSA_UInt32 line, argument
82 M4OSA_DebugTrace(line, fileName, level, stringCondition, message, returnedError);
H A DM4PSW_Trace.c39 * void M4OSA_Trace(M4OSA_Int32 line, M4OSA_Char* file ,M4OSA_Int32 level,
52 M4OSAL_TRACE_EXPORT_TYPE void M4OSA_Trace(M4OSA_Int32 line, M4OSA_Char* file , argument
69 (char *)message, line, file);
74 M4OSAL_TRACE_EXPORT_TYPE M4OSA_Void M4OSA_TRACE_traceFunction(M4OSA_UInt32 line, argument
94 (char *)message, line, (char*)file);
/frameworks/av/media/libstagefright/foundation/
H A Dhexdump.cpp47 AString line; local
49 appendIndent(&line, indent);
54 line.append(tmp);
58 line.append(' ');
61 line.append(" ");
64 line.append(tmp);
68 line.append(' ');
76 line.append((char)data[offset + i]);
78 line.append('.');
83 appendTo->append(line);
[all...]
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
H A DKMLFormatter.java76 public void addLine(String line) { argument
77 mBuilder.append(line);
/frameworks/native/opengl/libs/EGL/
H A Degl_tls.h44 const char* caller, int line, EGLint error, bool quiet);
58 int line, EGLint error, T returnValue, bool quiet = false) {
59 setErrorEtcImpl(caller, line, error, quiet);
57 setErrorEtc(const char* caller, int line, EGLint error, T returnValue, bool quiet = false) argument
H A Degl_tls.cpp71 const char* caller, int line, EGLint error, bool quiet) {
77 caller, line, error, egl_strerror(error));
70 setErrorEtcImpl( const char* caller, int line, EGLint error, bool quiet) argument
H A Dtrace.cpp81 char line[lineSize]; member in class:android::StringBuilder
86 line[0] = '\0';
91 line_index += vsnprintf(line + line_index, lineSize-line_index, fmt, argp);
96 line[lineSize-1] = '\0';
97 return line;
162 ALOGD("%s", ""); // Print a blank line.
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DLineVerifierElem.java36 public LineVerifierElem addExpected(final String line) { argument
37 if (!TextUtils.isEmpty(line)) {
38 mExpectedLineList.add(line);
51 final String line = lineArray[i];
52 if (TextUtils.isEmpty(line)) {
56 if ("BEGIN:VCARD".equalsIgnoreCase(line)) {
58 TestCase.fail("Multiple \"BEGIN:VCARD\" line found");
63 } else if ("END:VCARD".equalsIgnoreCase(line)) {
65 TestCase.fail("Multiple \"END:VCARD\" line found");
72 "VERSION:4.0")).equalsIgnoreCase(line)) {
[all...]
/frameworks/base/core/tests/coretests/src/android/widget/focus/
H A DListOfEditTexts.java93 String getBody(String line) { argument
94 StringBuilder sb = new StringBuilder((line.length() + 5) * mLinesPerEditText);
96 sb.append(i + 1).append(' ').append(line);
98 sb.append('\n'); // all but last line
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DATResponseParser.java33 ATResponseParser (String line) argument
35 mLine = line;
H A DDriverCall.java56 fromCLCCLine(String line) { argument
61 ATResponseParser p = new ATResponseParser(line);
76 // like "NOT AVAILABLE" in the CLCC line
93 Rlog.e(LOG_TAG,"Invalid CLCC line: '" + line + "'");
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dgrp_data.c51 Word32 line; local
65 for (line=(sfbOffset[sfb + 1] - 1); line>=sfbOffset[sfb]; line--) {
67 if (mdctSpectrum[wnd*FRAME_LEN_SHORT+line] != 0) break;
70 if (line >= sfbOffset[sfb]) break;
172 for (line = lineOffset + sfbOffset[sfb]; line < lineOffset + sfbOffset[sfb+1]; line++) {
173 tmpSpectrum[i] = mdctSpectrum[line];
[all...]
/frameworks/base/core/tests/coretests/src/com/android/internal/os/
H A DLoggingPrintStreamTest.java184 protected void log(String line) { argument
185 lines.add(line);
/frameworks/base/packages/services/Proxy/src/com/android/proxyhandler/
H A DProxyServer.java177 private void sendLine(Socket socket, String line) throws IOException { argument
179 os.write(line.getBytes());
/frameworks/base/tools/preload/
H A DRecord.java18 * One line from the loaded-classes file.
103 /** Source file line# */
107 * Parses a line from the loaded-classes file.
109 Record(String line, int lineNum) { argument
110 char typeChar = line.charAt(0);
116 default: throw new AssertionError("Bad line: " + line);
122 line = line.replace(REPLACE_CLASSES[i], REPLACE_CLASSES[i+1]);
125 line
[all...]
H A DMemoryUsage.java52 public MemoryUsage(String line) { argument
53 String[] parsed = line.split(",");
248 String line = in.readLine();
249 if (line == null || !line.startsWith("DECAFBAD,")) {
251 + ": " + line + "; command was " + Arrays.toString(commands));
260 return new MemoryUsage(line);
/frameworks/wilhelm/tests/examples/
H A DslesTestEffectCapabilities.cpp38 void ExitOnErrorFunc( SLresult result , int line) argument
41 fprintf(stderr, "%u error code encountered at line %d, exiting\n", result, line);
H A DslesTestBassBoostPath.cpp38 void ExitOnErrorFunc( SLresult result , int line) argument
41 fprintf(stderr, "%u error code encountered at line %d, exiting\n", result, line);
/frameworks/base/libs/usb/tests/AccessoryChat/accessorychat/
H A Daccessorychat.c60 char *line = fgets(buffer, sizeof(buffer), stdin); local
61 if (!line || !sDevice)
63 ret = usb_device_bulk_transfer(sDevice, endpoint, line, strlen(line), 1000);

Completed in 1972 milliseconds

1234