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

1 2 3 4 5 6 7 8 91011

  /external/clang/test/CodeGen/
unreachable.c 2 // CHECK-NOT: @unreachable
5 extern int unreachable();
9 unreachable();
14 int a = unreachable();
21 unreachable();
23 unreachable();
35 unreachable();
  /external/clang/test/Profile/
cxx-throws.cpp 67 void unreachable(int i) { function
90 unreachable(1);
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/
deadcode.go 28 println() // ERROR "unreachable code"
35 println() // ERROR "unreachable code"
41 println() // ERROR "unreachable code"
56 println() // ERROR "unreachable code"
66 println() // ERROR "unreachable code"
74 println() // ERROR "unreachable code"
85 println() // ERROR "unreachable code"
99 println() // ERROR "unreachable code"
108 println() // ERROR "unreachable code"
114 { // ERROR "unreachable code
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/
deadcode.go 28 println() // ERROR "unreachable code"
35 println() // ERROR "unreachable code"
41 println() // ERROR "unreachable code"
56 println() // ERROR "unreachable code"
66 println() // ERROR "unreachable code"
74 println() // ERROR "unreachable code"
85 println() // ERROR "unreachable code"
99 println() // ERROR "unreachable code"
108 println() // ERROR "unreachable code"
114 { // ERROR "unreachable code
    [all...]
  /art/test/542-inline-trycatch/src/
Main.java 53 unreachable(); method
59 unreachable(); method
80 unreachable(); method
87 unreachable(); method
93 unreachable(); method
98 unreachable(); method
126 unreachable(); method
133 unreachable(); method
171 private static void unreachable() { method in class:Main
172 throw new Error("Unreachable");
    [all...]
  /external/v8/test/mjsunit/es6/
indexed-integer-exotics.js 7 Object.prototype["10"] = "unreachable";
8 Object.prototype["7"] = "unreachable";
9 Object.prototype["-1"] = "unreachable";
10 Object.prototype["-0"] = "unreachable";
11 Object.prototype["4294967295"] = "unreachable";
22 assertEquals("unreachable", array.__proto__["-1"]);
23 assertEquals("unreachable", array.__proto__["-0"]);
24 assertEquals("unreachable", array.__proto__["10"]);
25 assertEquals("unreachable", array.__proto__["4294967295"]);
30 array["-1"] = "unreachable";
    [all...]
iteration-semantics.js 99 throw "unreachable";
125 function* unreachable(iterable) {
132 function set_never() { throw "unreachable"; }
144 function never() { throw "unreachable"; }
217 assertThrows('fold(sum, 0, unreachable(null))', TypeError);
218 assertThrows('fold(sum, 0, unreachable(undefined))', TypeError);
221 assertThrows('fold(sum, 0, unreachable({}))', TypeError);
222 assertThrows('fold(sum, 0, unreachable(false))', TypeError);
223 assertThrows('fold(sum, 0, unreachable(37))', TypeError);
330 // if (name == 'next' && n-- < 0) throw "unreachable";
    [all...]
  /art/test/472-unreachable-if-regression/smali/
Test.smali 23 : unreachable
25 if-lt v0, v0, :unreachable
32 : unreachable
  /external/clang/lib/StaticAnalyzer/Checkers/
AnalyzerStatsChecker.cpp 32 "The # of unreachable blocks in analyzing top level functions");
72 unsigned total = 0, unreachable = 0; local
78 // Check if the block is unreachable
80 ++unreachable;
84 // We never 'reach' the entry block, so correct the unreachable count
85 unreachable--;
88 unreachable--;
105 NumBlocksUnreachable += unreachable;
109 output << " -> Total CFGBlocks: " << total << " | Unreachable CFGBlocks: "
110 << unreachable << " | Exhausted Block:
    [all...]
  /prebuilts/go/darwin-x86/test/chan/
select3.go 18 func unreachable() { func
73 unreachable()
80 unreachable()
125 unreachable()
131 unreachable()
137 unreachable()
139 unreachable()
148 unreachable()
161 unreachable()
168 unreachable()
    [all...]
  /prebuilts/go/linux-x86/test/chan/
select3.go 18 func unreachable() { func
73 unreachable()
80 unreachable()
125 unreachable()
131 unreachable()
137 unreachable()
139 unreachable()
148 unreachable()
161 unreachable()
168 unreachable()
    [all...]
  /external/iproute2/ip/
routel 28 broadcast|local|unreachable) via=$network
ifcfg 132 ip route add unreachable 224.0.0.0/24 >& /dev/null
133 ip route add unreachable 255.255.255.255 >& /dev/null
  /external/jemalloc/include/jemalloc/internal/
assert.h 20 "<jemalloc>: %s:%d: Unreachable code reached\n", \
24 unreachable(); \
  /prebuilts/go/darwin-x86/src/cmd/go/
bootstrap.go 25 panic("unreachable")
37 panic("unreachable")
  /prebuilts/go/linux-x86/src/cmd/go/
bootstrap.go 25 panic("unreachable")
37 panic("unreachable")
  /frameworks/compile/mclinker/include/mcld/Support/
MsgHandling.h 28 MsgHandler unreachable(unsigned int pID);
41 inline mcld::MsgHandler mcld::unreachable(unsigned int pID) { function in class:mcld
42 return getDiagnosticEngine().report(pID, DiagnosticEngine::Unreachable);
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug028.go 28 bug028.go:7: unreachable statements in a switch
issue4066.go 32 panic("unreachable")
  /prebuilts/go/linux-x86/test/fixedbugs/
bug028.go 28 bug028.go:7: unreachable statements in a switch
issue4066.go 32 panic("unreachable")
  /external/v8/test/mjsunit/wasm/
unreachable.js 22 // -- function #0 (unreachable)
48 assertEquals("unreachable", exception);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
relax2.s 1 # PUSHJ stub border-cases: two with either or both stubs unreachable,
  /external/v8/test/webkit/
dfg-dead-unreachable-code-with-chain-of-dead-unchecked-nodes.js 25 "Tests that code that is dead, unreachable, and contains a chain of nodes that use each other in an untyped way doesn't result in the IR getting corrupted."
31 var x = a; // It's dead and unreachable, and it involves a GetScopeVar(GetScopeRegisters(GetMyScope())).
38 // Since the function contains unreachable code we need a higher optimization threshold.
  /external/v8/test/mjsunit/regress/
regress-arm64-spillslots.js 18 print("unreachable, but we must create register allocation complexity");

Completed in 1933 milliseconds

1 2 3 4 5 6 7 8 91011