HomeSort by relevance Sort by last modified time
    Searched full:start (Results 251 - 275 of 32553) sorted by null

<<11121314151617181920>>

  /external/chromium_org/mojo/system/
waiter_list_unittest.cc 27 // Cancel immediately after thread start.
32 thread.Start();
38 // Cancel before after thread start.
44 thread.Start();
48 // Cancel some time after thread start.
53 thread.Start();
64 // Awake immediately after thread start.
69 thread.Start();
77 // Awake before after thread start.
87 thread.Start();
    [all...]
  /external/chromium_org/third_party/bintrees/bintrees/
treeslice.py 13 def __init__(self, tree, start, stop):
15 self._start = start
37 return self._subslice(key.start, key.stop)
43 def _subslice(self, start, stop):
45 if start is None:
48 return start
50 return max(start, self._start)
  /external/chromium_org/third_party/leveldatabase/src/util/
comparator.cc 30 std::string* start,
33 size_t min_length = std::min(start->size(), limit.size());
36 ((*start)[diff_index] == limit[diff_index])) {
43 uint8_t diff_byte = static_cast<uint8_t>((*start)[diff_index]);
46 (*start)[diff_index]++;
47 start->resize(diff_index + 1);
48 assert(Compare(*start, limit) < 0);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_render_translate.c 32 unsigned *start, unsigned count)
45 *start, count, ptr);
48 *start = out_offset / 2;
58 index_offset, *start,
61 *start = out_offset / 2;
72 index_offset, *start,
75 *start = out_offset / 4;
  /external/chromium_org/third_party/tcmalloc/chromium/src/
