HomeSort by relevance Sort by last modified time
    Searched defs:id (Results 1 - 25 of 2986) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Lexer/
token-concat.cpp 3 #define id(x) x macro
4 id("s")_x // CHECK: "s" _x
5 id(L"s")_x // CHECK: L"s" _x
6 id(u8"s")_x // CHECK: u8"s" _x
7 id(u"s")_x // CHECK: u"s" _x
8 id(U"s")_x // CHECK: U"s" _x
9 id('s')_x // CHECK: 's' _x
10 id(L's')_x // CHECK: L's' _x
11 id(u's')_x // CHECK: u's' _x
12 id(U's')_x // CHECK: U's' _
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_menu.h 15 int64 id_; // id of the bookmark node we represent.
17 - (void)setRepresentedObject:(id)object;
18 @property(nonatomic) int64 id; variable
  /external/chromium/chrome/common/extensions/docs/examples/api/tabs/screenshot/
screenshot.js 1 // To make sure we can uniquely identify each screenshot tab, add an id as a
3 var id = 100; variable
9 '?id=', id++].join('');
12 var targetId = tab.id;
16 // Check that the the tab's id matches the tab we opened,
28 // screenshot includes a query parameter with a unique id, which
  /external/clang/test/Modules/Inputs/System/usr/include/
stdio.h 1 typedef struct { int id; } FILE; member in struct:__anon6605
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/thread.threads/thread.thread.class/thread.thread.id/
default.pass.cpp 12 // class thread::id
14 // id();
21 std::thread::id id; local
22 assert(id == std::thread::id());
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/thread.threads/thread.thread.this/
get_id.pass.cpp 12 // thread::id this_thread::get_id();
19 std::thread::id id = std::this_thread::get_id(); local
20 assert(id != std::thread::id());
  /external/bison/src/
named-ref.h 31 uniqstr id; member in struct:named_ref
38 named_ref *named_ref_new (uniqstr id, location loc);
  /external/clang/test/Modules/Inputs/
weird_objc.h 1 typedef struct objc_object { void *super; int wibble; } *id; typedef in typeref:struct:objc_object
  /external/clang/test/SemaCXX/
builtin_objc_msgSend.cpp 6 typedef struct objc_object *id; typedef in typeref:struct:objc_object
8 extern "C" __attribute__((visibility("default"))) id objc_msgSend(id self, SEL op, ...)
14 objc_msgSend((id)object, SEL_release);
cxx0x-constexpr-const.cpp 4 constexpr int id(int x) { return x; } function
8 int (*idp)(int) = id;
  /external/icu4c/common/
locbased.cpp 17 const char* id = getLocaleID(type, status); local
18 return Locale((id != 0) ? id : "");
  /external/openssl/crypto/x509v3/
pcy_data.c 78 /* Create a data based on an existing policy. If 'id' is NULL use the
79 * oid in the policy, otherwise use 'id'. This behaviour covers the two
81 * and additional data with just the qualifiers of anyPolicy and ID from
89 ASN1_OBJECT *id; local
94 id = OBJ_dup(cid);
95 if (!id)
99 id = NULL;
107 if (id)
108 ASN1_OBJECT_free(id);
117 if (id)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/thread/pthread/
SDL_sysmutex_c.h 28 pthread_mutex_t id; member in struct:SDL_mutex
  /external/qemu/distrib/sdl-1.2.15/src/thread/riscos/
SDL_sysmutex_c.h 29 pthread_mutex_t id; member in struct:SDL_mutex
  /external/regex-re2/
testinstall.cc 13 int id; local
14 f.Add("a.*b.*c", RE2::DefaultOptions, &id);
  /external/svox/pico/lib/
picoknow.c 54 this->id = PICOKNOW_KBID_NULL;
65 picoos_uint8 id; local
67 id = (*this)->id;
68 PICODBG_TRACE(("disposing KnowledgeBase id=%i",id));
  /external/webkit/Source/WebKit/chromium/src/
WebInputEvent.cpp 151 const char* id = staticKeyIdentifiers(windowsKeyCode); local
152 if (id) {
153 strncpy(keyIdentifier, id, sizeof(keyIdentifier) - 1);
  /ndk/sources/cxx-stl/llvm-libc++/test/localization/locales/locale.global.templates/
has_facet.pass.cpp 20 static std::locale::id id; member in struct:my_facet
23 std::locale::id my_facet::id; member in class:my_facet
  /bionic/libc/kernel/common/linux/netfilter/
xt_realm.h 22 u_int32_t id; member in struct:xt_realm_info
  /development/ndk/platforms/android-3/include/linux/netfilter/
xt_realm.h 16 u_int32_t id; member in struct:xt_realm_info
  /external/chromium/chrome/browser/
resources_util_unittest.cc 14 int id; member in struct:__anon4337::TestCase
27 EXPECT_EQ(kTestCases[i].id,
  /external/clang/test/Sema/
builtin_objc_msgSend.c 8 } *id; typedef in typeref:struct:objc_object
12 extern id objc_msgSend(id self, SEL op, ...);
  /external/clang/test/SemaTemplate/
explicit-specialization-member.cpp 18 static locale::id id; // expected-error{{use of undeclared identifier}} member in class:PR6161::numpunct
  /external/iptables/include/linux/netfilter/
xt_realm.h 7 __u32 id; member in struct:xt_realm_info
  /external/junit/src/junit/runner/
Version.java 11 public static String id() { method in class:Version
18 System.out.println(id()); method

Completed in 2222 milliseconds

1 2 3 4 5 6 7 8 91011>>