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

1 2 3 4 5 6 7 8 910

  /external/caliper/caliper/src/main/java/com/google/caliper/memory/
ObjectVisitor.java 40 * should be further explored, or {@link Traversal#SKIP} to avoid
64 SKIP
ObjectGraphMeasurer.java 201 return Traversal.SKIP;
213 return Traversal.SKIP;
  /external/ltp/testcases/kernel/syscalls/fcntl/
fcntl14.c 52 #define SKIP 0x0c00
53 #if SKIP == F_RDLCK || SKIP== F_WRLCK
54 #error invalid value for SKIP, must be distinct from F_RDLCK and F_WRLCK
73 short b_type; /* SKIP means suppress fcntl call */
87 {F_WRLCK, 0, 0L, 0L, SKIP, 0, 0L, 0L,
92 {F_WRLCK, 0, 0L, 0L, SKIP, 0, 0L, 0L,
97 {F_RDLCK, 0, 0L, 0L, SKIP, 0, 0L, 0L,
102 {F_RDLCK, 0, 0L, 0L, SKIP, 0, 0L, 0L,
108 {F_WRLCK, 0, 0L, 0L, SKIP, 0, 0L, 0L
    [all...]
fcntl16.c 55 //#define SKIP SKIPVAL, 0, 0L, 0L, IGNORED
56 #define SKIP 0,0,0L,0L,0
58 #error invalid SKIP, must not be F_RDLCK or F_WRLCK
80 {SKIP},
90 {SKIP},},
95 {SKIP},
106 {SKIP},},
111 {SKIP},
122 {SKIP},},
127 {SKIP},
    [all...]
  /external/ppp/pppd/plugins/radius/
clientid.c 48 #define SKIP(p) while(*p && isspace(*p)) p++;
56 SKIP(q);
64 SKIP(c);
87 #undef SKIP
  /external/toybox/scripts/
runtest.sh 11 # SKIP - do not perform this test (this is set by "optionflag")
25 # The "optional" function is used to skip certain tests, ala:
29 # which is either empty (in which case it always clears SKIP) or
31 # clears SKIP if the flag was found, or sets it to 1 if the flag was not found).
34 export SKIP=
38 # Check config to see if option is enabled, set SKIP if not.
42 SHOWSKIP=SKIP
57 SKIP=""
60 SKIP=1
78 if [ -n "$SKIP" ] || ( [ -n "$SKIP_HOST" ] && [ -n "$TEST_HOST" ]
    [all...]
  /external/testng/src/main/java/org/testng/
ITestResult.java 19 public static final int SKIP = 3;
  /external/mesa3d/src/glsl/glcpp/
glcpp-lex.l 70 %x DONE COMMENT UNREACHABLE SKIP DEFINE
95 /* Implicitly switch between SKIP and INITIAL (non-skipping);
99 if (YY_START == 0 || YY_START == SKIP) {
103 BEGIN SKIP;
142 <SKIP,INITIAL>{
178 <SKIP>[^\n] ;
182 for (p = yytext; !isalpha(p[0]); p++); /* skip " # " */
183 p += 5; /* skip "error" */
290 <SKIP,INITIAL>\n {
  /external/minijail/
syscall_filter_unittest_macros.h 95 BPF_JMP+BPF_JEQ+BPF_K, ARCH_NR, SKIP, NEXT); \
102 BPF_JMP+BPF_JEQ+BPF_K, (_nr), NEXT, SKIP); \
110 BPF_JMP+BPF_JEQ+BPF_K, (_nr), NEXT, SKIP); \
bpf.c 19 set_bpf_jump(curr_block++, BPF_JMP + BPF_JEQ + BPF_K, ARCH_NR, SKIP,
29 set_bpf_jump(curr_block++, BPF_JMP + BPF_JEQ + BPF_K, nr, NEXT, SKIP);
38 set_bpf_jump(curr_block++, BPF_JMP + BPF_JEQ + BPF_K, nr, NEXT, SKIP);
174 * skip and the false branch fall through.
176 unsigned char jt = flip ? NEXT : SKIP;
177 unsigned char jf = flip ? SKIP : NEXT;
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
UrlComponentEncodingTester.java 52 map.put((int) '\t', Encoding.SKIP); // Horizontal Tab
53 map.put((int) '\n', Encoding.SKIP); // Line feed
55 map.put((int) '\f', Encoding.SKIP); // Form feed
56 map.put((int) '\r', Encoding.SKIP); // Carriage return
212 if (encoding == Encoding.SKIP) continue;
323 SKIP;
  /external/testng/src/test/java/test/inject/
InjectAfterMethodWithTestResultSampleTest.java 24 public void skip() { method in class:InjectAfterMethodWithTestResultSampleTest
43 || ("skip".equals(name) && r.getStatus() == ITestResult.SKIP)) {
InjectBeforeAndAfterMethodsWithTestResultSampleTest.java 28 public void skip() { method in class:InjectBeforeAndAfterMethodsWithTestResultSampleTest
49 || ("skip".equals(name) && r.getStatus() == ITestResult.SKIP)) {
  /toolchain/binutils/binutils-2.25/gas/config/
tc-score.h 45 #define TC_VALIDATE_FIX(FIXP, SEGTYPE, SKIP) score_validate_fix (FIXP)
tc-avr.h 162 #define TC_VALIDATE_FIX(FIXP,SEG,SKIP) \
181 goto SKIP; \
  /external/ltp/include/mk/
module.mk 27 SKIP := 1
30 SKIP := 1
32 SKIP ?= $(shell \
39 ifneq ($(SKIP),0)
  /frameworks/base/core/java/android/util/
Base64.java 224 private static final int SKIP = -1;
322 } else if (d != SKIP) {
332 } else if (d != SKIP) {
347 } else if (d != SKIP) {
369 } else if (d != SKIP) {
378 } else if (d != SKIP) {
385 if (d != SKIP) {
  /device/google/marlin/dataservices/datatop/src/
datatop_interface.h 56 #define SKIP 1
70 .skip = 0
113 /* Skip on subsequent polls */
114 char skip; member in struct:dtop_data_point
  /external/testng/src/test/java/test/
InvokedMethodNameListener.java 30 case ITestResult.SKIP:
  /external/testng/src/main/java/org/testng/reporters/
VerboseReporter.java 33 SUCCESS(ITestResult.SUCCESS), FAILURE(ITestResult.FAILURE), SKIP(ITestResult.SKIP),
73 logTestResult(Status.SKIP, tr, true);
102 logTestResult(Status.SKIP, tr, false);
172 case SKIP:
  /external/google-breakpad/android/
test-driver 108 77:*) col=$blu res=SKIP recheck=no gcopy=yes;;
  /external/testng/src/main/java/org/testng/internal/
Constants.java 86 if (ITestResult.SKIP == status) {
87 return "SKIP";
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gre/
ViewMetadataRepositoryTest.java 62 assertEquals(RenderMode.SKIP, repository.getRenderMode("android.widget.LinearLayout"));
  /test/vts/harnesses/tradefed/src/com/android/tradefed/testtype/
VtsMultiDeviceTestResultParser.java 74 static final String SKIP = "SKIP";
233 } else if (lastToken.equals(SKIP)){
234 // SKIP is not a recognized test type in TradeFed.
319 } else if (test.getValue() == SKIP) {
373 case SKIP :
374 /* Skip is not recognized in TF*/
  /tools/apksig/src/main/java/com/android/apksig/
ApkSignerEngine.java 315 SKIP,

Completed in 1487 milliseconds

1 2 3 4 5 6 7 8 910