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

1 2 3 4 5 6 7 8 91011>>

  /external/strace/xlat/
cap.h 1 /* Generated by ./xlat/gen.sh from ./xlat/cap.in; do not edit. */
3 static const struct xlat cap[] = { variable in typeref:struct:xlat
  /external/v8/test/mjsunit/regress/
regress-crbug-3184.js 53 String.prototype.cap = function() {
57 String.prototype.cap = String.prototype.cap.wrap(
62 return value.cap();
81 assertEquals("Test1 test1", "test1 test1".cap());
82 assertEquals("Test2 Test2", "test2 test2".cap(true));
  /external/libcxx/test/std/utilities/function.objects/func.memfn/
member_data.fail.cpp 33 const A* cap = ap; local
34 assert(f(cap) == f(ap));
35 f(cap) = 7;
member_data.pass.cpp 33 const A* cap = ap; local
34 assert(f(cap) == f(ap));
member_function_const.pass.cpp 34 const A* cap = &a; local
35 assert(f(cap) == 'a');
50 const A* cap = &a; local
51 assert(f(cap, 2) == 'b');
66 const A* cap = &a; local
67 assert(f(cap, 2, 3.5) == 'c');
member_function_const_volatile.pass.cpp 34 const volatile A* cap = &a; local
35 assert(f(cap) == 'a');
50 const volatile A* cap = &a; local
51 assert(f(cap, 2) == 'b');
66 const volatile A* cap = &a; local
67 assert(f(cap, 2, 3.5) == 'c');
member_function_volatile.pass.cpp 34 volatile A* cap = &a; local
35 assert(f(cap) == 'a');
50 volatile A* cap = &a; local
51 assert(f(cap, 2) == 'b');
66 volatile A* cap = &a; local
67 assert(f(cap, 2, 3.5) == 'c');
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.memfn/
member_data.fail.cpp 33 const A* cap = ap; local
34 assert(f(cap) == f(ap));
35 f(cap) = 7;
member_data.pass.cpp 33 const A* cap = ap; local
34 assert(f(cap) == f(ap));
member_function_const.pass.cpp 34 const A* cap = &a; local
35 assert(f(cap) == 'a');
50 const A* cap = &a; local
51 assert(f(cap, 2) == 'b');
66 const A* cap = &a; local
67 assert(f(cap, 2, 3.5) == 'c');
member_function_const_volatile.pass.cpp 34 const volatile A* cap = &a; local
35 assert(f(cap) == 'a');
50 const volatile A* cap = &a; local
51 assert(f(cap, 2) == 'b');
66 const volatile A* cap = &a; local
67 assert(f(cap, 2, 3.5) == 'c');
member_function_volatile.pass.cpp 34 volatile A* cap = &a; local
35 assert(f(cap) == 'a');
50 volatile A* cap = &a; local
51 assert(f(cap, 2) == 'b');
66 volatile A* cap = &a; local
67 assert(f(cap, 2, 3.5) == 'c');
  /external/sfntly/cpp/src/test/tinyxml/
tinystr.cpp 37 void TiXmlString::reserve (size_type cap)
39 if (cap > capacity())
42 tmp.init(length(), cap); local
51 size_type cap = capacity(); local
52 if (len > cap || cap > 3*(len + 8))
  /external/tinyxml/
tinystr.cpp 41 void TiXmlString::reserve (size_type cap)
43 if (cap > capacity())
46 tmp.init(length(), cap); local
55 size_type cap = capacity(); local
56 if (len > cap || cap > 3*(len + 8))
  /ndk/sources/cxx-stl/gabi++/src/
stdexcept.cc 41 std::size_t cap; member in struct:__anon27908::__libcpp_nmstr::_Rep_base
82 c->len = c->cap = len;
  /external/compiler-rt/lib/tsan/rtl/
tsan_vector.h 107 uptr cap = cap0 * 5 / 4; // 25% growth local
108 if (cap == 0)
109 cap = 16;
110 if (cap < size)
111 cap = size;
112 T *p = (T*)internal_alloc(typ_, cap * sizeof(T));
119 last_ = begin_ + cap;
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/joints/
Point2PointJoint.java 104 OutputCapsule cap = ex.getCapsule(this); local
105 cap.write(getDamping(), "damping", 1.0f);
106 cap.write(getTau(), "tau", 0.3f);
107 cap.write(getImpulseClamp(), "impulseClamp", 0f);
114 InputCapsule cap = im.getCapsule(this); local
115 setDamping(cap.readFloat("damping", 1.0f));
116 setDamping(cap.readFloat("tau", 0.3f));
117 setDamping(cap.readFloat("impulseClamp", 0f));
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/joints/
Point2PointJoint.java 92 OutputCapsule cap = ex.getCapsule(this); local
93 cap.write(getDamping(), "damping", 1.0f);
94 cap.write(getTau(), "tau", 0.3f);
95 cap.write(getImpulseClamp(), "impulseClamp", 0f);
102 InputCapsule cap=im.getCapsule(this); local
103 setDamping(cap.readFloat("damping", 1.0f));
104 setDamping(cap.readFloat("tau", 0.3f));
105 setDamping(cap.readFloat("impulseClamp", 0f));
  /external/libdrm/libkms/
dumb.c 198 uint64_t cap = 0; local
200 ret = drmGetCap(fd, DRM_CAP_DUMB_BUFFER, &cap);
201 if (ret || cap == 0)
  /external/openssh/
uidswap.c 214 struct __user_cap_data_struct cap; local
293 cap.effective = cap.permitted = (1 << CAP_SYS_BOOT);
294 cap.inheritable = 0;
295 capset(&header, &cap);
  /external/toybox/toys/other/
acpi.c 66 int cap = 0, curr = 0, max = 0; local
68 if ((cap = read_int_at(dfd, "capacity")) < 0) {
73 if (max > 0 && curr >= 0) cap = 100 * curr / max;
75 if (cap >= 0) printf("Battery %d: %d%%\n", TT.bat++, cap);
  /system/core/base/
logging_test.cpp 89 CapturedStderr cap; local
91 ASSERT_EQ(0, lseek(cap.fd(), SEEK_SET, 0));
94 android::base::ReadFdToString(cap.fd(), &output);
102 CapturedStderr cap; local
104 ASSERT_EQ(0, lseek(cap.fd(), SEEK_SET, 0));
107 android::base::ReadFdToString(cap.fd(), &output);
115 CapturedStderr cap; local
117 ASSERT_EQ(0, lseek(cap.fd(), SEEK_SET, 0));
120 android::base::ReadFdToString(cap.fd(), &output);
126 CapturedStderr cap; local
141 CapturedStderr cap; local
157 CapturedStderr cap; local
    [all...]
  /external/boringssl/src/include/openssl/
bytestring.h 220 size_t cap; /* The size of buf. */ member in struct:cbb_buffer_st
  /external/pdfium/third_party/bigint/
NumberlikeArray.hh 37 Index cap; member in class:NumberlikeArray
44 NumberlikeArray(Index c) : cap(c), len(0) {
45 blk = (cap > 0) ? (new Blk[cap]) : NULL;
52 NumberlikeArray() : cap(0), len(0) {
79 Index getCapacity() const { return cap; }
103 if (c > cap) {
107 cap = c;
108 blk = new Blk[cap];
115 if (c > cap) {
    [all...]
  /external/skia/src/gpu/
GrTestUtils.cpp 227 SkPaint::Cap cap = SkPaint::Cap(random->nextULessThan(SkPaint::kCapCount)); local
230 rec.setStrokeParams(cap, join, miterLimit);

Completed in 2376 milliseconds

1 2 3 4 5 6 7 8 91011>>