malloc_hook_mmap_linux.h 80 static inline void* do_mmap64(void *start, size_t length,
85 return (void *)syscall(SYS_mmap, start, length, prot, flags, fd, offset);
93 static inline void* do_mmap64(void *start, size_t length,
112 start, length, prot, flags, fd,
132 int32 args[6] = { (int32) start, (int32) length, prot, flags, fd,
165 void* mmap64(void *start, size_t length, int prot, int flags,
168 void* mmap(void *start, size_t length,int prot, int flags,
171 int munmap(void* start, size_t length) __THROW
182 extern "C" void* mmap64(void *start, size_t length, int prot, int flags,
184 MallocHook::InvokePreMmapHook(start, length, prot, flags, fd, offset)
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
malloc_hook_mmap_linux.h 56 static inline void* do_mmap64(void *start, size_t length,
59 return sys_mmap(start, length, prot, flags, fd, offset);
67 static inline void* do_mmap64(void *start, size_t length,
86 start, length, prot, flags, fd,
106 int32 args[6] = { (int32) start, (int32) length, prot, flags, fd,
139 void* mmap64(void *start, size_t length, int prot, int flags,
142 void* mmap(void *start, size_t length,int prot, int flags,
145 int munmap(void* start, size_t length) __THROW
154 extern "C" void* mmap64(void *start, size_t length, int prot, int flags,
156 MallocHook::InvokePreMmapHook(start, length, prot, flags, fd, offset)
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/core/timeline/
event.py 8 thread_start, thread_duration and thread_end are the start time, duration
15 def __init__(self, category, name, start, duration, thread_start=None,
19 self.start = start
27 return self.start + self.duration
45 return ("TimelineEvent(name='%s', start=%f, duration=%s, " +
48 self.start,
  /external/guava/guava-tests/test/com/google/common/collect/
ComparisonChainTest.java 42 assertEquals(0, ComparisonChain.start().result());
46 assertEquals(0, ComparisonChain.start()
52 assertEquals(0, ComparisonChain.start()
58 assertEquals(0, ComparisonChain.start()
69 assertTrue(ComparisonChain.start()
76 assertTrue(ComparisonChain.start()
83 assertTrue(ComparisonChain.start()
  /external/mesa3d/src/gallium/drivers/r300/
r300_render_translate.c 32 unsigned *start, unsigned count)
45 *start, count, ptr);
48 *start = out_offset / 2;
58 index_offset, *start,
61 *start = out_offset / 2;
72 index_offset, *start,
75 *start = out_offset / 4;
  /external/chromium_org/v8/test/cctest/
test-dtoa.cc 47 int len = StrLength(representation.start());
67 CHECK_EQ("0", buffer.start());
72 CHECK_EQ("0", buffer.start());
77 CHECK_EQ("0", buffer.start());
81 CHECK_EQ("1", buffer.start());
87 CHECK_EQ("1", buffer.start());
93 CHECK_EQ("1", buffer.start());
97 CHECK_EQ("15", buffer.start());
103 CHECK_EQ("15", buffer.start());
109 CHECK_EQ("15", buffer.start());
    [all...]
  /external/v8/test/cctest/
test-dtoa.cc 47 int len = StrLength(representation.start());
67 CHECK_EQ("0", buffer.start());
72 CHECK_EQ("0", buffer.start());
77 CHECK_EQ("0", buffer.start());
81 CHECK_EQ("1", buffer.start());
87 CHECK_EQ("1", buffer.start());
93 CHECK_EQ("1", buffer.start());
97 CHECK_EQ("15", buffer.start());
103 CHECK_EQ("15", buffer.start());
109 CHECK_EQ("15", buffer.start());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
PathTraversalState.cpp 35 static inline float distanceLine(const FloatPoint& start, const FloatPoint& end)
37 return sqrtf((end.x() - start.x()) * (end.x() - start.x()) + (end.y() - start.y()) * (end.y() - start.y()));
43 : start(s)
51 return distanceLine(start, control) + distanceLine(control, end);
56 left.control = midPoint(start, control);
61 right.start = leftControlToRightControl;
63 left.start = start
67 FloatPoint start; member in struct:WebCore::QuadraticBezier
104 FloatPoint start; member in struct:WebCore::CubicBezier
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
ApplyStyleCommand.cpp 125 , m_start(endingSelection().start().downstream())
134 ApplyStyleCommand::ApplyStyleCommand(Document& document, const EditingStyle* style, const Position& start, const Position& end, EditAction editingAction, EPropertyLevel propertyLevel)
139 , m_start(start)
153 , m_start(endingSelection().start().downstream())
167 , m_start(endingSelection().start().downstream())
191 return endingSelection().start();
239 Position start = startPosition(); local
241 if (comparePositions(end, start) < 0) {
242 Position swap = start;
243 start = end
550 Position start = startPosition(); local
733 RefPtr<Node> start; member in struct:WebCore::InlineRunToApplyStyle
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
ByteArray.java 37 /** <code>&gt;= 0</code>; start index of the slice (inclusive) */
38 private final int start; field in class:ByteArray
41 * <code>end - start</code> (in the constructor) */
48 * @param start <code>&gt;= 0</code>; start index of the slice (inclusive)
49 * @param end <code>&gt;= start, &lt;= bytes.length</code>; end index of
52 public ByteArray(byte[] bytes, int start, int end) {
57 if (start < 0) {
58 throw new IllegalArgumentException("start < 0");
61 if (end < start) {
    [all...]
  /external/chromium/chrome/browser/sync/glue/
data_type_controller.h 30 // previously been stopped. Must be in this state to start.
44 // start for this type for this user as
46 BUSY, // Start() was called while already in progress.
49 ABORTED, // Start was aborted by calling Stop().
63 // Begins asynchronous start up of this data type. Start up will
68 // possible start results.
69 virtual void Start(StartCallback* start_callback) = 0;
71 // Synchronously stops the data type. If called after Start() is
72 // called but before the start callback is called, the start i
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
titletrn.cpp 78 if (offsets.start >= offsets.limit) {
90 // in which case we want to start in toLower mode. If the
91 // prior context is anything else (including empty) then start
94 int32_t start; local
95 for (start = offsets.start - 1; start >= offsets.contextStart; start -= U16_LENGTH(c)) {
96 c = text.char32At(start);
113 csc.start = offsets.contextStart
    [all...]
  /external/icu4c/i18n/
titletrn.cpp 79 if (offsets.start >= offsets.limit) {
91 // in which case we want to start in toLower mode. If the
92 // prior context is anything else (including empty) then start
95 int32_t start; local
96 for (start = offsets.start - 1; start >= offsets.contextStart; start -= U16_LENGTH(c)) {
97 c = text.char32At(start);
114 csc.start = offsets.contextStart
    [all...]
  /external/kernel-headers/original/linux/
ioport.h 18 resource_size_t start; member in struct:resource
107 int adjust_resource(struct resource *res, resource_size_t start,
114 #define request_region(start,n,name) __request_region(&ioport_resource, (start), (n), (name))
115 #define request_mem_region(start,n,name) __request_region(&iomem_resource, (start), (n), (name))
119 resource_size_t start,
123 #define release_region(start,n) __release_region(&ioport_resource, (start), (n))
124 #define check_mem_region(start,n) __check_region(&iomem_resource, (start), (n)
    [all...]
  /frameworks/base/core/java/android/print/
PageRange.java 23 * Represents a range of pages. The start and end page indices of
39 * @param start The start page index (zero based and inclusive).
42 * @throws IllegalArgumentException If start is less than zero or end
43 * is less than zero or start greater than end.
45 public PageRange(int start, int end) {
46 if (start < 0) {
47 throw new IllegalArgumentException("start cannot be less than zero.");
52 if (start > end) {
53 throw new IllegalArgumentException("start must be lesser than end.")
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/unittest2/
compatibility.py 15 def _relpath_nt(path, start=os.path.curdir):
20 start_list = os.path.abspath(start).split(os.path.sep)
24 unc_start, rest = os.path.splitunc(start)
27 % (path, start))
29 raise ValueError("path is on drive %s, start on drive %s"
31 # Work out how much of the filepath is shared by start and path.
44 def _relpath_posix(path, start=os.path.curdir):
50 start_list = os.path.abspath(start).split(os.path.sep)
53 # Work out how much of the filepath is shared by start and path.
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_split_prim.h 13 void (*emit)(void *priv, unsigned start, unsigned count);
17 unsigned start; member in struct:util_split_prim
28 unsigned mode, unsigned start, unsigned count)
37 s->start = start;
38 s->p_start = start;
39 s->p_end = start + count;
50 s->emit(s->priv, s->start, 1);
61 s->emit(s->priv, s->start, 1);
  /external/chromium_org/third_party/skia/src/views/animated/
SkScrollBarView.cpp 29 void SkScrollBarView::setStart(unsigned start)
31 if ((int)start < 0)
32 start = 0;
34 if (fStartPoint != start)
36 fStartPoint = start;
123 int start = fStartPoint; local
134 if (start + shown > total)
135 start = total - shown;
141 e.setScalar("_startPoint", SkIntToScalar(start));
  /external/chromium_org/tools/json_comment_eater/
json_comment_eater.py 20 def _FindNextToken(string, tokens, start):
21 '''Finds the next token in |tokens| that occurs in |string| from |start|.
26 index = string.find(k, start)
32 def _ReadString(input, start, output):
34 start_range, end_range = (start, input.find('"', start))
41 output.append(input[start:end_range + 1])
45 def _ReadComment(input, start, output):
47 eol_token_index, eol_token = _FindNextToken(input, eol_tokens, start)
  /external/chromium_org/ui/gfx/animation/
tween.h 33 // Conveniences for getting a value between a start and end point.
34 static SkColor ColorValueBetween(double value, SkColor start, SkColor target);
35 static double DoubleValueBetween(double value, double start, double target);
36 static float FloatValueBetween(double value, float start, float target);
38 // Interpolated between start and target, with every integer in this range
40 static int IntValueBetween(double value, int start, int target);
42 // Interpolates between start and target as real numbers, and rounds the
44 // positive infinity. This gives start and target half the weight of the
47 static int LinearIntValueBetween(double value, int start, int target);
  /external/icu4c/test/perf/strsrchperf/
strsrchperf.cpp 16 int32_t start, end; local
33 start = ubrk_preceding(brk, 1000);
34 end = ubrk_following(brk, start);
35 pttrnLen = end - start;
38 temp[i] = src[start++];
44 start = 0;
46 for(end = start; ; end += 1) {
54 pttrnLen = end - start;
57 temp[i] = src[start++];

Completed in 1238 milliseconds

<<11121314151617181920>>