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

<<11121314151617181920>>

  /external/chromium_org/tools/telemetry/telemetry/page/actions/
scroll.js 8 // 2. action.start(scroll_options)
80 ScrollAction.prototype.start = function(opt_options) {
swipe.js 40 SwipeAction.prototype.start = function(opt_options) {
tap.js 38 TapAction.prototype.start = function(opt_options) {
  /external/chromium_org/ui/base/ime/
composition_text_util_pango.cc 54 gint start, end; local
55 pango_attr_iterator_range(iter, &start, &end);
57 start = std::min(start, utf8_length);
59 if (start >= end)
62 start = g_utf8_pointer_to_offset(utf8_text, utf8_text + start);
66 start = std::min(start, char_length);
68 if (start >= end
    [all...]
  /external/chromium_org/ui/gfx/range/
range.h 30 // range of characters in a text selection. A range is made of a start and end
39 // Initializes the range with a start and end.
40 Range(size_t start, size_t end);
42 // Initializes the range with the same start and end positions.
61 size_t start() const { return start_; } function in class:gfx::Range
62 void set_start(size_t start) { start_ = start; }
69 ptrdiff_t length = end() - start();
73 bool is_reversed() const { return start() > end(); }
74 bool is_empty() const { return start() == end();
    [all...]
  /external/chromium_org/v8/test/cctest/
test-code-stubs-ia32.cc 59 byte* start = stub.GetCode(isolate)->instruction_start(); local
87 __ call(start, RelocInfo::EXTERNAL_REFERENCE);
  /external/chromium_org/v8/tools/testrunner/server/
daemon.py 81 def start(self): member in class:Daemon
83 Start the daemon
98 # Start the daemon
141 self.start()
146 called after the process has been daemonized by start() or restart().
  /external/clang/include/clang/ARCMigrate/
ARCMT.h 109 virtual void start(ASTContext &Ctx) { } function in class:clang::arcmt::MigrationProcess::RewriteListener
  /external/clang/lib/Analysis/
CocoaConventions.cpp 46 // Does the name start with the prefix?
99 StringRef::iterator start = it; local
103 // Scan for the start of 'create' or 'copy'.
109 if (ch == 'c' && it != start && isLetter(*(it - 1)))
123 StringRef suffix = functionName.substr(it - start);
  /external/clang/test/SemaTemplate/
array-to-pointer-decay.cpp 20 int start; member in struct:hb_sanitize_context_t
24 return !c->start;
  /external/compiler-rt/test/Unit/
clear_cache_test.c 16 void __clear_cache(void* start, void* end)
18 if (!FlushInstructionCache(GetCurrentProcess(), start, end-start))
23 extern void __clear_cache(void* start, void* end);
48 char* start = (char*)((uintptr_t)execution_buffer & (-4095)); local
53 if (!VirtualQuery(start, &b, sizeof(b)))
57 if (mprotect(start, end-start, PROT_READ|PROT_WRITE|PROT_EXEC) != 0)
  /external/dropbear/libtomcrypt/src/pk/asn1/der/set/
der_encode_setof.c 21 unsigned char *start; member in struct:edge
32 r = XMEMCMP(A->start, B->start, MIN(A->size, B->size));
37 if (A->start[x]) {
43 if (B->start[x]) {
111 /* store start */
112 edges[x].start = ptr;
143 XMEMCPY(out+y, edges[x].start, edges[x].size);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
UiPlugin.java 40 public void start(BundleContext context) throws Exception { method in class:UiPlugin
41 super.start(context);
  /external/eigen/bench/btl/generic_bench/timers/
STL_timer.hh 33 // Start a series of r trials:
34 void start(unsigned int r){ function in class:STL_Timer
41 // Start a series of r trials to determine baseline time:
45 start(r);
  /external/eigen/demos/opengl/
trackball.h 25 void start(Mode m = Around) { mMode = m; mLastPointOk = false; } function in class:Trackball
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
fdjac1.h 22 Index start, length; local
65 start = std::max<Index>(0,j-mu);
66 length = (std::min)(n-1, j+ml) - start + 1;
67 fjac.col(j).segment(start, length) = ( wa1.segment(start, length)-fvec.segment(start, length))/h;
  /external/elfutils/tests/
get-aranges.c 114 Dwarf_Addr start; local
118 if (dwarf_getarangeinfo (arange, &start, &length, &cu_offset)
126 printf (" [%2zu] start: %#llx, length: %llu, cu: %llu\n",
127 i, (unsigned long long int) start,
  /external/embunit/src/
stdImpl.c 39 char *start = dst; local
47 return start;
52 char *start = dst; local
65 return start;
70 char *start = dst; local
87 return start;
113 char *start = string; local
132 return start;
  /external/emma/core/java12/com/vladium/emma/rt/
RTCoverageDataPersister.java 48 final long start = info ? System.currentTimeMillis () : 0; local
61 log.info ("runtime coverage data " + (merge ? "merged into" : "written to") + " [" + outFile.getAbsolutePath () + "] {in " + (end - start) + " ms}");
  /external/expat/examples/
outline.c 49 start(void *data, const char *el, const char **attr) function
81 XML_SetElementHandler(p, start, end);
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
LocalPortForwarder.java 41 lat.start();
53 lat.start();
  /external/guava/guava/src/com/google/common/collect/
ComparisonChain.java 34 * return ComparisonChain.start()
60 public static ComparisonChain start() { method in class:ComparisonChain
  /external/guava/guava/src/com/google/common/util/concurrent/
ForwardingService.java 37 @Override public ListenableFuture<State> start() { method in class:ForwardingService
38 return delegate().start();
63 * {@link #start}. If you override {@link #start}, you may wish to override
68 return Futures.getUnchecked(start());
  /external/icu4c/common/
patternprops.cpp 179 int32_t start=0; local
181 while(start<limit && isWhiteSpace(s[start])) {
182 ++start;
184 if(start<limit) {
185 // There is non-white space at start; we will not move limit below that,
186 // so we need not test start<limit in the loop.
191 length=limit-start;
192 return s+start;
  /external/icu4c/i18n/
quant.cpp 67 int32_t start = offset; local
91 offset = start;

Completed in 323 milliseconds

<<11121314151617181920>>