HomeSort by relevance Sort by last modified time
    Searched defs:id (Results 376 - 400 of 4561) sorted by null

<<11121314151617181920>>

  /external/chromium_org/ui/gfx/
sequential_id_generator.cc 43 int id = GetNextAvailableID(); local
44 number_to_id_.insert(std::make_pair(number, id));
45 id_to_number_.insert(std::make_pair(id, number));
46 return id;
53 void SequentialIDGenerator::ReleaseGeneratedID(uint32 id) {
54 UpdateNextAvailableIDAfterRelease(id);
55 Remove(id, &id_to_number_, &number_to_id_);
75 void SequentialIDGenerator::UpdateNextAvailableIDAfterRelease(uint32 id) {
76 if (id < min_available_id_) {
77 min_available_id_ = id;
    [all...]
  /external/chromium_org/ui/surface/
transport_dib_posix.cc 61 bool TransportDIB::is_valid_id(Id id) {
63 return is_valid_handle(id);
65 return id != 0;
103 TransportDIB::Id TransportDIB::id() const { function in class:TransportDIB
107 return shared_memory_.id();
transport_dib_win.cc 62 bool TransportDIB::is_valid_id(TransportDIB::Id id) {
63 return is_valid_handle(id.handle);
110 TransportDIB::Id TransportDIB::id() const { function in class:TransportDIB
111 return Id(handle(), sequence_num_);
  /external/chromium_org/win8/metro_driver/
toast_notification_handler.h 23 std::string id; member in struct:ToastNotificationHandler::DesktopNotification
  /external/clang/lib/StaticAnalyzer/Checkers/
BuiltinFunctionChecker.cpp 40 unsigned id = FD->getBuiltinID(); local
42 if (!id)
45 switch (id) {
  /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/dropbear/libtomcrypt/testprof/
tomcrypt_test.h 45 int id; member in struct:list
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
PlatformStatus.java 22 private String id; field in class:PlatformStatus
30 this.id = (String) attributes.getNamedItem("id").getNodeValue();
37 * Gets the id.
41 return id;
  /external/elfutils/libdwfl/
dwfl_build_id_find_elf.c 1 /* Find an ELF file for a module from its build ID.
66 const uint8_t *id = mod->build_id_bits; local
68 /* Search debuginfo_path directories' .build-id/ subdirectories. */
70 char id_name[sizeof "/.build-id/" + 1 + id_len * 2 + sizeof ".debug" - 1];
71 strcpy (id_name, "/.build-id/");
72 int n = snprintf (&id_name[sizeof "/.build-id/" - 1],
73 4, "%02" PRIx8 "/", (uint8_t) id[0]);
77 n = snprintf (&id_name[sizeof "/.build-id/" - 1 + 3 + (i - 1) * 2],
78 3, "%02" PRIx8, (uint8_t) id[i]);
82 strcpy (&id_name[sizeof "/.build-id/" - 1 + 3 + (id_len - 1) * 2]
    [all...]
  /external/fdlibm/
s_atan.c 93 int ix,hx,id; local
107 id = -1;
112 id = 0; x = (2.0*x-one)/(2.0+x);
114 id = 1; x = (x-one)/(x+one);
118 id = 2; x = (x-1.5)/(one+1.5*x);
120 id = 3; x = -1.0/x;
129 if (id<0) return x - x*(s1+s2);
131 z = atanhi[id] - ((x*(s1+s2) - atanlo[id]) - x);
  /external/icu4c/test/intltest/
idnaconf.h 38 UnicodeString id; // for debug & error output member in class:IdnaConfTest
  /external/iproute2/tc/
f_route.c 62 __u32 id; local
64 if (rtnl_rtrealm_a2n(&id, *argv)) {
68 addattr_l(n, 4096, TCA_ROUTE4_TO, &id, 4);
70 fh |= id&0xFF;
72 __u32 id; local
74 if (rtnl_rtrealm_a2n(&id, *argv)) {
78 addattr_l(n, 4096, TCA_ROUTE4_FROM, &id, 4);
80 fh |= id<<16;
82 __u32 id; local
85 if ((id=ll_name_to_index(*argv)) <= 0)
    [all...]
m_pedit.h 45 char id[PEDITKINDSIZ]; member in struct:m_pedit_util
  /external/ipsec-tools/src/racoon/
schedule.h 3 /* Id: schedule.h,v 1.5 2006/05/03 21:53:42 vanhu Exp */
52 long id; /* for debug */ member in struct:sched
73 long id; member in struct:scheddump
  /external/iptables/extensions/
libxt_LED.c 26 {.name = "led-trigger-id", .id = O_LED_TRIGGER_ID,
28 .max = sizeof(((struct xt_led_info *)NULL)->id) -
30 {.name = "led-delay", .id = O_LED_DELAY, .type = XTTYPE_STRING},
31 {.name = "led-always-blink", .id = O_LED_ALWAYS_BLINK,
41 "--led-trigger-id name suffix for led trigger name\n"
54 switch (cb->entry->id) {
56 strcpy(led->id, "netfilter-");
57 strcat(led->id, cb->arg);
75 const char *id = led->id + strlen("netfilter-"); /* trim off prefix * local
98 const char *id = led->id + strlen("netfilter-"); \/* trim off prefix *\/ local
    [all...]
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
BinaryIdContentPair.java 37 private int id; field in class:BinaryIdContentPair
40 BinaryIdContentPair(int id, BinaryOutputCapsule content) {
41 this.id = id;
54 return id;
57 void setId(int id) {
58 this.id = id;
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/message/
ClientRegistrationMessage.java 39 * Client registration is a message that contains a unique ID. This ID
49 private long id; field in class:ClientRegistrationMessage
54 return id;
57 public void setId(long id) {
58 this.id = id;
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/
SerializerRegistration.java 37 * its serializer. It also includes the class ID, as a short.
43 private short id; field in class:SerializerRegistration
46 public SerializerRegistration(Serializer serializer, Class cls, short id) {
49 this.id = id;
62 * Get the ID.
64 * @return The ID.
67 return id;
80 return "SerializerRegistration[" + id + ", " + type + ", " + serializer + "]";
  /external/kernel-headers/original/media/
tegra_camera.h 29 uint id; member in struct:tegra_camera_clk_info
  /external/libmtp/examples/
thumb.c 48 uint32_t id = 0; local
63 id = strtoul(optarg, &rest, 0);
118 ret = LIBMTP_Send_Representative_Sample(device,id,thumb);
  /external/libnfc-nci/src/nfc/nfc/
nfc_utils.c 68 ** Description This function is called to set the connection id to the
69 ** connection control block and the id mapping table
97 tNFC_CONN_CB * nfc_find_conn_cb_by_handle (UINT8 id)
104 if (nfc_cb.conn_cb[xx].id == id)
118 ** the given connection id
127 UINT8 id; local
143 id = conn_id & NFC_CONN_ID_ID_MASK;
144 if (id < NFC_MAX_CONN_ID)
146 handle = nfc_cb.conn_id[id];
    [all...]
  /external/llvm/include/llvm/CodeGen/
LiveInterval.h 47 /// The ID number of this value.
48 unsigned id; member in class:llvm::VNInfo
55 : id(i), def(d)
60 : id(i), def(orig.def)
225 return VNI && VNI->id < getNumValNums() && VNI == getValNumInfo(VNI->id);
665 unsigned getEqClass(const VNInfo *VNI) const { return EqClass[VNI->id]; }
  /external/llvm/lib/Target/NVPTX/
NVPTXSplitBBatBar.cpp 26 char NVPTXSplitBBatBar::ID = 0;
43 Intrinsic::ID id = inst->getIntrinsicID(); local
46 if (llvm::isBarrierIntrinsic(id)) {
  /external/llvm/unittests/ExecutionEngine/JIT/
IntelJITEventListenerTest.cpp 68 static unsigned int id = 0; local
69 return ++id;
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_fence.h 44 unsigned id; member in struct:lp_fence

Completed in 807 milliseconds

<<11121314151617181920>>