HomeSort by relevance Sort by last modified time
    Searched refs:start (Results 351 - 375 of 18938) sorted by null

<<11121314151617181920>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
sliceobject.h 17 A slice object containing start, stop, and step data members (the
24 PyObject *start, *stop, *step; /* not NULL */ member in struct:__anon4668
32 PyAPI_FUNC(PyObject *) PySlice_New(PyObject* start, PyObject* stop,
34 PyAPI_FUNC(PyObject *) _PySlice_FromIndices(Py_ssize_t start, Py_ssize_t stop);
36 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step);
38 Py_ssize_t *start, Py_ssize_t *stop,
  /external/annotation-tools/asmx/src/org/objectweb/asm/tree/
LocalVariableNode.java 61 public Label start; field in class:LocalVariableNode
81 * @param start the first instruction corresponding to the scope of this
91 final Label start,
98 this.start = start;
109 mv.visitLocalVariable(name, desc, signature, start, end, index);
  /external/emma/core/java12/com/vladium/util/
Descriptors.java 126 for (int start = 1; start < end; )
128 if (start > 1) out.append (", ");
129 start = typeDescriptorToJavaName (chars, start, shortTypeNames, out);
155 // private static int typeSignatureToJavaName (final char [] signature, int start,
163 private static int typeDescriptorToJavaName (final char [] descriptor, int start,
168 for (dims = 0; descriptor [start] == '['; ++ dims, ++ start);
170 char c = descriptor [start ++];
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
FunctionReplacer.java 52 int start,
57 int len = replacer.replace(text, start, limit, cursor);
58 limit = start + len;
61 limit = translit.transliterate(text, start, limit);
63 return limit - start;
  /external/icu/icu4c/source/samples/translit/answers/
unaccent.cpp 48 while (index.start < index.limit) {
49 UChar c = text.charAt(index.start);
53 text.handleReplaceBetween(index.start, index.start+1, str);
55 index.start++;
  /external/icu/icu4c/source/samples/translit/
unaccent.cpp 51 while (index.start < index.limit) {
52 UChar c = text.charAt(index.start);
56 text.handleReplaceBetween(index.start, index.start+1, str);
58 index.start++;
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
FunctionReplacer.java 51 int start,
56 int len = replacer.replace(text, start, limit, cursor);
57 limit = start + len;
60 limit = translit.transliterate(text, start, limit);
62 return limit - start;
  /external/linux-kselftest/tools/testing/selftests/vm/
mlock2.h 15 static int mlock2_(void *start, size_t len, int flags)
18 return syscall(__NR_mlock2, start, len, flags);
30 unsigned long start, end; local
45 &start, &end, perms, &offset, dev, &inode, path) < 6)
48 if (start <= addr && addr < end)
  /external/python/cpython2/Include/
sliceobject.h 17 A slice object containing start, stop, and step data members (the
24 PyObject *start, *stop, *step; /* not NULL */ member in struct:__anon32611
32 PyAPI_FUNC(PyObject *) PySlice_New(PyObject* start, PyObject* stop,
34 PyAPI_FUNC(PyObject *) _PySlice_FromIndices(Py_ssize_t start, Py_ssize_t stop);
36 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step);
38 Py_ssize_t *start, Py_ssize_t *stop,
  /external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES3/
PVRTgles3Ext.cpp 76 const GLubyte *start; local
88 start = extensions;
90 where = (GLubyte *) strstr((const char *) start, extension);
94 if (where == start || *(where - 1) == ' ')
97 start = terminator;
  /frameworks/base/core/java/android/text/
GraphicsOperations.java 33 void drawText(BaseCanvas c, int start, int end,
39 void drawTextRun(BaseCanvas c, int start, int end, int contextStart, int contextEnd,
45 float measureText(int start, int end, Paint p);
50 public int getTextWidths(int start, int end, float[] widths, Paint p);
55 float getTextRunAdvances(int start, int end, int contextStart, int contextEnd,
InputFilter.java 34 * with the new text from the range <code>start &hellip; end</code>
49 public CharSequence filter(CharSequence source, int start, int end,
74 public CharSequence filter(CharSequence source, int start, int end,
76 final CharSequence wrapper = new CharSequenceWrapper(source, start, end);
79 final int length = end - start;
110 CharSequenceWrapper(CharSequence source, int start, int end) {
112 mStart = start;
114 mLength = end - start;
128 public CharSequence subSequence(int start, int end) {
129 if (start < 0 || end < 0 || end > mLength || start > end)
    [all...]
  /hardware/libhardware/modules/input/evdev/
BitUtils.cpp 38 bool testBitInRange(const uint8_t arr[], size_t start, size_t end) {
40 ALOGD("testBitInRange(%d, %d)", start, end);
43 if (end <= start) return false;
47 size_t startIndex = start / 8;
59 // Mask off bits before our start bit
61 mask &= 0xff << (start % 8);
  /packages/experimental/TestBack/src/foo/bar/testback/
AccessibilityNodeInfoUtils.java 28 AccessibilityNodeInfo start, Predicate<AccessibilityNodeInfo> condition) {
29 AccessibilityNodeInfo parent = start.getParent();
38 AccessibilityNodeInfo start, Predicate<AccessibilityNodeInfo> condition) {
39 int numChildren = start.getChildCount();
41 AccessibilityNodeInfo child = start.getChild(i);
  /packages/experimental/procstatlog/
diskload.sh 22 dd if=/dev/zero bs=65536 of=$1.0 & pid0=$!; echo start $pid0; sleep 2
23 dd if=/dev/zero bs=65536 of=$1.1 & pid1=$!; echo start $pid1; sleep 2
24 dd if=/dev/zero bs=65536 of=$1.2 & pid2=$!; echo start $pid2; sleep 2
25 dd if=/dev/zero bs=65536 of=$1.3 & pid3=$!; echo start $pid3; sleep 2
26 dd if=/dev/zero bs=65536 of=$1.4 & pid4=$!; echo start $pid4; sleep 2
27 dd if=/dev/zero bs=65536 of=$1.5 & pid5=$!; echo start $pid5; sleep 2
28 dd if=/dev/zero bs=65536 of=$1.6 & pid6=$!; echo start $pid6; sleep 2
29 dd if=/dev/zero bs=65536 of=$1.7 & pid7=$!; echo start $pid7; sleep 2
30 dd if=/dev/zero bs=65536 of=$1.8 & pid8=$!; echo start $pid8; sleep 2
31 dd if=/dev/zero bs=65536 of=$1.9 & pid9=$!; echo start $pid9; sleep
    [all...]
  /prebuilts/gdb/darwin-x86/include/python2.7/
sliceobject.h 17 A slice object containing start, stop, and step data members (the
24 PyObject *start, *stop, *step; /* not NULL */ member in struct:__anon66501
32 PyAPI_FUNC(PyObject *) PySlice_New(PyObject* start, PyObject* stop,
34 PyAPI_FUNC(PyObject *) _PySlice_FromIndices(Py_ssize_t start, Py_ssize_t stop);
36 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step);
38 Py_ssize_t *start, Py_ssize_t *stop,
  /prebuilts/gdb/linux-x86/include/python2.7/
sliceobject.h 17 A slice object containing start, stop, and step data members (the
24 PyObject *start, *stop, *step; /* not NULL */ member in struct:__anon66623
32 PyAPI_FUNC(PyObject *) PySlice_New(PyObject* start, PyObject* stop,
34 PyAPI_FUNC(PyObject *) _PySlice_FromIndices(Py_ssize_t start, Py_ssize_t stop);
36 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step);
38 Py_ssize_t *start, Py_ssize_t *stop,
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
sliceobject.h 17 A slice object containing start, stop, and step data members (the
24 PyObject *start, *stop, *step; /* not NULL */ member in struct:__anon1016
32 PyAPI_FUNC(PyObject *) PySlice_New(PyObject* start, PyObject* stop,
34 PyAPI_FUNC(PyObject *) _PySlice_FromIndices(Py_ssize_t start, Py_ssize_t stop);
36 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step);
38 Py_ssize_t *start, Py_ssize_t *stop,
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
sliceobject.h 17 A slice object containing start, stop, and step data members (the
24 PyObject *start, *stop, *step; /* not NULL */ member in struct:__anon1139
32 PyAPI_FUNC(PyObject *) PySlice_New(PyObject* start, PyObject* stop,
34 PyAPI_FUNC(PyObject *) _PySlice_FromIndices(Py_ssize_t start, Py_ssize_t stop);
36 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step);
38 Py_ssize_t *start, Py_ssize_t *stop,
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/cris/
rd-tls-1.d 9 0+ <start>:
10 [ ]+0:[ ]+af1e 0000 0000[ ]+sub\.d 0 <start>,\$?r1
12 [ ]+6:[ ]+2f9e 0000 0000[ ]+add\.d 0 <start>,\$?r9
14 [ ]+c:[ ]+6f3d 0000 0000 6aaa[ ]+move\.d \[\$?r3\+0 <start>\],\$?r10
18 [ ]+18:[ ]+af9e 0000 0000[ ]+sub\.d 0 <start>,\$?r9
20 [ ]+1e:[ ]+af3e 0000 0000[ ]+sub\.d 0 <start>,\$?r3
22 [ ]+24:[ ]+6f3d 0000 0000 67de[ ]+move\.d \[\$?r7=\$?r3\+0 <start>\],\$?r13
26 [ ]+32:[ ]+6fad 0000 0000 287a[ ]+add\.d \[\$?r10\+0 <start>\],\$?r7,\$?r8
28 [ ]+3a:[ ]+7f0d 0000 0000 611a[ ]+move.d \[0 <start>],\$?r1
30 [ ]+42:[ ]+2fbe 0000 0000[ ]+add\.d 0 <start>,\$?r1
    [all...]
  /external/icu/icu4c/source/test/cintltst/
trietest.c 39 UChar32 start, limit; member in struct:SetRange
56 _testFoldedValue32(UNewTrie *trie, UChar32 start, int32_t offset) {
63 limit=start+0x400;
64 while(start<limit) {
65 value=utrie_get32(trie, start, &inBlockZero);
67 start+=UTRIE_DATA_BLOCK_LENGTH;
70 ++start;
87 _testFoldedValue16(UNewTrie *trie, UChar32 start, int32_t offset) {
94 limit=start+0x400;
95 while(start<limit)
265 UChar32 start, limit; local
459 UChar32 start, limit; local
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonErrorNode.cs 39 public IToken start; field in class:Antlr.Runtime.Tree.CommonErrorNode
43 public CommonErrorNode(ITokenStream input, IToken start, IToken stop,
45 //System.out.println("start: "+start+", stop: "+stop);
47 (stop.TokenIndex < start.TokenIndex &&
50 // in follow set. So, stop will be 1 to left to start. adjust.
51 // Also handle case where start is the first token and no token
53 stop = start;
56 this.start = start;
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonErrorNode.cs 41 public IToken start; field in class:Antlr.Runtime.Tree.CommonErrorNode
45 public CommonErrorNode( ITokenStream input, IToken start, IToken stop,
48 //System.out.println("start: "+start+", stop: "+stop);
50 ( stop.TokenIndex < start.TokenIndex &&
54 // in follow set. So, stop will be 1 to left to start. adjust.
55 // Also handle case where start is the first token and no token
57 stop = start;
60 this.start = start;
    [all...]
  /external/fio/tools/
fiologparser.py 42 start = 0
45 while (start < ftime):
47 results = [ts.get_value(start, end) for ts in series]
49 start += ctx.interval
54 start = 0
57 while (start < ftime):
59 results = [ts.get_value(start, end) for ts in series]
61 start += ctx.interval
66 start = 0
69 while (start < ftime)
    [all...]
  /external/icu/icu4c/source/extra/scrptrun/
scrptrun.h 42 ScriptRun(const UChar chars[], int32_t start, int32_t length);
46 void reset(int32_t start, int32_t count);
48 void reset(const UChar chars[], int32_t start, int32_t length);
112 inline ScriptRun::ScriptRun(const UChar chars[], int32_t start, int32_t length)
114 reset(chars, start, length);
140 inline void ScriptRun::reset(int32_t start, int32_t length)
142 charStart = start;
143 charLimit = start + length;
148 inline void ScriptRun::reset(const UChar chars[], int32_t start, int32_t length)
152 reset(start, length)
    [all...]

Completed in 1270 milliseconds

<<11121314151617181920>>