HomeSort by relevance Sort by last modified time
    Searched full:switch (Results 126 - 150 of 11629) sorted by null

1 2 3 4 56 7 8 91011>>

  /hardware/msm7k/librpc/
xdr.c 12 switch(xdr->x_op) {
40 switch (size) {
54 switch (size) {
70 switch(xdr->x_op) {
85 switch(xdr->x_op) {
109 switch (xdr->x_op) {
124 switch (xdr->x_op) {
175 switch (xdr->x_op) {
226 switch(xdr->x_op) {
262 switch (xdrs->x_op)
    [all...]
  /external/bluetooth/hcidump/parser/
hidp.c 41 switch (head & 0xf0) {
69 switch (head & 0x0f) {
91 switch (head & 0x0f) {
111 switch (head & 0x03) {
127 switch (head & 0x01) {
144 switch (hdr & 0xf0) {
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Statements/
regress-74474-001.js 23 *"switch() misbehaves with duplicated labels"
25 * See ECMA3 Section 12.11, "The switch Statement"
31 var summary = 'Testing switch statements with duplicate labels';
42 switch ('1')
55 switch (1)
72 switch (x)
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothEnabler.java 26 import android.widget.Switch;
39 private Switch mSwitch;
52 public BluetoothEnabler(Context context, Switch switch_) {
89 public void setSwitch(Switch switch_) {
108 // Reset switch to off
119 switch (state) {
  /external/clang/test/CXX/basic/basic.scope/basic.scope.local/
p4-0x.cpp 16 switch (int n = 37 + 5) // expected-note {{previous definition}}
33 switch (int n = 37 + 5) { // expected-note {{previous definition}}
62 switch (int n = 37 + 5) {{
  /external/v8/src/mips/
constants-mips.cc 152 switch (op) {
165 switch (RtFieldRaw()) {
176 switch (FunctionFieldRaw()) {
192 switch (op) {
195 switch (RtFieldRaw()) {
203 switch (FunctionFieldRaw()) {
219 switch (FunctionFieldRaw()) {
236 switch (OpcodeFieldRaw()) {
238 switch (FunctionFieldRaw()) {
279 switch (FunctionFieldRaw())
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/LexicalConventions/
7.4.3-8-n.js 33 catch default extends switch
53 array[item++] = new TestCase( SECTION, "var switch = true", "error", "var switch = true" );
  /external/webkit/Source/WebCore/
make-hash-tools.pl 23 use Switch;
31 switch ($option) {
53 } # switch ($option)
  /bionic/libc/kernel/arch-arm/asm/
unaligned.h 25 #define __get_unaligned_le(ptr) ({ __typeof__(*(ptr)) __v; __u8 *__p = (__u8 *)(ptr); switch (sizeof(*(ptr))) { case 1: __v = *(ptr); break; case 2: __v = __get_unaligned_2_le(__p); break; case 4: __v = __get_unaligned_4_le(__p); break; case 8: { unsigned int __v1, __v2; __v2 = __get_unaligned_4_le((__p+4)); __v1 = __get_unaligned_4_le(__p); __v = ((unsigned long long)__v2 << 32 | __v1); } break; default: __v = __bug_unaligned_x(__p); break; } __v; })
27 #define __get_unaligned_be(ptr) ({ __typeof__(*(ptr)) __v; __u8 *__p = (__u8 *)(ptr); switch (sizeof(*(ptr))) { case 1: __v = *(ptr); break; case 2: __v = __get_unaligned_2_be(__p); break; case 4: __v = __get_unaligned_4_be(__p); break; case 8: { unsigned int __v1, __v2; __v2 = __get_unaligned_4_be(__p); __v1 = __get_unaligned_4_be((__p+4)); __v = ((unsigned long long)__v2 << 32 | __v1); } break; default: __v = __bug_unaligned_x(__p); break; } __v; })
29 #define __put_unaligned_le(val,ptr) ({ switch (sizeof(*(ptr))) { case 1: *(ptr) = (val); break; case 2: __put_unaligned_2_le((val),(__u8 *)(ptr)); break; case 4: __put_unaligned_4_le((val),(__u8 *)(ptr)); break; case 8: __put_unaligned_8_le((val),(__u8 *)(ptr)); break; default: __bug_unaligned_x(ptr); break; } (void) 0; })
30 #define __put_unaligned_be(val,ptr) ({ switch (sizeof(*(ptr))) { case 1: *(ptr) = (val); break; case 2: __put_unaligned_2_be((val),(__u8 *)(ptr)); break; case 4: __put_unaligned_4_be((val),(__u8 *)(ptr)); break; case 8: __put_unaligned_8_be((val),(__u8 *)(ptr)); break; default: __bug_unaligned_x(ptr); break; } (void) 0; })
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
SwitchInsn.java 25 * Instruction which contains switch cases.
29 /** {@code non-null;} list of switch cases */
39 * @param cases {@code non-null;} list of switch cases
112 * Gets the list of switch cases.
  /dalvik/dx/src/com/android/dx/rop/code/
SwitchInsn.java 25 * Instruction which contains switch cases.
29 /** {@code non-null;} list of switch cases */
39 * @param cases {@code non-null;} list of switch cases
112 * Gets the list of switch cases.
  /development/ndk/platforms/android-3/arch-arm/include/asm/
unaligned.h 25 #define __get_unaligned_le(ptr) ({ __typeof__(*(ptr)) __v; __u8 *__p = (__u8 *)(ptr); switch (sizeof(*(ptr))) { case 1: __v = *(ptr); break; case 2: __v = __get_unaligned_2_le(__p); break; case 4: __v = __get_unaligned_4_le(__p); break; case 8: { unsigned int __v1, __v2; __v2 = __get_unaligned_4_le((__p+4)); __v1 = __get_unaligned_4_le(__p); __v = ((unsigned long long)__v2 << 32 | __v1); } break; default: __v = __bug_unaligned_x(__p); break; } __v; })
27 #define __get_unaligned_be(ptr) ({ __typeof__(*(ptr)) __v; __u8 *__p = (__u8 *)(ptr); switch (sizeof(*(ptr))) { case 1: __v = *(ptr); break; case 2: __v = __get_unaligned_2_be(__p); break; case 4: __v = __get_unaligned_4_be(__p); break; case 8: { unsigned int __v1, __v2; __v2 = __get_unaligned_4_be(__p); __v1 = __get_unaligned_4_be((__p+4)); __v = ((unsigned long long)__v2 << 32 | __v1); } break; default: __v = __bug_unaligned_x(__p); break; } __v; })
29 #define __put_unaligned_le(val,ptr) ({ switch (sizeof(*(ptr))) { case 1: *(ptr) = (val); break; case 2: __put_unaligned_2_le((val),(__u8 *)(ptr)); break; case 4: __put_unaligned_4_le((val),(__u8 *)(ptr)); break; case 8: __put_unaligned_8_le((val),(__u8 *)(ptr)); break; default: __bug_unaligned_x(ptr); break; } (void) 0; })
30 #define __put_unaligned_be(val,ptr) ({ switch (sizeof(*(ptr))) { case 1: *(ptr) = (val); break; case 2: __put_unaligned_2_be((val),(__u8 *)(ptr)); break; case 4: __put_unaligned_4_be((val),(__u8 *)(ptr)); break; case 8: __put_unaligned_8_be((val),(__u8 *)(ptr)); break; default: __bug_unaligned_x(ptr); break; } (void) 0; })
  /external/chromium/chrome/browser/sync/protocol/
proto_enum_conversions.cc 27 switch (browser_type) {
39 switch (page_transition) {
63 switch (page_transition_qualifier) {
75 switch (updates_source) {
  /external/chromium/net/base/
net_errors.cc 18 switch (error) {
net_switches.cc 9 // This switch will take the JSON-formatted HSTS specification and load it
  /external/clang/test/CodeGen/
statements.c 4 switch (x) {
  /external/clang/test/SemaCXX/
condition.cpp 17 switch (s) {} // expected-error {{statement requires expression of integer type ('struct S' invalid)}}
22 switch (enum {E} x=0) ; // expected-error {{types may not be defined in conditions}} expected-error {{cannot initialize}} \
23 // expected-warning{{enumeration value 'E' not handled in switch}}
36 switch (int x=0) { default: int x; } // expected-error {{redefinition of 'x'}} expected-note {{previous definition is here}}
  /external/dnsmasq/contrib/try-all-ns/
README-2.47 6 as it doesn't add new switch, rather it binds itself to "strict-order".
  /external/e2fsprogs/lib/e2p/
pe.c 23 switch (errors)
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
TAlt.java 28 public void apply(Switch sw)
TAnd.java 28 public void apply(Switch sw)
TArgWhitespace.java 28 public void apply(Switch sw)
TAssignment.java 28 public void apply(Switch sw)
TAutoescape.java 28 public void apply(Switch sw)
TBang.java 28 public void apply(Switch sw)

Completed in 369 milliseconds

1 2 3 4 56 7 8 91011>>