HomeSort by relevance Sort by last modified time
    Searched refs:end (Results 126 - 150 of 14984) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/elfutils/src/libdw/
dwarf_frame_info.c 36 dwarf_frame_info (fs, start, end, signalp)
39 Dwarf_Addr *end;
48 if (end != NULL)
49 *end = fs->end;
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
Block.java 24 private Label end; field in class:Block
35 public void end() { method in class:Block
36 if (end != null) {
37 throw new IllegalStateException("end of label already set");
39 end = e.mark();
47 return end;
  /external/lzma/CPP/Common/
StringToInt.cpp 7 UInt64 ConvertStringToUInt64(const char *s, const char **end)
15 if (end != NULL)
16 *end = s;
25 UInt64 ConvertOctStringToUInt64(const char *s, const char **end)
33 if (end != NULL)
34 *end = s;
43 UInt64 ConvertHexStringToUInt64(const char *s, const char **end)
55 if (end != NULL)
56 *end = s;
66 UInt64 ConvertStringToUInt64(const wchar_t *s, const wchar_t **end)
    [all...]
  /external/icu/icu4c/source/common/
chariter.cpp 22 : textLength(0), pos(0), begin(0), end(0) {
26 : textLength(length), pos(0), begin(0), end(length) {
28 textLength = end = 0;
33 : textLength(length), pos(position), begin(0), end(length) {
35 textLength = end = 0;
39 } else if(pos > end) {
40 pos = end;
45 : textLength(length), pos(position), begin(textBegin), end(textEnd) {
54 if(end < begin) {
55 end = begin
    [all...]
  /external/skia/tools/lua/
dumpops.lua 6 end
11 end
16 end
17 end
19 end
21 function sk_scrape_startcanvas(c, fileName) end
23 function sk_scrape_endcanvas(c, fileName) end
31 end
33 function sk_scrape_summarize() end
gradients.lua 2 function sk_scrape_startcanvas(c, fileName) end
4 function sk_scrape_endcanvas(c, fileName) end
23 end
24 end
25 end
26 end
27 end
28 end
33 end
count_effects.lua 6 end
11 end
16 end
17 end
19 end
21 function sk_scrape_startcanvas(c, fileName) end
23 function sk_scrape_endcanvas(c, fileName) end
30 end
31 end
39 end
    [all...]
  /external/ceres-solver/internal/ceres/
stl_util.h 50 ForwardIterator end) {
51 while (begin != end) {
62 ForwardIterator end) {
63 sort(begin, end);
64 ForwardIterator new_end = unique(begin, end);
74 // hash_set, or any other STL container which defines sensible begin(), end(),
85 STLDeleteContainerPointers(container->begin(), container->end());
  /external/clang/test/CXX/stmt.stmt/stmt.dcl/
p3-0x.cpp 11 goto end;
17 end:
33 goto end; // expected-error{{cannot jump from this goto statement to its label}}
35 end:
51 goto end;
53 end:
  /external/clang/test/Index/
complete-at-exprstmt.m 5 @end
11 @end
16 @end
boxed-exprs.h 2 @interface NSString @end
6 @end
complete-method-decls.m 1 /* Note: the RUN lines are near the end of the file, since line/column
10 @end
14 @end
19 @end
26 @end
30 @end
39 @end
43 @end
49 @end
53 @end
    [all...]
targeted-cursor.m.h 7 @end
  /external/libvpx/libvpx/vpx_mem/memory_manager/
hmm_grow.c 18 void U(grow_chunk)(U(descriptor) *desc, void *end, U(size_bau) n_baus) { variable
20 #define HEAD_PTR ((head_record *) end)
22 end = BAUS_BACKWARD(end, DUMMY_END_BLOCK_BAUS);
27 /* Chunk does not have valid dummy end block. */
32 /* Create a new block that absorbs the old dummy end block. */
35 /* Set up the new dummy end block. */
37 head_record *dummy = (head_record *) BAUS_FORWARD(end, n_baus);
46 U(free)(desc, HEAD_TO_PTR_REC(end));
  /frameworks/base/core/java/android/text/
SpannableString.java 33 private SpannableString(CharSequence source, int start, int end) {
34 super(source, start, end);
45 public void setSpan(Object what, int start, int end, int flags) {
46 super.setSpan(what, start, end, flags);
53 public final CharSequence subSequence(int start, int end) {
54 return new SpannableString(this, start, end);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_mem/memory_manager/
hmm_grow.c 18 void U(grow_chunk)(U(descriptor) *desc, void *end, U(size_bau) n_baus) { variable
20 #define HEAD_PTR ((head_record *) end)
22 end = BAUS_BACKWARD(end, DUMMY_END_BLOCK_BAUS);
27 /* Chunk does not have valid dummy end block. */
32 /* Create a new block that absorbs the old dummy end block. */
35 /* Set up the new dummy end block. */
37 head_record *dummy = (head_record *) BAUS_FORWARD(end, n_baus);
46 U(free)(desc, HEAD_TO_PTR_REC(end));
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ContactsDictionaryUtils.java 33 int end; local
35 for (end = startIndex + 1; end < len; end += Character.charCount(cp)) {
36 cp = string.codePointAt(end);
42 return end;
  /libcore/luni/src/main/java/java/text/
StringCharacterIterator.java 27 int start, end, offset; field in class:StringCharacterIterator
32 * end index is set to the length of the string.
40 end = string.length();
46 * to the beginning of the string, the end index is set to the length of the
60 end = string.length();
61 if (location < 0 || location > end) {
69 * with the begin, end and current index set to the specified values.
75 * @param end
80 * if {@code start < 0}, {@code start > end}, {@code location <
81 * start}, {@code location > end} or if {@code end} is greate
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
ptrspec_test.cpp 121 vector<int*> pint_vect_from_list(pint_list.begin(), pint_list.end());
123 pint_vect.insert(pint_vect.end(), pint_vect2.begin(), pint_vect2.end());
124 pint_vect.insert(pint_vect.end(), int_array, int_array + 3);
125 pint_vect2.insert(pint_vect2.end(), int_array, int_array + 3);
126 pcint_vect.insert(pcint_vect.end(), int_array, int_array + 3);
127 pcint_vect.insert(pcint_vect.end(), cint_array, cint_array + 3);
129 pcint_vect.insert(pcint_vect.end(), pint_vect2.begin(), pint_vect2.end());
131 pcint_vect.insert(pcint_vect.end(), int_array, int_array + 3)
    [all...]
  /ndk/tests/device/test-stlport/unit/
ptrspec_test.cpp 121 vector<int*> pint_vect_from_list(pint_list.begin(), pint_list.end());
123 pint_vect.insert(pint_vect.end(), pint_vect2.begin(), pint_vect2.end());
124 pint_vect.insert(pint_vect.end(), int_array, int_array + 3);
125 pint_vect2.insert(pint_vect2.end(), int_array, int_array + 3);
126 pcint_vect.insert(pcint_vect.end(), int_array, int_array + 3);
127 pcint_vect.insert(pcint_vect.end(), cint_array, cint_array + 3);
129 pcint_vect.insert(pcint_vect.end(), pint_vect2.begin(), pint_vect2.end());
131 pcint_vect.insert(pcint_vect.end(), int_array, int_array + 3)
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/ANTLR/ANTLRTests/
ANTLRTests.h 17 @end
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/test/runtime/recognizer/
ANTLRRecognizerTest.h 16 @end
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/test/runtime/tree/
ANTLRCommonErrorNodeTest.h 16 @end
ANTLRCommonTreeAdaptorTest.h 16 @end
  /external/clang/test/Index/Inputs/
objc.h 7 @end
11 @end

Completed in 880 milliseconds

1 2 3 4 56 7 8 91011>>