HomeSort by relevance Sort by last modified time
    Searched refs:start (Results 176 - 200 of 6350) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/valgrind/main/none/tests/s390x/
stckf.c 25 unsigned long start, end, diff; local
27 cc = stckf(&start);
35 diff = clockticks_in_msec(end, start);
  /frameworks/ex/common/java/com/android/common/
Rfc822InputFilter.java 33 public CharSequence filter(CharSequence source, int start, int end, Spanned dest,
37 if (end-start != 1 || source.charAt(start) != ' ') {
  /frameworks/base/core/java/android/text/util/
Linkify.java 96 public final boolean acceptMatch(CharSequence s, int start, int end) {
97 if (start == 0) {
101 if (s.charAt(start - 1) == '@') {
114 public final boolean acceptMatch(CharSequence s, int start, int end) {
117 for (int i = start; i < end; i++) {
160 * @param start The index of the first character in s that was
167 boolean acceptMatch(CharSequence s, int start, int end);
240 applyLink(link.url, link.start, link.end, text);
368 int start = m.start(); local
430 int start = m.start(); local
452 int start = string.indexOf(address); local
541 int start; field in class:LinkSpec
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
ByteArray.java 33 /** {@code >= 0}; start index of the slice (inclusive) */
34 private final int start; field in class:ByteArray
37 * {@code end - start} (in the constructor) */
44 * @param start {@code >= 0;} start index of the slice (inclusive)
45 * @param end {@code >= start, <= bytes.length;} end index of
48 public ByteArray(byte[] bytes, int start, int end) {
53 if (start < 0) {
54 throw new IllegalArgumentException("start < 0");
57 if (end < start) {
    [all...]
  /dalvik/dx/src/com/android/dx/util/
ByteArray.java 33 /** {@code >= 0}; start index of the slice (inclusive) */
34 private final int start; field in class:ByteArray
37 * {@code end - start} (in the constructor) */
44 * @param start {@code >= 0;} start index of the slice (inclusive)
45 * @param end {@code >= start, <= bytes.length;} end index of
48 public ByteArray(byte[] bytes, int start, int end) {
53 if (start < 0) {
54 throw new IllegalArgumentException("start < 0");
57 if (end < start) {
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
ByteArray.java 33 /** {@code >= 0}; start index of the slice (inclusive) */
34 private final int start; field in class:ByteArray
37 * {@code end - start} (in the constructor) */
44 * @param start {@code >= 0;} start index of the slice (inclusive)
45 * @param end {@code >= start, <= bytes.length;} end index of
48 public ByteArray(byte[] bytes, int start, int end) {
53 if (start < 0) {
54 throw new IllegalArgumentException("start < 0");
57 if (end < start) {
    [all...]
  /frameworks/ex/common/java/com/android/common/widget/
CompositeCursorAdapter.java 238 int start = 0; local
240 int end = start + mPartitions[i].count;
241 if (position >= start && position < end) {
244 start = end;
255 int start = 0; local
257 int end = start + mPartitions[i].count;
258 if (position >= start && position < end) {
259 int offset = position - start;
265 start = end;
307 int start = 0 local
325 int start = 0; local
414 int start = 0; local
440 int start = 0; local
486 int start = 0; local
    [all...]
  /libcore/luni/src/main/java/java/text/
AttributedString.java 42 int start; field in class:AttributedString.Range
49 start = s;
158 return range.start >= begin && range.start < end
166 if (range.start >= begin && range.start < end) {
171 || (range.start >= begin && range.start < end);
210 if (offset >= range.start && offset < range.end) {
261 if (offset >= range.start && offset < range.end)
333 int start = begin; local
411 int start = iterator.getRunStart(attribute); local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
gen_bitmap.c 33 __u32 start, end; member in struct:ext2fs_struct_generic_bitmap
67 __u32 start, __u32 end, __u32 real_end,
82 bitmap->start = start;
105 size = (size_t) (((bitmap->real_end - bitmap->start) / 8) + 1);
123 errcode_t ext2fs_allocate_generic_bitmap(__u32 start,
130 start, end, real_end, descr, 0, ret);
137 src->start, src->end,
163 if ((bitno < bitmap->start) || (bitno > bitmap->end)) {
167 return ext2fs_test_bit(bitno - bitmap->start, bitmap->bitmap)
    [all...]
  /external/guava/guava/src/com/google/common/primitives/
Bytes.java 94 byte[] array, byte target, int start, int end) {
95 for (int i = start; i < end; i++) {
104 * Returns the start position of the first occurrence of the specified {@code
148 byte[] array, byte target, int start, int end) {
149 for (int i = end - 1; i >= start; i--) {
266 final int start; field in class:Bytes.ByteArrayAsList
273 ByteArrayAsList(byte[] array, int start, int end) {
275 this.start = start;
280 return end - start;
    [all...]
  /bionic/libc/kernel/arch-x86/asm/
cacheflush.h 26 #define flush_cache_range(vma, start, end) do { } while (0)
32 #define flush_icache_range(start, end) do { } while (0)
36 #define flush_cache_vmap(start, end) do { } while (0)
37 #define flush_cache_vunmap(start, end) do { } while (0)
  /development/ndk/platforms/android-9/arch-x86/include/asm/
cacheflush.h 26 #define flush_cache_range(vma, start, end) do { } while (0)
32 #define flush_icache_range(start, end) do { } while (0)
36 #define flush_cache_vmap(start, end) do { } while (0)
37 #define flush_cache_vunmap(start, end) do { } while (0)
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
TokenStream.as 54 /** Return the text of all tokens from start to stop, inclusive.
59 function toStringWithRange(start:int, stop:int):String;
63 * indicate the start/end location. Most often this will just delegate
67 function toStringWithTokenRange(start:Token, stop:Token):String;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ICharStream.cs 44 string Substring(int start, int length);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ICharStream.cs 46 string Substring( int start, int length );
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
CharStream.java 38 public String substring(int start, int stop);
  /external/chromium/chrome/browser/safe_browsing/
chunk_range.h 22 // Each ChunkRange represents a continuous range of chunk numbers [start, stop].
26 explicit ChunkRange(int start);
27 ChunkRange(int start, int stop);
30 inline int start() const { return start_; } function in class:ChunkRange
34 return start_ == rhs.start() && stop_ == rhs.stop();
  /external/compiler-rt/test/Unit/
enable_execute_stack_test.c 16 void __clear_cache(void* start, void* end)
18 if (!FlushInstructionCache(GetCurrentProcess(), start, end-start))
32 extern void __clear_cache(void* start, void* end);
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
SimpleTimeLimiterTest.java 59 long start = System.nanoTime(); local
68 assertTheCallTookBetween(start, DELAY_MS, ENOUGH_MS);
72 long start = System.nanoTime(); local
84 assertTheCallTookBetween(start, NOT_ENOUGH_MS, DELAY_MS);
88 long start = System.nanoTime(); local
100 assertTheCallTookBetween(start, DELAY_MS, ENOUGH_MS);
104 long start = System.nanoTime(); local
116 assertTheCallTookBetween(start, NOT_ENOUGH_MS, DELAY_MS);
123 long start = System.nanoTime(); local
125 assertTheCallTookBetween(start, DELAY_MS, ENOUGH_MS)
133 long start = System.nanoTime(); local
151 long start = System.nanoTime(); local
164 long start = System.nanoTime(); local
    [all...]
  /external/icu4c/test/intltest/
simplethread.h 17 int32_t start(void); // start the thread
  /external/llvm/include/llvm/Support/
Disassembler.h 30 std::string disassembleBuffer(uint8_t* start, size_t length, uint64_t pc = 0);
  /external/v8/src/arm/
cpu-arm.cc 54 void CPU::FlushICache(void* start, size_t size) {
66 Simulator::FlushICache(Isolate::Current()->simulator_i_cache(), start, size);
69 // syscall(__ARM_NR_cacheflush, start,
70 // reinterpret_cast<intptr_t>(start) + size, 0);
74 register uint32_t beg asm("a1") = reinterpret_cast<uint32_t>(start);
76 reinterpret_cast<uint32_t>(start) + size;
  /external/v8/src/
preparse-data.h 48 virtual void LogFunction(int start,
55 virtual void LogAsciiSymbol(int start, Vector<const char> literal) { }
56 virtual void LogUtf16Symbol(int start, Vector<const uc16> literal) { }
61 virtual void LogMessage(int start,
88 virtual void LogFunction(int start,
93 function_store_.Add(start);
103 virtual void LogMessage(int start,
151 virtual void LogAsciiSymbol(int start, Vector<const char> literal) { }
152 virtual void LogUtf16Symbol(int start, Vector<const uc16> literal) { }
168 virtual void LogAsciiSymbol(int start, Vector<const char> literal)
    [all...]
  /external/webkit/Source/JavaScriptCore/yarr/
YarrJIT.h 50 typedef int (*YarrJITCode)(const UChar* input, unsigned start, unsigned length, int* output) YARR_CALL;
66 int execute(const UChar* input, unsigned start, unsigned length, int* output)
68 return reinterpret_cast<YarrJITCode>(m_ref.m_code.executableAddress())(input, start, length, output);
81 int execute(YarrCodeBlock& jitObject, const UChar* input, unsigned start, unsigned length, int* output);
  /external/webkit/Source/WebCore/html/canvas/
Float32Array.cpp 52 PassRefPtr<Float32Array> Float32Array::subarray(int start) const
54 return subarray(start, length());
57 PassRefPtr<Float32Array> Float32Array::subarray(int start, int end) const
59 return subarrayImpl<Float32Array>(start, end);

Completed in 1967 milliseconds

1 2 3 4 5 6 78 91011>>