/external/clang/test/CXX/dcl.decl/dcl.meaning/ |
p1.cpp | 35 void NS::foo(); // expected-warning {{extra qualification}} 36 extern int NS::bar; // expected-warning {{extra qualification}} 37 struct NS::X; // expected-error {{forward declaration of struct cannot have a nested name specifier}} expected-warning {{extra qualification}} 38 template<typename T> struct NS::Y; // expected-error {{forward declaration of struct cannot have a nested name specifier}} expected-warning {{extra qualification}} 39 template<typename T> void NS::wibble(T); // expected-warning {{extra qualification}} 41 void NS::foo() {} // expected-warning{{extra qualification on member 'foo'}} 42 int NS::bar; // expected-warning{{extra qualification on member 'bar'}} 43 struct NS::X { }; // expected-warning{{extra qualification on member 'X'}} 44 template<typename T> struct NS::Y { }; // expected-warning{{extra qualification on member 'Y'}} 45 template<typename T> void NS::wibble(T) { } // expected-warning{{extra qualification on member 'wibble'} [all...] |
/external/clang/test/Lexer/ |
cxx0x_keyword_as_cxx98.cpp | 9 typedef nullptr_t nullptr; // expected-warning {{'nullptr' is a keyword in C++11}} 17 extern int ID(decltype); // expected-warning {{'decltype' is a keyword in C++11}} 19 extern int CONCAT(align,of); // expected-warning {{'alignof' is a keyword in C++11}} 27 int alignas; // expected-warning {{'alignas' is a keyword in C++11}} 29 int char16_t; // expected-warning {{'char16_t' is a keyword in C++11}} 30 int char32_t; // expected-warning {{'char32_t' is a keyword in C++11}} 31 int constexpr; // expected-warning {{'constexpr' is a keyword in C++11}} 33 int noexcept; // expected-warning {{'noexcept' is a keyword in C++11}} 35 int static_assert; // expected-warning {{'static_assert' is a keyword in C++11}} 36 int thread_local; // expected-warning {{'thread_local' is a keyword in C++11} [all...] |
pragma-message.c | 13 #pragma message(":O I'm a message! " STRING(__LINE__)) // expected-warning {{:O I'm a message! 13}} 14 #pragma message ":O gcc accepts this! " STRING(__LINE__) // expected-warning {{:O gcc accepts this! 14}} 18 // GCC supports a similar pragma, #pragma GCC warning (which generates a warning 21 #pragma GCC warning(":O I'm a message! " STRING(__LINE__)) // expected-warning {{:O I'm a message! 21}} 22 #pragma GCC warning ":O gcc accepts this! " STRING(__LINE__) // expected-warning {{:O gcc accepts this! 22}} 31 #pragma GCC warning("" // expected-error {{pragma warning requires parenthesized string} [all...] |
/external/clang/test/Sema/ |
warn-char-subscripts.c | 6 int val = array[subscript]; // expected-warning{{array subscript is of type 'char'}} 12 int val = subscript[array]; // expected-warning{{array subscript is of type 'char'}} 18 int val = array[subscript]; // expected-warning{{array subscript is of type 'char'}} 24 int val = subscript[array]; // expected-warning{{array subscript is of type 'char'}} 30 int val = array[returnsChar()]; // expected-warning{{array subscript is of type 'char'}} 36 int val = array[subscript]; // no warning for explicit signed char 42 int val = array[subscript]; // no warning for unsigned char 49 int val = array[subscript]; // expected-warning{{array subscript is of type 'char'}} 56 int val = array[subscript]; // no warning for explicit signed char 63 int val = array[subscript]; // no warning for unsigned cha [all...] |
/external/clang/test/SemaCXX/ |
attr-deprecated.cpp | 12 f(); // expected-warning{{'f' is deprecated}} 13 a->f(); // expected-warning{{'f' is deprecated}} 15 (void)b; // expected-warning{{'b' is deprecated}} 16 (void)a->b; // expected-warning{{'b' is deprecated}} 34 f(); // expected-warning{{'f' is deprecated}} 35 B::f(); // expected-warning{{'f' is deprecated}} 46 B::f(); // expected-warning{{'f' is deprecated}} 50 b->f(); // expected-warning{{'f' is deprecated}} 51 b->B::f(); // expected-warning{{'f' is deprecated}} 55 c->B::f(); // expected-warning{{'f' is deprecated} [all...] |
warn-dangling-field.cpp | 15 : x(i), // expected-warning {{binding reference member 'x' to stack allocated parameter 'i'}} 16 y(&i) {} // expected-warning {{initializing pointer member 'y' with the stack address of parameter 'i'}} 17 S(int &i) : x(i), y(&i) {} // no-warning: reference parameter 18 S(int *i) : x(*i), y(i) {} // no-warning: pointer parameter 23 S2(int i) : x(i) {} // expected-warning {{binding reference member 'x' to a temporary}} 28 S3(Y y) : x1(y), x2(y) {} // no-warning: conversion operator 33 S4(int i) : x(i) {} // expected-warning {{binding reference member 'x' to stack allocated parameter 'i'}} 36 template struct S4<int>; // no warning from this instantiation 46 S6() : s5 { 0 } {} // expected-warning {{binding reference subobject of member 's5' to a temporary}} 50 S7() : S5 { 0 } {} // expected-warning {{binding reference member 'x' to a temporary} [all...] |
uninitialized.cpp | 23 int a = a; // no-warning: used to signal intended lack of initialization. 24 int b = b + 1; // expected-warning {{variable 'b' is uninitialized when used within its own initialization}} 25 int c = (c + c); // expected-warning 2 {{variable 'c' is uninitialized when used within its own initialization}} 26 int e = static_cast<long>(e) + 1; // expected-warning {{variable 'e' is uninitialized when used within its own initialization}} 27 int f = foo(f); // expected-warning {{variable 'f' is uninitialized when used within its own initialization}} 37 int l = k ? l : l; // expected-warning 2{{variable 'l' is uninitialized when used within its own initialization}} 38 int m = 1 + (k ? m : m); // expected-warning 2{{variable 'm' is uninitialized when used within its own initialization}} 39 int n = -n; // expected-warning {{variable 'n' is uninitialized when used within its own initialization}} 40 int o = std::move(o); // expected-warning {{variable 'o' is uninitialized when used within its own initialization}} 41 const int p = std::move(p); // expected-warning {{variable 'p' is uninitialized when used within its own initialization} [all...] |
warn-unsequenced.cpp | 17 a + ++a; // expected-warning {{unsequenced modification and access to 'a'}} 19 a + a++; // expected-warning {{unsequenced modification and access to 'a'}} 20 a = a++; // expected-warning {{multiple unsequenced modifications to 'a'}} 23 ++a + ++a; // expected-warning {{multiple unsequenced modifications to 'a'}} 24 a++ + a++; // expected-warning {{multiple unsequenced modifications}} 27 a = xs[a++]; // expected-warning {{multiple unsequenced modifications}} 28 (a ? xs[0] : xs[1]) = ++a; // expected-warning {{unsequenced modification and access}} 31 a = (a++, a++); // expected-warning {{multiple unsequenced modifications}} 33 f(a = 0, a); // expected-warning {{unsequenced modification and access}} 34 f(a, a += 0); // expected-warning {{unsequenced modification and access} [all...] |
/hardware/qcom/msm8996/kernel-headers/video/ |
msm_hdmi_hdcp_mgr.h | 23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 68 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS * [all...] |
/hardware/qcom/msm8994/kernel-headers/linux/mfd/wcd9xxx/ |
wcd9xxx_registers.h | 23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 68 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS * [all...] |
/hardware/qcom/msm8994/kernel-headers/media/ |
msm_isp.h | 23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 68 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS * [all...] |
/hardware/qcom/msm8996/kernel-headers/media/ |
msm_isp.h | 23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 68 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS * [all...] |
/hardware/qcom/msm8998/kernel-headers/media/ |
msm_isp.h | 23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 68 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS * [all...] |
/external/clang/test/Analysis/ |
stack-addr-ps.cpp | 7 return s; // expected-warning{{Address of stack memory associated with local variable 's' returned}} expected-warning{{reference to stack memory associated with local variable 's' returned}} 13 return s2; // expected-warning{{Address of stack memory associated with local variable 's1' returned}} expected-warning {{reference to stack memory associated with local variable 's1' returned}} 20 return s3; // expected-warning{{Address of stack memory associated with local variable 's1' returned}} expected-warning {{reference to stack memory associated with local variable 's1' returned}} 24 static const int &x = 3; // no warning 29 const int &get_reference1() { return get_value(); } // expected-warning{{Address of stack memory associated with temporary object of type 'int' returned}} expected-warning {{returning reference to local temporary}} 33 return x; // expected-warning{{Address of stack memory associated with temporary object of type 'int' returned}} expected-warnin (…) [all...] |
malloc-annotations.c | 29 return; // expected-warning{{Potential leak of memory pointed to by}} 35 free(p); // expected-warning{{Attempt to free released memory}} 41 realloc(p,0); // expected-warning{{Attempt to free released memory}} 46 int *q = realloc(p,0); // no-warning 52 return; // no-warning 57 return; // expected-warning{{Potential leak of memory pointed to by}} 62 return; // expected-warning{{Potential leak of memory pointed to by}} 67 } // expected-warning{{Potential leak of memory pointed to by}} 70 myglobalpointer = my_malloc(12); // no-warning 76 } // expected-warning{{Potential leak of memory pointed to by} [all...] |
casts.c | 24 switch (sockaddr->sa_family) { // no-warning 85 return 5/y; // This code should be unreachable: no-warning. 91 clang_analyzer_eval(0); // expected-warning{{FALSE}} 92 clang_analyzer_eval(0U); // expected-warning{{FALSE}} 93 clang_analyzer_eval((void *)0); // expected-warning{{FALSE}} 95 clang_analyzer_eval(1); // expected-warning{{TRUE}} 96 clang_analyzer_eval(1U); // expected-warning{{TRUE}} 97 clang_analyzer_eval(-1); // expected-warning{{TRUE}} 98 clang_analyzer_eval(0x100); // expected-warning{{TRUE}} 99 clang_analyzer_eval(0x100U); // expected-warning{{TRUE} [all...] |
nullptr.cpp | 8 *np = 0; // expected-warning{{Dereference of null pointer}} 18 *np1 = 0; // no-warning 21 // invoving a nullptr in a more complex operation should be cause a warning 29 *ip = 0; // expected-warning{{Dereference of null pointer}} 38 *np = 0; // no-warning 41 *np = 0; // no-warning 53 delete *(p + 0); // expected-warning{{Dereference of null pointer}} 61 :"0"(*b) // expected-warning{{Dereference of null pointer}} 74 return S(*x).a; // expected-warning{{Dereference of null pointer}} 83 const S &s = S(*n); // expected-warning{{Dereference of null pointer} [all...] |
/external/clang/test/SemaObjC/ |
nonnull.m | 9 int f1(int x); // no warning 14 int f6(NSObject *x) __attribute__ ((nonnull (1))); // no-warning 15 int f7(NSObject *x) __attribute__ ((nonnull)); // no-warning 34 func1(0, cp2, i1); // expected-warning {{null passed to a callee that requires a non-null argument}} 35 func1(cp1, 0, i1); // expected-warning {{null passed to a callee that requires a non-null argument}} 39 func3(0, i2, cp3, i3); // expected-warning {{null passed to a callee that requires a non-null argument}} 40 func3(cp3, i2, 0, i3); // expected-warning {{null passed to a callee that requires a non-null argument}} 42 func4(0, cp1); // expected-warning {{null passed to a callee that requires a non-null argument}} 43 func4(cp1, 0); // expected-warning {{null passed to a callee that requires a non-null argument}} 47 func6((NSObject*) 0); // no-warning [all...] |
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
WarningParser.java | 34 * Parser for Warning header. 50 * @param warning - 51 * Warning header to parse 53 public WarningParser(String warning) { 54 super(warning); 80 headerName(TokenTypes.WARNING); 83 Warning warning = new Warning(); local 84 warning.setHeaderName(SIPHeaderNames.WARNING) [all...] |
/hardware/qcom/msm8994/kernel-headers/linux/ |
netlink.h | 23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 68 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS * [all...] |
/hardware/qcom/msm8996/kernel-headers/linux/ |
netlink.h | 23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 68 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS * [all...] |
/hardware/qcom/msm8x84/kernel-headers/linux/ |
msm_kgsl.h | 23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 68 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS * [all...] |
qseecom.h | 23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 68 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS * [all...] |
/hardware/qcom/msm8x84/kernel-headers/media/ |
msm_vpu.h | 23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 68 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS * [all...] |
msmb_pproc.h | 23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 68 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS * [all...] |