HomeSort by relevance Sort by last modified time
    Searched refs:count (Results 151 - 175 of 13208) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/apache-http/src/org/apache/http/impl/io/
HttpTransportMetricsImpl.java 51 public void setBytesTransferred(long count) {
52 this.bytesTransferred = count;
55 public void incrementBytesTransferred(long count) {
56 this.bytesTransferred += count;
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
unity_service.h 15 void SetDownloadCount(int count);
  /external/chromium_org/third_party/skia/src/animator/
SkDrawDash.cpp 31 int count = intervals.count(); local
32 if (count == 0)
34 return new SkDashPathEffect(intervals.begin(), count, phase);
  /external/chromium_org/third_party/skia/src/opts/
SkBitmapProcState_opts_SSE2.h 14 int count, uint32_t* colors);
17 int count, uint32_t* colors);
18 void Color32_SSE2(SkPMColor dst[], const SkPMColor src[], int count,
21 int count, int x, int y);
23 uint32_t xy[], int count, int x, int y);
25 uint32_t xy[], int count, int x, int y);
27 uint32_t xy[], int count, int x, int y);
30 int count, uint16_t* colors);
SkUtils_opts_SSE2.cpp 13 void sk_memset16_SSE2(uint16_t *dst, uint16_t value, int count)
15 SkASSERT(dst != NULL && count >= 0);
20 if (count >= 32) {
23 --count;
27 while (count >= 32) {
33 count -= 32;
37 while (count > 0) {
39 --count;
43 void sk_memset32_SSE2(uint32_t *dst, uint32_t value, int count)
45 SkASSERT(dst != NULL && count >= 0)
    [all...]
SkUtils_opts_SSE2.h 12 void sk_memset16_SSE2(uint16_t *dst, uint16_t value, int count);
13 void sk_memset32_SSE2(uint32_t *dst, uint32_t value, int count);
  /external/chromium_org/third_party/skia/src/utils/
SkCountdown.cpp 11 SkCountdown::SkCountdown(int32_t count)
12 : fCount(count) {}
14 void SkCountdown::reset(int32_t count) {
15 fCount = count;
  /external/chromium_org/tools/traceline/traceline/scripts/
split.py 15 count = 0
19 count += 1
20 if count == 40000:
22 count = 0
  /external/javasqlite/src/main/java/SQLite/
BusyHandler.java 16 * @param count number of times the table was locked
19 public boolean busy(String table, int count);
  /external/libvorbis/test/
write_read.h 21 const float * data, int count, int ch) ;
27 float * data, int count) ;
  /external/llvm/test/CodeGen/SystemZ/Large/
spill-02.py 38 count = 14 variable
39 for i in range(count):
47 for i in range(count):
67 for i in range(count):
  /external/skia/src/animator/
SkDrawDash.cpp 31 int count = intervals.count(); local
32 if (count == 0)
34 return new SkDashPathEffect(intervals.begin(), count, phase);
  /external/skia/src/opts/
SkBitmapProcState_opts_SSE2.h 14 int count, uint32_t* colors);
17 int count, uint32_t* colors);
18 void Color32_SSE2(SkPMColor dst[], const SkPMColor src[], int count,
21 int count, int x, int y);
23 uint32_t xy[], int count, int x, int y);
25 uint32_t xy[], int count, int x, int y);
27 uint32_t xy[], int count, int x, int y);
30 int count, uint16_t* colors);
SkUtils_opts_SSE2.cpp 13 void sk_memset16_SSE2(uint16_t *dst, uint16_t value, int count)
15 SkASSERT(dst != NULL && count >= 0);
20 if (count >= 32) {
23 --count;
27 while (count >= 32) {
33 count -= 32;
37 while (count > 0) {
39 --count;
43 void sk_memset32_SSE2(uint32_t *dst, uint32_t value, int count)
45 SkASSERT(dst != NULL && count >= 0)
    [all...]
SkUtils_opts_SSE2.h 12 void sk_memset16_SSE2(uint16_t *dst, uint16_t value, int count);
13 void sk_memset32_SSE2(uint32_t *dst, uint32_t value, int count);
  /external/skia/src/utils/
SkCountdown.cpp 11 SkCountdown::SkCountdown(int32_t count)
12 : fCount(count) {}
14 void SkCountdown::reset(int32_t count) {
15 fCount = count;
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/
UnsafeByteSequence.java 32 private int count; field in class:UnsafeByteSequence
39 return count;
47 count = 0;
51 if (count + length >= bytes.length) {
52 byte[] newBytes = new byte[(count + length) * 2];
53 System.arraycopy(bytes, 0, newBytes, 0, count);
56 System.arraycopy(buffer, offset, bytes, count, length);
57 count += length;
61 if (count == bytes.length) {
62 byte[] newBytes = new byte[count * 2]
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.collate/locale.collate/
ctor.pass.cpp 25 static int count; member in class:my_facet
28 : std::collate<C>(refs) {++count;}
30 ~my_facet() {--count;}
33 template <class C> int my_facet<C>::count = 0; member in class:my_facet
39 assert(my_facet<char>::count == 1);
41 assert(my_facet<char>::count == 0);
44 assert(my_facet<char>::count == 1);
47 assert(my_facet<char>::count == 1);
49 assert(my_facet<char>::count == 1);
51 assert(my_facet<char>::count == 0)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/facet.numpunct/locale.numpunct/
ctor.pass.cpp 24 static int count; member in class:my_facet
27 : std::numpunct<C>(refs) {++count;}
29 ~my_facet() {--count;}
32 template <class C> int my_facet<C>::count = 0; member in class:my_facet
38 assert(my_facet<char>::count == 1);
40 assert(my_facet<char>::count == 0);
43 assert(my_facet<char>::count == 1);
46 assert(my_facet<char>::count == 1);
48 assert(my_facet<char>::count == 1);
50 assert(my_facet<char>::count == 0)
    [all...]
  /external/expat/tests/
chardata.c 38 storage->count = -1;
49 if (storage->count < 0)
50 storage->count = 0;
51 if ((len + storage->count) > maxchars) {
52 len = (maxchars - storage->count);
54 if (len + storage->count < sizeof(storage->data)) {
55 memcpy(storage->data + storage->count, s, len);
56 storage->count += len;
68 if (storage->count < 0)
69 storage->count = 0
87 int count; local
116 int count; local
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultisetSetCountUnconditionallyTester.java 31 @Override void setCountCheckReturnValue(E element, int count) {
32 assertEquals("multiset.setCount() should return the old count",
33 getMultiset().count(element), setCount(element, count));
36 @Override void setCountNoCheckReturnValue(E element, int count) {
37 setCount(element, count);
40 private int setCount(E element, int count) {
41 return getMultiset().setCount(element, count);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.mod/
assign_F_alloc.pass.cpp 25 static int count; member in class:A
29 ++count;
34 A(const A&) {++count;}
36 ~A() {--count;}
48 int A::count = 0; member in class:A
55 assert(A::count == 1);
59 assert(A::count == 0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/
move03.fail.cpp 23 static int count; member in struct:A
24 A() {++count;}
25 A(const A&) {++count;}
26 ~A() {--count;}
29 int A::count = 0; member in class:A
53 assert(A::count == 1);
55 assert(A::count == 0);
move04.fail.cpp 23 static int count; member in struct:A
24 A() {++count;}
25 A(const A&) {++count;}
26 ~A() {--count;}
29 int A::count = 0; member in class:A
53 assert(A::count == 1);
55 assert(A::count == 0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
move03.fail.cpp 23 static int count; member in struct:A
24 A() {++count;}
25 A(const A&) {++count;}
26 ~A() {--count;}
29 int A::count = 0; member in class:A
52 assert(A::count == 1);
54 assert(A::count == 0);

Completed in 398 milliseconds

1 2 3 4 5 67 8 91011>>