HomeSort by relevance Sort by last modified time
    Searched refs:UNIQUE (Results 1 - 22 of 22) 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/5/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/6/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/7/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/8/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.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
Parameter.java 85 * This value must be unique. This constraint usually only makes sense
90 UNIQUE,
153 /** The unique id of the parameter (not displayed to the user) */
283 if (project != null && constraints.contains(Constraint.UNIQUE)) {
290 if (project != null && constraints.contains(Constraint.UNIQUE)) {
297 if (project != null && constraints.contains(Constraint.UNIQUE)) {
304 if (project != null && constraints.contains(Constraint.UNIQUE)) {
  /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)", [],
  /packages/providers/ContactsProvider/tests/assets/testUnsynced/
legacy_contacts.sql 5 CREATE TABLE _sync_state (_id INTEGER PRIMARY KEY,_sync_account TEXT,data TEXT,UNIQUE(_sync_account));
15 CREATE TABLE extensions (_id INTEGER PRIMARY KEY AUTOINCREMENT,name TEXT NOT NULL,value TEXT NOT NULL,person INTEGER REFERENCES people(_id),UNIQUE(person, name));
30 CREATE TABLE groups (_id INTEGER PRIMARY KEY AUTOINCREMENT,_sync_account TEXT,_sync_id TEXT,_sync_time TEXT,_sync_version TEXT,_sync_local_id INTEGER,_sync_dirty INTEGER NOT NULL DEFAULT 0,_sync_mark INTEGER,name TEXT NOT NULL,notes TEXT,should_sync INTEGER NOT NULL DEFAULT 0,system_id TEXT,UNIQUE(name,system_id,_sync_account));
59 CREATE TABLE photos (_id INTEGER PRIMARY KEY AUTOINCREMENT,exists_on_server INTEGER NOT NULL DEFAULT 0,person INTEGER REFERENCES people(_id), local_version TEXT,data BLOB,sync_error TEXT,_sync_account TEXT,_sync_id TEXT,_sync_time TEXT,_sync_version TEXT,_sync_local_id INTEGER,_sync_dirty INTEGER NOT NULL DEFAULT 0,_sync_mark INTEGER,UNIQUE(person) );
  /packages/providers/ContactsProvider/tests/assets/test1/
legacy_contacts.sql 6 CREATE TABLE _sync_state (_id INTEGER PRIMARY KEY,_sync_account TEXT,data TEXT,UNIQUE(_sync_account));
31 CREATE TABLE extensions (_id INTEGER PRIMARY KEY AUTOINCREMENT,name TEXT NOT NULL,value TEXT NOT NULL,person INTEGER REFERENCES people(_id),UNIQUE(person, name));
47 CREATE TABLE groups (_id INTEGER PRIMARY KEY AUTOINCREMENT,_sync_account TEXT,_sync_id TEXT,_sync_time TEXT,_sync_version TEXT,_sync_local_id INTEGER,_sync_dirty INTEGER NOT NULL DEFAULT 0,_sync_mark INTEGER,name TEXT NOT NULL,notes TEXT,should_sync INTEGER NOT NULL DEFAULT 0,system_id TEXT,UNIQUE(name,system_id,_sync_account));
89 CREATE TABLE photos (_id INTEGER PRIMARY KEY AUTOINCREMENT,exists_on_server INTEGER NOT NULL DEFAULT 0,person INTEGER REFERENCES people(_id), local_version TEXT,data BLOB,sync_error TEXT,_sync_account TEXT,_sync_id TEXT,_sync_time TEXT,_sync_version TEXT,_sync_local_id INTEGER,_sync_dirty INTEGER NOT NULL DEFAULT 0,_sync_mark INTEGER,UNIQUE(person) );
  /packages/providers/ContactsProvider/tests/assets/testSynced/
legacy_contacts.sql 5 CREATE TABLE _sync_state (_id INTEGER PRIMARY KEY,_sync_account TEXT,data TEXT,UNIQUE(_sync_account));
18 CREATE TABLE extensions (_id INTEGER PRIMARY KEY AUTOINCREMENT,name TEXT NOT NULL,value TEXT NOT NULL,person INTEGER REFERENCES people(_id),UNIQUE(person, name));
40 CREATE TABLE groups (_id INTEGER PRIMARY KEY AUTOINCREMENT,_sync_account TEXT,_sync_id TEXT,_sync_time TEXT,_sync_version TEXT,_sync_local_id INTEGER,_sync_dirty INTEGER NOT NULL DEFAULT 0,_sync_mark INTEGER,name TEXT NOT NULL,notes TEXT,should_sync INTEGER NOT NULL DEFAULT 0,system_id TEXT,UNIQUE(name,system_id,_sync_account));
107 CREATE TABLE photos (_id INTEGER PRIMARY KEY AUTOINCREMENT,exists_on_server INTEGER NOT NULL DEFAULT 0,person INTEGER REFERENCES people(_id), local_version TEXT,data BLOB,sync_error TEXT,_sync_account TEXT,_sync_id TEXT,_sync_time TEXT,_sync_version TEXT,_sync_local_id INTEGER,_sync_dirty INTEGER NOT NULL DEFAULT 0,_sync_mark INTEGER,UNIQUE(person) );
  /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 370 milliseconds