Searched refs:start (Results 1 - 25 of 5526) sorted by relevance

1234567891011>>

/external/libvncserver/webclients/novnc/include/
H A Dvnc.js22 var extra = "", start, end;
24 start = "<script src='" + get_INCLUDE_URI();
31 extra += start + "util.js" + end;
32 extra += start + "webutil.js" + end;
33 extra += start + "base64.js" + end;
34 extra += start + "websock.js" + end;
35 extra += start + "des.js" + end;
36 extra += start + "input.js" + end;
37 extra += start + "display.js" + end;
38 extra += start
[all...]
/external/valgrind/none/tests/ppc32/
H A Dbug129390-ppc32.stdout.exp1 vmxcache: start
/external/clang/test/Sema/
H A Dbuiltins-aarch64.c7 void __clear_cache(void *start, void *end);
10 void test_clear_cache_chars(char *start, char *end) { argument
11 __clear_cache(start, end);
14 void test_clear_cache_voids(void *start, void *end) { argument
15 __clear_cache(start, end);
H A Dbuiltins-arm64.c5 void __clear_cache(void *start, void *end);
8 void test_clear_cache_chars(char *start, char *end) { argument
9 __clear_cache(start, end);
12 void test_clear_cache_voids(void *start, void *end) { argument
13 __clear_cache(start, end);
/external/v8/test/mjsunit/regress/
H A Dregress-2836.js32 var start = end - 100000; // Run long enough to trigger OSR.
33 for (var i = start; i <= end; ++i) {
34 assertTrue(i >= start); // No overflow allowed!
H A Dregress-370827.js8 var start = "";
9 if (x) { start = x + " - "; }
10 start = start + "array length";
/external/v8/test/mjsunit/
H A Dd8-performance-now.js37 for (var start = performance.now();
38 start - start_test < 100;
39 start = performance.now()) {
41 assertTrue(start >= start_test);
42 assertTrue(end >= start);
43 while (end - start == 0) {
48 if (end - start <= 1) {
52 print("Timer difference too big: " + (end - start) + "ms");
/external/clang/test/CodeGen/
H A D2002-09-19-StarInLabel.c3 extern void start() __asm__("start");
6 void start() {} function
/external/llvm/utils/
H A Dbisect10 parser.add_argument('--start', type=int, default=0)
16 start = args.start variable
20 print("Start: %d" % start)
24 while start != end and start != end-1:
25 count = start + (end - start)/2
26 print("Visiting Count: %d with (Start, End) = (%d,%d)" % (count, start, end))
31 print(" PASSES! Setting start t
32 start = count variable
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DBidiRun.java33 int start; /* first logical position of the run */ field in class:BidiRun
42 * Note that members start and limit of a run instance have different
47 * - start is the first logical position of the run in the source text.
50 * - start is the first logical position of the run in the source text.
61 BidiRun(int start, int limit, byte embeddingLevel) argument
63 this.start = start;
73 this.start = run.start;
84 return start;
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DBidiRun.java32 int start; /* first logical position of the run */ field in class:BidiRun
41 * Note that members start and limit of a run instance have different
46 * - start is the first logical position of the run in the source text.
49 * - start is the first logical position of the run in the source text.
60 BidiRun(int start, int limit, byte embeddingLevel) argument
62 this.start = start;
72 this.start = run.start;
84 return start;
[all...]
/external/v8/test/mjsunit/compiler/
H A Dregress-rep-change.js33 function test(start) {
35 for (var i = start; i < 10; i++) { }
37 for (var i = start; i < 10; i++) { }
/external/opencv3/3rdparty/zlib/
H A Dinffast.h11 void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DHtmlToken.java35 final int start; field in class:HtmlToken
39 static HtmlToken instance(int start, int end, HtmlTokenType type) { argument
40 return new HtmlToken(start, end, type);
44 int n = end - start;
46 return context.regionMatches(start, match, 0, n);
49 private HtmlToken(int start, int end, HtmlTokenType type) { argument
50 this.start = start;
/external/pdfium/third_party/zlib_v128/
H A Dinffast.h11 void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));
/external/valgrind/memcheck/tests/solaris/
H A Dlsframe1.stdout.exp1 lsframe1: start
H A Dlsframe2.stdout.exp1 lsframe2: start
/external/zlib/src/
H A Dinffast.h11 void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/quotas/backend/
H A Dbackends.yaml23 start: /quota-service/start
/external/guice/extensions/persist/src/com/google/inject/persist/
H A DPersistService.java36 void start(); method in interface:PersistService
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DUCharArrayIterator.java22 private final int start; field in class:UCharArrayIterator
26 public UCharArrayIterator(char[] text, int start, int limit) { argument
27 if (start < 0 || limit > text.length || start > limit) {
28 throw new IllegalArgumentException("start: " + start + " or limit: "
33 this.start = start;
36 this.pos = start;
44 return limit - start;
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUCharArrayIterator.java20 private final int start; field in class:UCharArrayIterator
24 public UCharArrayIterator(char[] text, int start, int limit) { argument
25 if (start < 0 || limit > text.length || start > limit) {
26 throw new IllegalArgumentException("start: " + start + " or limit: "
31 this.start = start;
34 this.pos = start;
42 return limit - start;
[all...]
/external/autotest/frontend/client/src/autotest/common/
H A DUnmodifiableSublistView.java8 protected int start, size; field in class:UnmodifiableSublistView
10 public UnmodifiableSublistView(List<T> list, int start, int size) { argument
11 assert start >= 0;
13 assert start + size <= list.size();
16 this.start = start;
24 return backingList.get(arg0 + start);
/external/autotest/client/tests/monotonic_time/src/
H A Dcpuset.c39 int start, end; local
41 start = end = (int)strtol(s, &next, 0);
57 if (start < 0 || start >= CPU_SETSIZE) {
58 ERROR(0, "bad cpu number '%d' in cpu set", start);
67 if (end < start) {
68 ERROR(0, "bad range '%d-%d' in cpu set", start, end);
72 for (cpu = start; cpu <= end; ++cpu)
87 int start, int end)
91 if (start
86 show_range(char *buf, size_t len, const char *prefix, int start, int end) argument
113 int start = -1; local
[all...]
/external/chromium-trace/catapult/third_party/closure_linter/closure_linter/common/
H A Dposition.py27 start: The index in to the string where the segment starts.
31 def __init__(self, start, length):
35 start: The start index.
38 self.start = start
50 return string[self.start:self.start + self.length]
62 return target[:self.start] + source + target[self.start
[all...]

Completed in 932 milliseconds

1234567891011>>