HomeSort by relevance Sort by last modified time
    Searched refs:report (Results 251 - 275 of 670) sorted by null

<<11121314151617181920>>

  /external/chromium_org/content/test/data/media/
webrtc_test_audio.js 90 var report = reports[i];
91 if (report.names().indexOf('audioOutputLevel') != -1) {
92 audioOutputLevels.push(report.stat('audioOutputLevel'));
  /external/chromium_org/third_party/skia/third_party/lua/src/
lua.c 135 static int report (lua_State *L, int status) { function
213 return report(L, status);
220 return report(L, status);
231 return report(L, status);
309 report(L, status);
340 return report(L, status);
  /frameworks/base/core/java/android/bluetooth/
BluetoothInputDevice.java 90 "android.bluetooth.input.profile.action.REPORT";
190 public static final String EXTRA_REPORT = "android.bluetooth.BluetoothInputDevice.extra.REPORT";
590 * @param reportType Report type
591 * @param reportId Report ID
592 * @param bufferSize Report receiving buffer size
617 * @param reportType Report type
618 * @param report Report receiving buffer size
623 public boolean setReport(BluetoothDevice device, byte reportType, String report) {
624 if (VDBG) log("setReport(" + device + "), reportType=" + reportType + " report=" + report)
    [all...]
  /packages/apps/Bluetooth/jni/
com_android_bluetooth_hid.cpp 113 ALOGE("Fail to new jbyteArray bd addr for get report callback");
119 ALOGE("Fail to new jbyteArray data for get report callback");
156 ALOGE("Fail to new jbyteArray bd addr for HID report");
440 ALOGE("Failed get report, status: %d", status);
449 static jboolean setReportNative(JNIEnv *env, jobject object, jbyteArray address, jbyte reportType, jstring report) {
462 const char *c_report = env->GetStringUTFChars(report, NULL);
466 ALOGE("Failed set report, status: %d", status);
469 env->ReleaseStringUTFChars(report, c_report);
475 static jboolean sendDataNative(JNIEnv *env, jobject object, jbyteArray address, jstring report) {
487 const char *c_report = env->GetStringUTFChars(report, NULL)
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
MessageItem.java 125 // No delivery report requested
354 String report = mCursor.getString(mColumnsMap.mColumnMmsDeliveryReport); local
355 if ((report == null) || !mAddress.equals(mContext.getString(
361 reportInt = Integer.parseInt(report);
368 Log.e(TAG, "Value for delivery report was invalid.");
373 report = mCursor.getString(mColumnsMap.mColumnMmsReadReport);
374 if ((report == null) || !mAddress.equals(mContext.getString(
380 reportInt = Integer.parseInt(report);
383 Log.e(TAG, "Value for read report was invalid.");
  /external/chromium_org/chrome/browser/ui/webui/options/
reset_profile_settings_handler.cc 125 std::string report = SerializeSettingsReport(*setting_snapshot_, local
129 SendSettingsFeedback(report, profile, is_reset_prompt_active ?
  /external/chromium_org/third_party/skia/src/gpu/gl/debug/
GrDebugGL.cpp 56 // unref & delete the texture units first so they don't show up on the leak report
62 this->report();
205 void GrDebugGL::report() const { function in class:GrDebugGL
  /external/emma/core/java12/com/vladium/emma/
EMMAProperties.java 21 import com.vladium.emma.report.IReportProperties;
22 import com.vladium.emma.report.ReportProperties;
66 * done at the same point in time (useful for setting archive and report
159 // (5) system property redirects (report.out.encoding->file.encoding,
160 // report.out.dir->user.dir, etc)
  /external/qemu/distrib/sdl-1.2.15/src/joystick/bsd/
SDL_sysjoystick.c 84 struct report { struct
91 int rid; /* Report ID */
135 struct report inreport;
148 static int report_alloc(struct report *, struct report_desc *, int);
149 static void report_free(struct report *);
260 struct report *rep;
321 SDL_SetError("%s: Input report descriptor has invalid length",
406 struct report *rep;
554 report_alloc(struct report *r, struct report_desc *rd, int repind)
579 SDL_SetError("Negative HID report size")
    [all...]
  /external/skia/src/gpu/gl/debug/
GrDebugGL.cpp 56 // unref & delete the texture units first so they don't show up on the leak report
62 this->report();
205 void GrDebugGL::report() const { function in class:GrDebugGL
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
TokenSource.pm 34 requested a token. Keep lexing until you get a valid one. Just report
  /external/chromium_org/chrome/browser/profile_resetter/
automatic_profile_resetter_delegate.cc 346 const std::string& report) const {
347 SendSettingsFeedback(report, profile_, PROFILE_RESET_PROMPT);
390 std::string report = local
392 SendFeedback(report);
resettable_settings_snapshot.h 125 // Sends |report| as a feedback. |report| is supposed to be result of
127 void SendSettingsFeedback(const std::string& report,
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
statscollector.h 83 // Prepare an SSRC report for the given ssrc. Used internally
87 // Prepare an SSRC report for the given remote ssrc. Used internally.
101 // Adds a report for this certificate and every certificate in its chain, and
102 // returns the leaf certificate's report's ID.
121 StatsReport* report);
128 // A map from the report id to the report.
  /external/chromium_org/tools/gyp/
gyptest.py 166 help="report passed tests")
253 def report(description, tests): function in function:main
263 report("Passed", passed)
264 report("Failed", failed)
265 report("No result from", no_result)
  /external/chromium_org/tools/page_cycler/common/
head.js 64 doc = "../../common/report.html";
79 // Set a variable to indicate that the result report page is loaded.
  /external/clang/lib/ARCMigrate/
TransAPIUses.cpp 78 Pass.TA.report(parm->getLocStart(),
  /external/emma/ant/ant14/com/vladium/emma/
emmaTask.java 22 import com.vladium.emma.report.reportTask;
80 return addTask (new reportTask (this), getNestedTaskName ("report"));
  /external/emma/core/java12/com/vladium/emma/report/
Item.java 9 package com.vladium.emma.report;
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
HTMLTable.java 9 package com.vladium.emma.report.html.doc;
IElement.java 9 package com.vladium.emma.report.html.doc;
  /frameworks/compile/mclinker/include/mcld/LD/
DiagnosticEngine.h 24 * \brief DiagnosticEngine is used to report problems and issues.
26 * DiagnosticEngine is used to report problems and issues. It creates the
84 // report - issue the message to the printer
85 MsgHandler report(uint16_t pID, Severity pSeverity);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
grammar.py 34 tables using a subclass). The report() method prints a readable
113 def report(self): member in class:Grammar
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
grammar.py 34 tables using a subclass). The report() method prints a readable
113 def report(self): member in class:Grammar
  /cts/suite/cts/utils/
get_csv_report.py 183 # even if report does not have test, put empty dict
208 for report in reportTests[test]:
210 if 'summary' in report:
211 summaryValues = report['summary'].values()

Completed in 1537 milliseconds

<<11121314151617181920>>