/external/webkit/Source/WebKit/chromium/src/ |
WebURLLoadTiming.cpp | 71 void WebURLLoadTiming::setProxyStart(int start) 73 m_private->proxyStart = start; 91 void WebURLLoadTiming::setDNSStart(int start) 93 m_private->dnsStart = start; 111 void WebURLLoadTiming::setConnectStart(int start) 113 m_private->connectStart = start; 131 void WebURLLoadTiming::setSendStart(int start) 133 m_private->sendStart = start; 161 void WebURLLoadTiming::setSSLStart(int start) 163 m_private->sslStart = start; [all...] |
/external/linux-tools-perf/util/ |
svghelper.c | 74 void open_svg(const char *filename, int cpus, int rows, u64 start, u64 end) 83 first_time = start; 122 void svg_box(int Yslot, u64 start, u64 end, const char *type) 128 time2pixels(start), time2pixels(end)-time2pixels(start), Yslot * SLOT_MULT, SLOT_HEIGHT, type); 131 void svg_sample(int Yslot, int cpu, u64 start, u64 end) 138 time2pixels(start), time2pixels(end)-time2pixels(start), Yslot * SLOT_MULT, SLOT_HEIGHT); 140 text_size = (time2pixels(end)-time2pixels(start)); 149 time2pixels(start), Yslot * SLOT_MULT + SLOT_HEIGHT - 1, text_size, cpu + 1) [all...] |
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
CommonToken.java | 41 * start/stop are not affected by changing this. 49 protected int start; field in class:CommonToken 58 public CommonToken(CharStream input, int type, int channel, int start, int stop) { 62 this.start = start; 81 start = ((CommonToken)oldToken).start; 102 if ( start<n && stop<n) { 103 return input.substring(start,stop); 112 * that start/stop indexes are not valid. It means that that inpu [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...] |
android_pmem.h | 42 unsigned long start; member in struct:android_pmem_platform_data 62 int get_pmem_file(int fd, unsigned long *start, unsigned long *vstart, 64 int get_pmem_user_addr(struct file *file, unsigned long *start, 67 void flush_pmem_file(struct file *file, unsigned long start, unsigned long len); 76 static inline int get_pmem_file(int fd, unsigned long *start, 79 static inline int get_pmem_user_addr(struct file *file, unsigned long *start, 82 static inline void flush_pmem_file(struct file *file, unsigned long start,
|
/external/webkit/Source/WebKit/android/nav/ |
SelectText.cpp | 114 int bidiStart = bidiRun->start(); 120 UChar* start = &result[size]; local 121 UChar* end = start + bidiCount; 123 while (start < end) { 124 UChar temp = *start; 125 *start++ = *--end; 128 start = &result[size]; 129 end = start + bidiCount - 1; 131 while (start < end) { 132 UChar trail = *start++ [all...] |
/external/v8/test/cctest/ |
test-bignum-dtoa.cc | 47 int len = StrLength(representation.start()); 66 CHECK_EQ("1", buffer.start()); 72 CHECK_EQ("1", buffer.start()); 78 CHECK_EQ("1", buffer.start()); 82 CHECK_EQ("15", buffer.start()); 88 CHECK_EQ("15", buffer.start()); 94 CHECK_EQ("15", buffer.start()); 99 CHECK_EQ("5", buffer.start()); 105 CHECK_EQ("", buffer.start()); 110 CHECK_EQ("49407", buffer.start()); [all...] |
/bootable/recovery/minzip/ |
SysUtil.c | 49 off_t start, end; local 55 start = lseek(fd, 0L, SEEK_CUR); 57 (void) lseek(fd, start, SEEK_SET); 59 if (start == (off_t) -1 || end == (off_t) -1) { 64 length = end - start; 70 *start_ = start; 85 off_t start; local 91 if (getFileStartAndLength(fd, &start, &length) < 0) 120 off_t start; local 126 if (getFileStartAndLength(fd, &start, &length) < 0 [all...] |
/cts/tests/tests/text/src/android/text/cts/ |
HtmlTest.java | 53 final int start = -1; local 56 Object[] spans = spanned.getSpans(start, end, Object.class); 72 final int start = 0; local 76 Object[] spans = spanned.getSpans(start, end, Object.class); 91 final int start = 0; local 97 colors = s.getSpans(start, end, type); 103 colors = s.getSpans(start, end, type); 109 colors = s.getSpans(start, end, type); 128 final int start = 0; local 132 s.setSpan(new QuoteSpan(), start, end, Spannable.SPAN_PARAGRAPH) 153 final int start = 6; local [all...] |
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
CommonErrorNode.as | 9 public var start:Token; variable 13 public function CommonErrorNode(input:TokenStream, start:Token, stop:Token, 16 //System.out.println("start: "+start+", stop: "+stop); 18 (stop.tokenIndex < start.tokenIndex && 22 // in follow set. So, stop will be 1 to left to start. adjust. 23 // Also handle case where start is the first token and no token 25 stop = start; 28 this.start = start; [all...] |
/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/replicaisland/src/com/replica/replicaisland/ |
ShellSorter.java | 35 for ( int start = 0; start < increment; start++ ) { 36 insertionSort(array, count, start, increment, comparator); 55 * @param start the start position 58 public void insertionSort(Type[] array, int count, int start, int increment, 64 for (int i = start + increment; i < count; i += increment) { 77 } while ( j != start && comparator.compare(array[k], temp) > 0 );
|
/external/webkit/Source/WebCore/html/ |
TimeRanges.h | 44 static PassRefPtr<TimeRanges> create(float start, float end) 46 return adoptRef(new TimeRanges(start, end)); 52 float start(unsigned index, ExceptionCode&) const; 55 void add(float start, float end); 63 TimeRanges(float start, float end); 66 // We consider all the Ranges to be semi-bounded as follow: [start, end[ 69 Range(float start, float end) 71 m_start = start;
|
/external/webkit/Source/WebCore/dom/ |
SpaceSplitString.cpp | 56 unsigned start = 0; local 58 while (start < length && isHTMLSpace(characters[start])) 59 ++start; 60 if (start >= length) 62 unsigned end = start + 1; 66 m_vector.append(AtomicString(characters + start, end - start)); 68 start = end + 1;
|
/cts/tests/tests/animation/src/android/animation/cts/ |
IntEvaluatorTest.java | 24 final int start = 0; local 31 result = intEvaluator.evaluate(fraction, start, end); 38 assertTrue(result >= (fraction*start));
|
/dalvik/tests/078-polymorphic-virtual/src/ |
Main.java | 23 derived1.start(); 24 derived2.start(); 25 derived3.start();
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
CommonToken.cs | 52 * start/stop are not affected by changing this. 61 int start; field in class:Antlr.Runtime.CommonToken 75 public CommonToken( ICharStream input, int type, int channel, int start, int stop ) 80 this.start = start; 102 start = ( (CommonToken)oldToken ).start; 117 if (start <= stop && stop < input.Count) 118 return input.Substring( start, stop - start + 1 ) [all...] |
/external/chromium/chrome/browser/extensions/ |
extension_processes_api.h | 40 virtual void OnItemsChanged(int start, int length); 41 virtual void OnItemsAdded(int start, int length) {} 42 virtual void OnItemsRemoved(int start, int length) {}
|
/external/chromium/chrome/browser/safe_browsing/ |
chunk_range.cc | 16 ChunkRange::ChunkRange(int start) : start_(start), stop_(start) { 19 ChunkRange::ChunkRange(int start, int stop) : start_(start), stop_(stop) { 23 : start_(rhs.start()), stop_(rhs.stop()) { 60 for (int chunk = range.start(); chunk <= range.stop(); ++chunk) { 78 int start = atoi(chunk_ranges[0].c_str()); local 79 int stop = start; 82 if (start == 0 || stop == 0) [all...] |
/external/hamcrest/src/org/hamcrest/ |
Description.java | 29 <T> Description appendValueList(String start, String separator, String end,
35 <T> Description appendValueList(String start, String separator, String end,
42 Description appendList(String start, String separator, String end,
|
/external/icu4c/common/unicode/ |
urep.h | 91 * Function pointer that replaces text between start and limit in 96 * @param start the starting index of the text to be replaced, 101 * start..limit-1. 107 int32_t start, 114 * [<tt>start</tt>, <tt>limit</tt>) into the array <tt>dst</tt>. 117 * @param start offset of first character which will be copied 122 * <tt>dst</tt> must be at least <tt>(limit - start)</tt>. 126 int32_t start, 131 * Function pointer that copies text between start and limit in 135 * start..limit-1 [all...] |
/external/oprofile/module/ |
compat.c | 20 void * compat_request_region(unsigned long start, unsigned long n, char const * name) 22 if (check_region(start, n) != 0) 24 request_region(start, n, name);
|
/external/qemu/distrib/sdl-1.2.12/src/timer/beos/ |
SDL_systimer.c | 32 static bigtime_t start; variable 37 start = system_time(); 42 return((system_time()-start)/1000);
|
/external/qemu/distrib/sdl-1.2.12/src/timer/dc/ |
SDL_systimer.c | 32 static unsigned start; variable 42 start = jiffies; 47 return((jiffies-start)*1000/HZ);
|
/external/valgrind/main/none/tests/s390x/ |
stck.c | 25 unsigned long start, end, diff; local 27 cc = stck(&start); 34 diff = clockticks_in_msec(end, start);
|