HomeSort by relevance Sort by last modified time
    Searched defs:fallthrough (Results 1 - 25 of 27) sorted by null

1 2

  /external/clang/test/SemaCXX/
switch-implicit-fallthrough-off-by-default.cpp 2 // RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 -DUNREACHABLE=0 -Wimplicit-fallthrough %s
4 void fallthrough(int n) { function
9 [[fallthrough]]; // expected-no-diagnostics, only checked when UNREACHABLE=0
switch-implicit-fallthrough-per-method.cpp 1 // RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 -Wimplicit-fallthrough-per-function %s
4 int fallthrough(int n) { function
8 case 1: // expected-warning{{unannotated fall-through}} expected-note{{insert '[[clang::fallthrough]];' to silence this warning}} expected-note{{insert 'break;' to avoid fall-through}}
12 [[clang::fallthrough]];
15 case 113: // expected-warning{{unannotated fall-through}} expected-note{{insert '[[clang::fallthrough]];' to silence this warning}} expected-note{{insert 'break;' to avoid fall-through}}
44 [[fallthrough]];
46 [[clang::fallthrough]];
switch-implicit-fallthrough-cxx98.cpp 1 // RUN: %clang_cc1 -fsyntax-only -verify -std=c++98 -Wimplicit-fallthrough %s
7 int fallthrough(int n) { function
switch-implicit-fallthrough.cpp 1 // RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 -Wimplicit-fallthrough %s
4 int fallthrough(int n) { function
15 case 0: {// expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert '[[clang::fallthrough]];' to silence this warning}} expected-note{{insert 'break;' to avoid fall-through}}
17 case 1: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert '[[clang::fallthrough]];' to silence this warning}} expected-note{{insert 'break;' to avoid fall-through}}
19 case 3: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert '[[clang::fallthrough]];' to silence this warning}} expected-note{{insert 'break;' to avoid fall-through}}
22 case 4: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert '[[clang::fallthrough]];' to silence this warning}} expected-note{{insert 'break;' to avoid fall-through}}
25 case 5: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert '[[clang::fallthrough]];' to silence this warning}} expected-note{{insert 'break;' to avoid fall-through}}
34 case 6: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert '[[clang::fallthrough]];' to silence this warning}} expected-note{{insert 'break;' to avoid fall-through}}
55 [[clang::fallthrough]];
58 [[clang::fallthrough]];
    [all...]
  /external/v8/src/builtins/
builtins-lazy-gen.cc 44 Label fallthrough(this);
63 &fallthrough); local
82 Goto(&fallthrough);
89 CAST(ToWeakHeapObject(maybe_optimized_code_entry, &fallthrough));
116 BIND(&fallthrough);
  /external/clang/test/Analysis/
