HomeSort by relevance Sort by last modified time
    Searched refs:UNIQUE (Results 1 - 17 of 17) sorted by null

  /external/clang/test/Lexer/
counter.c 6 #define UNIQUE(x) PASTE1(x,__COUNTER__)
12 B: UNIQUE(foo);
14 C: UNIQUE(foo);
  /external/clang/test/PCH/
variables.h 22 #define UNIQUE(x) PASTE1(x,__COUNTER__)
24 int UNIQUE(a); // a0
25 int UNIQUE(a); // a1
variables.c 26 #define UNIQUE(x) PASTE1(x,__COUNTER__)
28 int UNIQUE(a); // a0
29 int UNIQUE(a); // a1
44 int UNIQUE(a); // a2
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/
type_utils.hpp 136 #define PB_DS_STATIC_ASSERT(UNIQUE, E) static_assert(E, #UNIQUE)
154 #define PB_DS_STATIC_ASSERT(UNIQUE, E) \
155 typedef __gnu_pbds::detail::__static_assert_dumclass<sizeof(__gnu_pbds::detail::__static_assert<bool(E)>)> UNIQUE##__static_assert_type
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/
type_utils.hpp 136 #define PB_DS_STATIC_ASSERT(UNIQUE, E) static_assert(E, #UNIQUE)
154 #define PB_DS_STATIC_ASSERT(UNIQUE, E) \
155 typedef __gnu_pbds::detail::__static_assert_dumclass<sizeof(__gnu_pbds::detail::__static_assert<bool(E)>)> UNIQUE##__static_assert_type
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/
type_utils.hpp 136 #define PB_DS_STATIC_ASSERT(UNIQUE, E) static_assert(E, #UNIQUE)
154 #define PB_DS_STATIC_ASSERT(UNIQUE, E) \
155 typedef __gnu_pbds::detail::__static_assert_dumclass<sizeof(__gnu_pbds::detail::__static_assert<bool(E)>)> UNIQUE##__static_assert_type
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/
type_utils.hpp 136 #define PB_DS_STATIC_ASSERT(UNIQUE, E) static_assert(E, #UNIQUE)
154 #define PB_DS_STATIC_ASSERT(UNIQUE, E) \
155 typedef __gnu_pbds::detail::__static_assert_dumclass<sizeof(__gnu_pbds::detail::__static_assert<bool(E)>)> UNIQUE##__static_assert_type
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/
type_utils.hpp 136 #define PB_DS_STATIC_ASSERT(UNIQUE, E) static_assert(E, #UNIQUE)
154 #define PB_DS_STATIC_ASSERT(UNIQUE, E) \
155 typedef __gnu_pbds::detail::__static_assert_dumclass<sizeof(__gnu_pbds::detail::__static_assert<bool(E)>)> UNIQUE##__static_assert_type
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/
type_utils.hpp 136 #define PB_DS_STATIC_ASSERT(UNIQUE, E) static_assert(E, #UNIQUE)
154 #define PB_DS_STATIC_ASSERT(UNIQUE, E) \
155 typedef __gnu_pbds::detail::__static_assert_dumclass<sizeof(__gnu_pbds::detail::__static_assert<bool(E)>)> UNIQUE##__static_assert_type
  /external/jmdns/src/javax/jmdns/impl/tasks/state/
Canceler.java 104 for (DNSRecord answer : this.getDns().getLocalHost().answers(DNSRecordClass.UNIQUE, this.getTTL())) {
117 for (DNSRecord answer : info.answers(DNSRecordClass.UNIQUE, this.getTTL(), this.getDns().getLocalHost())) {
Announcer.java 104 for (DNSRecord answer : this.getDns().getLocalHost().answers(DNSRecordClass.UNIQUE, this.getTTL())) {
117 for (DNSRecord answer : info.answers(DNSRecordClass.UNIQUE, this.getTTL(), this.getDns().getLocalHost())) {
Renewer.java 105 for (DNSRecord answer : this.getDns().getLocalHost().answers(DNSRecordClass.UNIQUE, this.getTTL())) {
118 for (DNSRecord answer : info.answers(DNSRecordClass.UNIQUE, this.getTTL(), this.getDns().getLocalHost())) {
  /external/jmdns/src/javax/jmdns/impl/constants/
DNSRecordClass.java 61 public static final boolean UNIQUE = true;
96 * Checks if the class is unique
99 * @return <code>true</code> is the class is unique, <code>false</code> otherwise.
  /external/jmdns/src/javax/jmdns/impl/
DNSQuestion.java 31 DNS4Address(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique) {
32 super(name, type, recordClass, unique);
37 DNSRecord answer = jmDNSImpl.getLocalHost().getDNSAddressRecord(this.getRecordType(), DNSRecordClass.UNIQUE, DNSConstants.DNS_TTL);
55 DNS6Address(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique) {
56 super(name, type, recordClass, unique);
61 DNSRecord answer = jmDNSImpl.getLocalHost().getDNSAddressRecord(this.getRecordType(), DNSRecordClass.UNIQUE, DNSConstants.DNS_TTL);
79 HostInformation(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique) {
80 super(name, type, recordClass, unique);
88 Pointer(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique) {
89 super(name, type, recordClass, unique);
    [all...]
DNSRecord.java 45 DNSRecord(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique, int ttl) {
46 super(name, type, recordClass, unique);
175 IPv4Address(String name, DNSRecordClass recordClass, boolean unique, int ttl, InetAddress addr) {
176 super(name, DNSRecordType.TYPE_A, recordClass, unique, ttl, addr);
179 IPv4Address(String name, DNSRecordClass recordClass, boolean unique, int ttl, byte[] rawAddress) {
180 super(name, DNSRecordType.TYPE_A, recordClass, unique, ttl, rawAddress);
217 IPv6Address(String name, DNSRecordClass recordClass, boolean unique, int ttl, InetAddress addr) {
218 super(name, DNSRecordType.TYPE_AAAA, recordClass, unique, ttl, addr);
221 IPv6Address(String name, DNSRecordClass recordClass, boolean unique, int ttl, byte[] rawAddress) {
222 super(name, DNSRecordType.TYPE_AAAA, recordClass, unique, ttl, rawAddress)
    [all...]
  /external/webkit/LayoutTests/storage/
sql-data-types.js 70 tx.executeSql("CREATE TABLE IF NOT EXISTS DataTypeTestTable (id INTEGER UNIQUE, real REAL, timestamp INTEGER, text TEXT, blob BLOB)", [],
  /external/webkit/Tools/android/flex-2.5.4a/
flexdef.h 194 #define UNIQUE -1 /* marks a symbol as an e.c. representative */
197 #define INITIAL_MAX_CCLS 100 /* max number of unique character classes */
615 * current_maxccls - current limit on the maximum number of unique ccl's
621 * to represent the unique ccl's
643 * numuniq - number of unique transitions
    [all...]

Completed in 1068 milliseconds