/cts/libs/vogar-expect/src/vogar/ |
Result.java | 27 UNSUPPORTED,
|
Outcome.java | 130 * For example, for a test skipped because it is unsupported, we don't care about the result. 133 return result != Result.UNSUPPORTED;
|
/external/vogar/src/vogar/ |
Result.java | 27 UNSUPPORTED,
|
Driver.java | 92 } else if (run.expectationStore.get(action.getName()).getResult() == Result.UNSUPPORTED) { 93 addEarlyResult(new Outcome(action.getName(), Result.UNSUPPORTED, 94 "Unsupported according to expectations file")); 214 if (earlyFailure.getResult() == Result.UNSUPPORTED) {
|
ActionFinder.java | 65 outcomes.put(actionName, new Outcome(actionName, Result.UNSUPPORTED, e));
|
Outcome.java | 130 * For example, for a test skipped because it is unsupported, we don't care about the result. 133 return result != Result.UNSUPPORTED;
|
/frameworks/base/core/java/android/net/ |
TrafficStats.java | 42 * not supported by this device, {@link #UNSUPPORTED} will be returned. 52 public final static int UNSUPPORTED = -1; 350 * return {@link #UNSUPPORTED} on devices where statistics aren't available. 367 * return {@link #UNSUPPORTED} on devices where statistics aren't available. 384 * return {@link #UNSUPPORTED} on devices where statistics aren't available. 401 * return {@link #UNSUPPORTED} on devices where statistics aren't available. 416 if (stat != UNSUPPORTED) { 428 if (stat != UNSUPPORTED) { 462 * return {@link #UNSUPPORTED} on devices where statistics aren't available. 475 * return {@link #UNSUPPORTED} on devices where statistics aren't available [all...] |
/libcore/ojluni/src/main/java/sun/nio/ch/ |
IOStatus.java | 38 static final int UNSUPPORTED = -4; // Operation not supported
|
FileChannelImpl.java | 426 return IOStatus.UNSUPPORTED; 440 return IOStatus.UNSUPPORTED; 444 return IOStatus.UNSUPPORTED; 464 if (n == IOStatus.UNSUPPORTED) { 467 return IOStatus.UNSUPPORTED; 485 return IOStatus.UNSUPPORTED; [all...] |
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
UnsupportedParser.java | 33 * Parser for Unsupported header. 46 * @param unsupported - Unsupported header to parse 48 public UnsupportedParser(String unsupported) { 49 super(unsupported); 62 * @return SIPHeader (Unsupported object) 71 headerName(TokenTypes.UNSUPPORTED); 75 Unsupported unsupported = new Unsupported(); local [all...] |
TokenTypes.java | 65 public static final int UNSUPPORTED = START + 28;
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/ |
CommandNames.java | 66 public static final String UNSUPPORTED = "UNSUPPORTED";
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/ |
StubFtpServer.java | 136 setCommandHandler(CommandNames.UNSUPPORTED, new UnsupportedCommandHandler());
|
/external/autotest/client/cros/cellular/pseudomodem/ |
pm_errors.py | 64 UNSUPPORTED = 3 82 self.UNSUPPORTED : '.Unsupported',
|
/external/libcxx/test/libcxx/test/ |
format.py | 63 if test.config.unsupported: 64 return (lit.Test.UNSUPPORTED, 65 "A lit.local.cfg marked this unsupported") 79 lit_config.fatal('Unsupported RUN line found in test %s' % name) 86 return lit.Test.UNSUPPORTED, 'ShTest format not yet supported'
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/libcxx/test/ |
format.py | 63 if test.config.unsupported: 64 return (lit.Test.UNSUPPORTED, 65 "A lit.local.cfg marked this unsupported") 79 lit_config.fatal('Unsupported RUN line found in test %s' % name) 86 return lit.Test.UNSUPPORTED, 'ShTest format not yet supported'
|
/external/llvm/utils/lit/lit/ |
TestRunner.py | 43 raise InternalShellError(cmd,"unsupported shell operator: '&'") 126 raise InternalShellError(j,"Unsupported redirect: %r" % (r,)) 135 raise InternalShellError(j,"Unsupported redirect for stdin") 142 raise InternalShellError(j,"Unsupported redirect on stdout") 479 and 'UNSUPPORTED' information. If 'require_script' is False an empty script 487 unsupported = [] 488 keywords = ['RUN:', 'XFAIL:', 'REQUIRES:', 'UNSUPPORTED:', 'END.'] 513 elif command_type == 'UNSUPPORTED': 514 unsupported.extend([s.strip() for s in ln.split(',')]) 537 return lit.Test.Result(Test.UNSUPPORTED, [all...] |
main.py | 84 lit_config.fatal('test output unsupported with Python 2.5') 178 group.add_option("", "--show-unsupported", dest="show_unsupported", 179 help="Show unsupported tests", 424 ('Unsupported Tests', lit.Test.UNSUPPORTED), 427 (lit.Test.UNSUPPORTED == code and not opts.show_unsupported): 447 ('Unsupported Tests ', lit.Test.UNSUPPORTED),
|
/toolchain/binutils/binutils-2.25/opcodes/ |
rx-decode.c | 145 #define UNSUPPORTED() \ [all...] |
/external/llvm/utils/lit/lit/formats/ |
base.py | 87 if test.config.unsupported: 88 return (lit.Test.UNSUPPORTED, 'Test is unsupported')
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/ |
FakeFtpServer.java | 213 setCommandHandler(CommandNames.UNSUPPORTED, new UnsupportedCommandHandler());
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
NameMap.java | 121 putNameMap(UNSUPPORTED, Unsupported.class.getName()); //22
|
SIPHeaderNames.java | 70 public static final String UNSUPPORTED = UnsupportedHeader.NAME; //22
|
/external/proguard/src/proguard/optimize/evaluation/ |
EvaluationShrinker.java | 57 private static final int UNSUPPORTED = -1; 73 private static final int POP_X3 = UNSUPPORTED; [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/ |
OatFile.java | 59 public static final int UNSUPPORTED = 0; 143 return UNSUPPORTED; 247 throw new IllegalStateException("Unsupported oat version"); 258 throw new IllegalStateException("Unsupported oat version");
|