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

1 2 3 4

  /external/smack/src/org/jivesoftware/smackx/
OfflineMessageHeader.java 29 * Each offline message is identified by the target user of the offline message and a unique stamp.
44 * Stamp that uniquely identifies the offline message. This stamp will be used for
45 * getting the specific message or delete it. The stamp may be of the form UTC timestamps
48 private String stamp; field in class:OfflineMessageHeader
54 stamp = item.getNode();
76 * Returns the stamp that uniquely identifies the offline message. This stamp will
77 * be used for getting the specific message or delete it. The stamp may be of the
80 * @return the stamp that uniquely identifies the offline message
    [all...]
  /external/smack/src/org/jivesoftware/smackx/provider/
DelayInformationProvider.java 42 String stampString = (parser.getAttributeValue("", "stamp"));
43 Date stamp = null; local
46 stamp = StringUtils.parseDate(stampString);
54 if (stamp == null) {
55 stamp = new Date(0);
60 DelayInformation delayInformation = new DelayInformation(stamp);
  /external/chromium/chrome/browser/extensions/
convert_web_app.cc 73 double stamp = day_fraction * std::numeric_limits<uint16>::max(); local
76 stamp = stamp >= (floor(stamp) + 0.5) ? (stamp + 1) : stamp;
82 static_cast<uint16>(stamp));
  /external/chromium_org/chrome/browser/extensions/
convert_web_app.cc 75 double stamp = day_fraction * std::numeric_limits<uint16>::max(); local
78 stamp = stamp >= (floor(stamp) + 0.5) ? (stamp + 1) : stamp;
84 static_cast<uint16>(stamp));
  /external/chromium_org/third_party/libjingle/source/talk/examples/call/
presencepushtask.cc 206 std::string stamp = delay->Attr(kQnStamp); local
207 s->set_sent_time(stamp);
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
presencereceivetask.cc 147 std::string stamp = delay->Attr(kQnStamp); local
148 presence_status->set_sent_time(stamp);
  /external/chromium_org/third_party/mesa/src/include/GL/internal/
sarea.h 62 unsigned int stamp; member in struct:_XF86DRISAREADrawable
  /external/mesa3d/include/GL/internal/
sarea.h 62 unsigned int stamp; member in struct:_XF86DRISAREADrawable
  /external/smack/src/org/jivesoftware/smackx/packet/
DelayInformation.java 57 private Date stamp; field in class:DelayInformation
63 * @param stamp the timestamp
65 public DelayInformation(Date stamp) {
67 this.stamp = stamp;
98 return stamp;
133 buf.append(" stamp=\"");
135 buf.append(XEP_0091_UTC_FORMAT.format(stamp));
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicStampedReference.java 11 * along with an integer "stamp", that can be updated atomically.
25 final int stamp; field in class:AtomicStampedReference.Pair
26 private Pair(T reference, int stamp) {
28 this.stamp = stamp;
30 static <T> Pair<T> of(T reference, int stamp) {
31 return new Pair<T>(reference, stamp);
42 * @param initialStamp the initial stamp
58 * Returns the current value of the stamp.
60 * @return the current value of the stamp
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_bridge/
ebt_ulog.h 26 struct timeval stamp; member in struct:ebt_ulog_packet_msg
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_bridge/
ebt_ulog.h 26 struct timeval stamp; member in struct:ebt_ulog_packet_msg
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_bridge/
ebt_ulog.h 26 struct timeval stamp; member in struct:ebt_ulog_packet_msg
  /external/chromium/third_party/libjingle/source/talk/examples/call/
presencepushtask.cc 208 std::string stamp = delay->Attr(kQnStamp); local
209 s->set_sent_time(stamp);
  /external/chromium_org/third_party/libjingle/source/talk/examples/plus/
presencepushtask.cc 162 std::string stamp = delay->Attr(kQnStamp); local
163 s.set_sent_time(stamp);
  /external/emma/core/java12/com/vladium/emma/data/
ClassDescriptor.java 29 public ClassDescriptor (final String packageVMName, final String name, final long stamp,
50 m_stamp = stamp;
174 final long stamp = in.readLong (); local
186 return new ClassDescriptor (packageVMName, name, stamp, srcFileName, methods);
CoverageData.java 71 public void addClass (final boolean [][] coverage, final String classVMName, final long stamp)
73 m_coverageMap.put (classVMName, new DataHolder (coverage, stamp));
172 final long stamp = in.readLong (); local
181 coverageMap.put (classVMName, new DataHolder (coverage, stamp));
  /external/libpcap/
pcap-pf.c 95 struct enstamp stamp; local
161 sp = &stamp;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/common/
dri_util.h 245 * Last value of the stamp.
247 * If this differs from the value stored at __DRIdrawable::dri2.stamp,
259 unsigned int stamp; member in struct:__DRIdrawableRec::__anon15048
  /external/chromium_org/v8/src/
date.h 61 // Sentinel that denotes an invalid cache stamp.
62 // It is an invariant of DateCache that cache stamp is non-negative.
72 // Clears cached timezone information and increments the cache stamp.
175 // Cache stamp is used for invalidating caches in JSDate.
176 // We increment the stamp each time when the timezone information changes.
177 // JSDate objects perform stamp check and invalidate their caches if
178 // their saved stamp is not equal to the current stamp.
179 Smi* stamp() { return stamp_; } function in class:v8::internal::DateCache
  /external/mesa3d/src/mesa/drivers/dri/common/
dri_util.h 245 * Last value of the stamp.
247 * If this differs from the value stored at __DRIdrawable::dri2.stamp,
259 unsigned int stamp; member in struct:__DRIdrawableRec::__anon25413
  /external/qemu/android/camera/
camera-common.h 197 const uint64_t stamp = _get_timestamp(); local
198 if ((stamp / 1000) >= (wake_at / 1000)) {
201 t.tv_sec = (wake_at - stamp) / 1000000;
202 t.tv_usec = (wake_at - stamp) - (uint64_t)t.tv_sec * 1000000;
  /external/v8/src/
date.h 61 // Sentinel that denotes an invalid cache stamp.
62 // It is an invariant of DateCache that cache stamp is non-negative.
72 // Clears cached timezone information and increments the cache stamp.
175 // Cache stamp is used for invalidating caches in JSDate.
176 // We increment the stamp each time when the timezone information changes.
177 // JSDate objects perform stamp check and invalidate their caches if
178 // their saved stamp is not equal to the current stamp.
179 Smi* stamp() { return stamp_; } function in class:v8::internal::DateCache
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/android/
native_android.cpp 76 uint stamp; member in struct:android_surface
369 asurf->stamp++;
371 &asurf->base, asurf->stamp);
470 *seq_num = asurf->stamp;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
vg_context.h 68 int32_t stamp; member in struct:st_framebuffer

Completed in 1745 milliseconds

1 2 3 4