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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/ppapi/c/
pp_macros.h 57 NAME is the name of the type without any spaces or the struct or enum
65 #define PP_COMPILE_ASSERT_SIZE_IN_BYTES_IMPL(NAME, CTYPENAME, SIZE) \
66 struct PP_Dummy_Struct_For_##NAME { \
68 ## NAME ## _is_not_ ## SIZE ## \
77 #define PP_COMPILE_ASSERT_SIZE_IN_BYTES(NAME, SIZE) \
78 PP_COMPILE_ASSERT_SIZE_IN_BYTES_IMPL(NAME, NAME, SIZE)
86 #define PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(NAME, SIZE) \
87 PP_COMPILE_ASSERT_SIZE_IN_BYTES_IMPL(NAME, struct NAME, SIZE
    [all...]
  /external/clang/test/Lexer/
keywords_test.cpp 4 #define IS_KEYWORD(NAME) _Static_assert(!__is_identifier(NAME), #NAME)
5 #define NOT_KEYWORD(NAME) _Static_assert(__is_identifier(NAME), #NAME)
6 #define IS_TYPE(NAME) void is_##NAME##_type() { int f(NAME); }
9 #define CXX11_KEYWORD(NAME) IS_KEYWORD(NAME
    [all...]
  /external/chromium_org/ppapi/api/
pp_macros.idl 48 NAME is the name of the type without any spaces or the struct or enum
56 #define PP_COMPILE_ASSERT_SIZE_IN_BYTES_IMPL(NAME, CTYPENAME, SIZE) \
57 struct PP_Dummy_Struct_For_##NAME { \
59 ## NAME ## _is_not_ ## SIZE ## \
68 #define PP_COMPILE_ASSERT_SIZE_IN_BYTES(NAME, SIZE) \
69 PP_COMPILE_ASSERT_SIZE_IN_BYTES_IMPL(NAME, NAME, SIZE)
77 #define PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(NAME, SIZE) \
78 PP_COMPILE_ASSERT_SIZE_IN_BYTES_IMPL(NAME, struct NAME, SIZE
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/
carrays.i 9 * %array_functions(TYPE,NAME)
21 %define %array_functions(TYPE,NAME)
23 static TYPE *new_##NAME(int nelements) { %}
31 static void delete_##NAME(TYPE *ary) { %}
39 static TYPE NAME##_getitem(TYPE *ary, int index) {
42 static void NAME##_setitem(TYPE *ary, int index, TYPE value) {
47 TYPE *new_##NAME(int nelements);
48 void delete_##NAME(TYPE *ary);
49 TYPE NAME##_getitem(TYPE *ary, int index);
50 void NAME##_setitem(TYPE *ary, int index, TYPE value)
    [all...]
cpointer.i 9 * %pointer_class(type,name)
44 %define %pointer_class(TYPE, NAME)
46 typedef TYPE NAME;
50 } NAME;
52 %extend NAME {
54 NAME() {
57 ~NAME() {
61 NAME() {
64 ~NAME() {
70 %extend NAME {
    [all...]
cmalloc.i 12 /* %malloc(TYPE [, NAME = TYPE])
13 %calloc(TYPE [, NAME = TYPE])
14 %realloc(TYPE [, NAME = TYPE])
15 %free(TYPE [, NAME = TYPE])
16 %allocators(TYPE [,NAME = TYPE])
27 %define %malloc(TYPE,NAME...)
28 #if #NAME != ""
29 %rename(malloc_##NAME) ::malloc(int nbytes);
41 %define %calloc(TYPE,NAME...)
42 #if #NAME != "
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/d/
carrays.i 8 * %array_functions(TYPE,NAME)
20 %define %array_functions(TYPE,NAME)
22 static TYPE *new_##NAME(int nelements) { %}
30 static void delete_##NAME(TYPE *ary) { %}
38 static TYPE NAME##_getitem(TYPE *ary, int index) {
41 static void NAME##_setitem(TYPE *ary, int index, TYPE value) {
46 TYPE *new_##NAME(int nelements);
47 void delete_##NAME(TYPE *ary);
48 TYPE NAME##_getitem(TYPE *ary, int index);
49 void NAME##_setitem(TYPE *ary, int index, TYPE value)
    [all...]
cpointer.i 8 * %pointer_class(type,name)
43 %define %pointer_class(TYPE, NAME)
45 typedef TYPE NAME;
49 } NAME;
51 %extend NAME {
53 NAME() {
56 ~NAME() {
60 NAME() {
63 ~NAME() {
69 %extend NAME {
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
SIPHeaderNames.java 44 public static final String MIN_EXPIRES = MinExpiresHeader.NAME; //1
45 public static final String ERROR_INFO = ErrorInfoHeader.NAME; //2
46 public static final String MIME_VERSION = MimeVersionHeader.NAME; //3
47 public static final String IN_REPLY_TO = InReplyToHeader.NAME; //4
48 public static final String ALLOW = AllowHeader.NAME; //5
49 public static final String CONTENT_LANGUAGE = ContentLanguageHeader.NAME;
51 public static final String CALL_INFO = CallInfoHeader.NAME; //7
52 public static final String CSEQ = CSeqHeader.NAME; //8
53 public static final String ALERT_INFO = AlertInfoHeader.NAME; //9
54 public static final String ACCEPT_ENCODING = AcceptEncodingHeader.NAME;
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
SIPHeaderNamesIms.java 40 public static final String PATH = PathHeader.NAME;
41 public static final String SERVICE_ROUTE = ServiceRouteHeader.NAME;
42 public static final String P_ASSERTED_IDENTITY = PAssertedIdentityHeader.NAME;
43 public static final String P_PREFERRED_IDENTITY = PPreferredIdentityHeader.NAME;
44 public static final String CALLED_PARTY_ID = PCalledPartyIDHeader.NAME;
45 public static final String P_VISITED_NETWORK_ID = PVisitedNetworkIDHeader.NAME;
46 public static final String P_CHARGING_FUNCTION_ADDRESSES = PChargingFunctionAddressesHeader.NAME;
47 public static final String P_CHARGING_VECTOR = PChargingVectorHeader.NAME;
51 public static final String PRIVACY = PrivacyHeader.NAME;
52 public static final String P_ASSOCIATED_URI = PAssociatedURIHeader.NAME;
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/python/
carrays.i 1 %define %array_class(TYPE,NAME)
3 %feature("python:slot", "sq_item", functype="ssizeargfunc") NAME::__getitem__;
4 %feature("python:slot", "sq_ass_item", functype="ssizeobjargproc") NAME::__setitem__;
9 } NAME;
12 %extend NAME {
14 NAME(size_t nelements) {
15 NAME *arr = %new_instance(NAME);
20 ~NAME() {
37 static NAME *frompointer(TYPE *t)
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
cpointer.swg 10 * %pointer_class(type,name)
45 %define %pointer_class(TYPE, NAME)
47 typedef TYPE NAME;
51 } NAME;
53 %extend NAME {
54 NAME() {
57 ~NAME() {
62 %extend NAME {
73 static NAME * frompointer(TYPE *t) {
74 return (NAME *) t
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/bits/
libc-lock.h 66 /* Define a lock variable NAME with storage class CLASS. The lock must be
70 definitions you must use a pointer to the lock structure (i.e., NAME
73 #define __libc_lock_define(CLASS,NAME) \
74 CLASS __libc_lock_t NAME;
75 #define __libc_rwlock_define(CLASS,NAME) \
76 CLASS __libc_rwlock_t NAME;
77 #define __libc_lock_define_recursive(CLASS,NAME) \
78 CLASS __libc_lock_recursive_t NAME;
79 #define __rtld_lock_define_recursive(CLASS,NAME) \
80 CLASS __rtld_lock_recursive_t NAME;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
libc-lock.h 66 /* Define a lock variable NAME with storage class CLASS. The lock must be
70 definitions you must use a pointer to the lock structure (i.e., NAME
73 #define __libc_lock_define(CLASS,NAME) \
74 CLASS __libc_lock_t NAME;
75 #define __libc_rwlock_define(CLASS,NAME) \
76 CLASS __libc_rwlock_t NAME;
77 #define __libc_lock_define_recursive(CLASS,NAME) \
78 CLASS __libc_lock_recursive_t NAME;
79 #define __rtld_lock_define_recursive(CLASS,NAME) \
80 CLASS __rtld_lock_recursive_t NAME;
    [all...]
  /external/elfutils/0.153/src/
versionhash.h 31 #define NAME ld_version_str_tab
  /external/nist-sip/java/javax/sip/header/
CSeqHeader.java 4 String NAME = "CSeq";
ContentEncodingHeader.java 4 String NAME = "Content-Encoding";
InReplyToHeader.java 4 String NAME = "In-Reply-To";
MinExpiresHeader.java 4 String NAME = "Min-Expires";
ProxyAuthenticateHeader.java 4 String NAME = "Proxy-Authenticate";
ProxyAuthorizationHeader.java 4 String NAME = "Proxy-Authorization";
ProxyRequireHeader.java 4 String NAME = "Proxy-Require";
RequireHeader.java 4 String NAME = "Require";
SIPIfMatchHeader.java 4 String NAME = "SIP-If-Match";
SupportedHeader.java 4 String NAME = "Supported";

Completed in 288 milliseconds

1 2 3 4 5 6 7 8 91011>>