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

1 2

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
CodingErrorActionTest.java 48 assertNotNull(CodingErrorAction.REPORT);
50 assertNotSame(CodingErrorAction.IGNORE, CodingErrorAction.REPORT);
51 assertNotSame(CodingErrorAction.REPLACE, CodingErrorAction.REPORT);
60 assertTrue(CodingErrorAction.REPORT.toString().indexOf("REPORT") != -1);
ISOCharsetEncoderTest.java 84 encoder.onMalformedInput(CodingErrorAction.REPORT);
85 encoder.onUnmappableCharacter(CodingErrorAction.REPORT);
CharsetDecoder2Test.java 92 decoder2.onMalformedInput(CodingErrorAction.REPORT);
93 decoder2.onUnmappableCharacter(CodingErrorAction.REPORT);
251 decoder.onMalformedInput(CodingErrorAction.REPORT);
252 decoder.onUnmappableCharacter(CodingErrorAction.REPORT);
CharsetEncoderTest.java 90 assertEquals(CodingErrorAction.REPORT, encoder.malformedInputAction());
91 assertEquals(CodingErrorAction.REPORT, encoder.unmappableCharacterAction());
111 assertEquals(CodingErrorAction.REPORT, encoder.malformedInputAction());
112 assertEquals(CodingErrorAction.REPORT, encoder
631 encoder.onMalformedInput(CodingErrorAction.REPORT);
632 encoder.onUnmappableCharacter(CodingErrorAction.REPORT);
656 encoder.onMalformedInput(CodingErrorAction.REPORT);
657 encoder.onUnmappableCharacter(CodingErrorAction.REPORT);
834 encoder.onMalformedInput(CodingErrorAction.REPORT);
835 encoder.onUnmappableCharacter(CodingErrorAction.REPORT);
    [all...]
CharsetDecoderTest.java 82 assertSame(CodingErrorAction.REPORT, decoder.malformedInputAction());
83 assertSame(CodingErrorAction.REPORT, decoder
148 assertSame(CodingErrorAction.REPORT, decoder.malformedInputAction());
162 assertSame(CodingErrorAction.REPORT, decoder
241 decoder.onMalformedInput(CodingErrorAction.REPORT);
242 decoder.onUnmappableCharacter(CodingErrorAction.REPORT);
266 decoder.onMalformedInput(CodingErrorAction.REPORT);
267 decoder.onUnmappableCharacter(CodingErrorAction.REPORT);
411 decoder.onMalformedInput(CodingErrorAction.REPORT);
413 decoder.onUnmappableCharacter(CodingErrorAction.REPORT);
    [all...]
ASCIICharsetEncoderTest.java 77 encoder.onMalformedInput(CodingErrorAction.REPORT);
78 encoder.onUnmappableCharacter(CodingErrorAction.REPORT);
  /libcore/luni/src/main/java/java/nio/charset/
CodingErrorAction.java 22 * and {@code REPORT}.
40 * Denotes the action to report the encountered error in an appropriate
44 public static final CodingErrorAction REPORT = new CodingErrorAction(
45 "REPORT");
CharsetEncoder.java 57 * {@link CodingErrorAction#REPORT report} the error to the caller. The alternatives are to
93 private CodingErrorAction malformedInputAction = CodingErrorAction.REPORT;
94 private CodingErrorAction unmappableCharacterAction = CodingErrorAction.REPORT;
199 onMalformedInput(CodingErrorAction.REPORT);
200 onUnmappableCharacter(CodingErrorAction.REPORT);
239 * {@link CodingErrorAction#REPORT CodingErrorAction.REPORT}
244 * {@link CodingErrorAction#REPORT CodingErrorAction.REPORT}
    [all...]
CharsetDecoder.java 60 * Both errors can be handled in three ways, the default one is to report the
99 private CodingErrorAction malformedInputAction = CodingErrorAction.REPORT;
100 private CodingErrorAction unmappableCharacterAction = CodingErrorAction.REPORT;
167 * {@link CodingErrorAction#REPORT CodingErrorAction.REPORT}
172 * {@link CodingErrorAction#REPORT CodingErrorAction.REPORT}.
210 if (result.isMalformed() && malformedInputAction == CodingErrorAction.REPORT) {
212 } else if (result.isUnmappable() && unmappableCharacterAction == CodingErrorAction.REPORT) {
258 * {@link CodingErrorAction#REPORT CodingErrorAction.REPORT}. </li
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/charset/
OldCharset_MultiByte_EUC_JP.java 35 encoder.onUnmappableCharacter(CodingErrorAction.REPORT);
36 decoder.onMalformedInput(CodingErrorAction.REPORT);
OldCharset_AbstractTest.java 111 encoder.onUnmappableCharacter(CodingErrorAction.REPORT);
125 decoder.onMalformedInput(CodingErrorAction.REPORT);
138 encoder.onUnmappableCharacter(CodingErrorAction.REPORT);
148 encoder.onUnmappableCharacter(CodingErrorAction.REPORT);
149 decoder.onMalformedInput(CodingErrorAction.REPORT);
177 encoder.onUnmappableCharacter(CodingErrorAction.REPORT);
178 decoder.onMalformedInput(CodingErrorAction.REPORT);
CharsetEncoderTest.java 94 testCharsetEncoderSplitSurrogates(CodingErrorAction.REPORT);
109 // IGNORE just ignores both characters, REPORT complains that the second is
  /external/chromium_org/tools/usb_gadget/
hid_constants.py 18 REPORT = usb_constants.Type.CLASS | 0x02
42 REPORT = 3
63 """Report types.
74 """Keyboard modifier key report values.
90 """Keyboard LED report values.
103 """Mouse button report values.
usb_descriptors_test.py 199 hid_desc.AddDescriptor(hid_constants.DescriptorType.REPORT, 0x80)
206 hid_desc.AddDescriptor(hid_constants.DescriptorType.REPORT, 0x80)
hid_gadget.py 9 own Report ID and will be called upon to answer get/set input/output/feature
10 report requests as necessary.
33 report_desc: HID report descriptor.
34 features: Map between Report IDs and HidFeature objects to handle them.
77 hid_desc.AddDescriptor(hid_constants.DescriptorType.REPORT,
137 if typ == hid_constants.DescriptorType.REPORT:
200 print('SetIdle(duration={}, report={})'
211 report_type: Requested report type.
212 report_id: Requested report ID.
237 report_type: Report type
    [all...]
  /external/smack/src/com/kenai/jbosh/
Attributes.java 50 static final BodyQName REPORT = BodyQName.createBOSH("report");
BOSHClient.java 1385 Long report = Long.parseLong(reportStr); local
    [all...]
  /libcore/luni/src/main/java/libcore/icu/
NativeConverter.java 44 if (action == CodingErrorAction.REPORT) {
  /external/chromium_org/tools/valgrind/
waterfall.sh 107 for REPORT in $REPORT_URLS
109 download "$SLAVE_URL/builds/$REPORT/text" "$TMPFILE"
  /external/chromium_org/storage/browser/fileapi/
sandbox_file_system_backend_delegate.cc 625 #define REPORT(report_value) \
637 REPORT(kOK);
640 REPORT(kInvalidSchemeError);
643 REPORT(kNotFound);
647 REPORT(kUnknownError);
650 #undef REPORT
  /external/tcpdump/
print-snmp.c 145 "Report"
146 #define REPORT 8
153 #define INTERNAL_CLASS(x) (x == REPORT)
1293 * GetBulk, Inform, V2Trap, and Report
1324 || pduid == INFORMREQ || pduid == V2TRAP || pduid == REPORT)
1348 || pduid == INFORMREQ || pduid == V2TRAP || pduid == REPORT)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
InputStreamReaderTest.java 382 decoder.onMalformedInput(CodingErrorAction.REPORT);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 
  /prebuilts/tools/common/ant/
ant.jar 
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 

Completed in 2061 milliseconds

1 2