cxx11-crashes.cpp 90 void fallthrough() { function
93 [[clang::fallthrough]]; // expected-error {{does not directly precede}}
  /external/v8/src/regexp/x64/
regexp-macro-assembler-x64.cc 198 Label fallthrough; local
200 __ j(not_equal, &fallthrough);
203 __ bind(&fallthrough);
209 Label fallthrough; local
221 __ j(equal, &fallthrough);
377 __ bind(&fallthrough);
384 Label fallthrough; local
394 __ j(equal, &fallthrough);
452 __ bind(&fallthrough);
    [all...]
  /external/v8/src/regexp/arm/
regexp-macro-assembler-arm.cc 211 Label fallthrough; local
219 __ b(eq, &fallthrough);
344 __ bind(&fallthrough);
351 Label fallthrough; local
362 __ b(eq, &fallthrough);
408 __ bind(&fallthrough);
    [all...]
  /external/v8/src/regexp/ia32/
regexp-macro-assembler-ia32.cc 184 Label fallthrough; local
186 __ j(not_equal, &fallthrough);
189 __ bind(&fallthrough);
195 Label fallthrough; local
203 __ j(equal, &fallthrough);
350 __ bind(&fallthrough);
357 Label fallthrough; local
369 __ j(equal, &fallthrough);
430 __ bind(&fallthrough);
    [all...]
  /external/v8/src/regexp/ppc/
regexp-macro-assembler-ppc.cc 225 Label fallthrough; local
233 __ beq(&fallthrough, cr0);
361 __ bind(&fallthrough);
368 Label fallthrough; local
379 __ beq(&fallthrough, cr0);
429 __ bind(&fallthrough);
    [all...]
  /external/desugar/java/com/google/devtools/build/android/desugar/
CoreLibrarySupport.java 375 Label fallthrough = new Label(); local
379 dispatchMethod.visitJumpInsn(Opcodes.IFEQ, fallthrough);
392 dispatchMethod.visitLabel(fallthrough);
399 Label fallthrough = new Label(); local
408 dispatchMethod.visitJumpInsn(Opcodes.IFEQ, fallthrough);
421 dispatchMethod.visitLabel(fallthrough);
  /external/v8/src/regexp/mips/
regexp-macro-assembler-mips.cc 216 Label fallthrough; local
224 __ Branch(&fallthrough, eq, a1, Operand(zero_reg));
355 __ bind(&fallthrough);
362 Label fallthrough; local
373 __ Branch(&fallthrough, le, a1, Operand(zero_reg));
424 __ bind(&fallthrough);
    [all...]
  /external/v8/src/regexp/mips64/
regexp-macro-assembler-mips64.cc 253 Label fallthrough; local
261 __ Branch(&fallthrough, eq, a1, Operand(zero_reg));
392 __ bind(&fallthrough);
399 Label fallthrough; local
410 __ Branch(&fallthrough, eq, a1, Operand(zero_reg));
455 __ bind(&fallthrough);
    [all...]
  /external/v8/src/regexp/s390/
regexp-macro-assembler-s390.cc 213 Label fallthrough; local
222 __ beq(&fallthrough);
351 __ bind(&fallthrough);
357 Label fallthrough; local
368 __ beq(&fallthrough);
416 __ bind(&fallthrough);
    [all...]
  /external/v8/src/regexp/arm64/
regexp-macro-assembler-arm64.cc 270 Label fallthrough; local
291 __ CompareAndBranch(capture_length, Operand(0), eq, &fallthrough);
426 __ Bind(&fallthrough);
432 Label fallthrough; local
452 __ CompareAndBranch(capture_length, Operand(0), eq, &fallthrough);
506 __ Bind(&fallthrough);
    [all...]
  /external/mesa3d/src/compiler/spirv/
vtn_private.h 170 /* The fallthrough case, if any */
171 struct vtn_case *fallthrough; member in struct:vtn_case
  /external/v8/src/builtins/arm/
builtins-arm.cc 659 Label optimized_code_slot_is_weak_ref, fallthrough; local
679 __ b(eq, &fallthrough);
701 __ jmp(&fallthrough);
709 __ LoadWeakValue(optimized_code_entry, optimized_code_entry, &fallthrough);
741 __ bind(&fallthrough);
    [all...]
  /external/v8/src/builtins/arm64/
builtins-arm64.cc 732 Label optimized_code_slot_is_weak_ref, fallthrough; local
752 &fallthrough);
774 __ B(&fallthrough);
782 __ LoadWeakValue(optimized_code_entry, optimized_code_entry, &fallthrough);
814 __ bind(&fallthrough);
    [all...]
  /external/v8/src/builtins/ia32/
builtins-ia32.cc 624 Label optimized_code_slot_is_weak_ref, fallthrough; local
643 __ j(equal, &fallthrough);
665 __ jmp(&fallthrough);
673 __ LoadWeakValue(optimized_code_entry, &fallthrough);
710 __ bind(&fallthrough);
    [all...]
  /external/v8/src/builtins/mips/
builtins-mips.cc 637 Label optimized_code_slot_is_weak_ref, fallthrough; local
654 __ Branch(&fallthrough, eq, optimized_code_entry,
677 __ jmp(&fallthrough);
685 __ LoadWeakValue(optimized_code_entry, optimized_code_entry, &fallthrough);
715 __ bind(&fallthrough);
    [all...]
  /external/v8/src/builtins/mips64/
builtins-mips64.cc 636 Label optimized_code_slot_is_weak_ref, fallthrough; local
653 __ Branch(&fallthrough, eq, optimized_code_entry,
676 __ jmp(&fallthrough);
684 __ LoadWeakValue(optimized_code_entry, optimized_code_entry, &fallthrough);
715 __ bind(&fallthrough);
    [all...]
  /external/v8/src/builtins/ppc/
builtins-ppc.cc 656 Label optimized_code_slot_is_weak_ref, fallthrough; local
676 __ beq(&fallthrough);
698 __ b(&fallthrough);
706 __ LoadWeakValue(optimized_code_entry, optimized_code_entry, &fallthrough);
738 __ bind(&fallthrough);
    [all...]
  /external/v8/src/builtins/s390/
builtins-s390.cc 664 Label optimized_code_slot_is_weak_ref, fallthrough; local
684 __ beq(&fallthrough);
706 __ b(&fallthrough, Label::kNear);
714 __ LoadWeakValue(optimized_code_entry, optimized_code_entry, &fallthrough);
746 __ bind(&fallthrough);
    [all...]
  /external/v8/src/builtins/x64/
builtins-x64.cc 688 Label optimized_code_slot_is_weak_ref, fallthrough; local
707 __ j(equal, &fallthrough);
728 __ jmp(&fallthrough);
736 __ LoadWeakValue(optimized_code_entry, &fallthrough);
767 __ bind(&fallthrough);
    [all...]
  /external/v8/src/interpreter/
interpreter-generator.cc 3067 GotoIf(WordEqual(generator, UndefinedConstant()), &fallthrough); local
    [all...]

Completed in 598 milliseconds

1 2