Home
last modified time | relevance | path

Searched refs:end (Results 1 – 25 of 69) sorted by relevance

123

/development/vndk/tools/sourcedr/sourcedr/blueprint/tests/
Dtest_lexer.py133 end, lit = Lexer.lex_string('`a`', 0)
134 self.assertEqual(end, 3)
137 end, lit = Lexer.lex_string('`a\nb`', 0)
138 self.assertEqual(end, 5)
141 end, lit = Lexer.lex_string('"a""b"', 3)
142 self.assertEqual(end, 6)
160 end, lit = Lexer.lex_string('"a"', 0)
161 self.assertEqual(end, 3)
164 end, lit = Lexer.lex_string('"n"', 0)
165 self.assertEqual(end, 3)
[all …]
/development/scripts/gdb/
Ddalvik.gdb33 end
43 end
44 end
53 end
65 end
66 end
72 end
/development/vndk/tools/header-checker/header-abi-dumper/src/
Dfixed_argv.h57 end = argv_.rend(); it != end; ++it) { in GetLastArg() local
82 argv_.insert(argv_.end(), args.begin(), args.end()); in PushForwardArgs()
Dast_util.h33 if (type_id_it == qual_type_to_type_id_cache_.end()) { in GetTypeId()
/development/vndk/tools/sourcedr/sourcedr/blueprint/
Dblueprint.py147 self.end = offset
169 while self.end < buf_len:
170 self.start = self.end
171 self.token, self.end, self.literal = self.lex(self.buf, self.start)
175 self.start = self.end
205 def decode_oct(buf, offset, start, end): argument
209 if end > len(buf):
212 codepoint = int(buf[start:end], 8)
221 def decode_hex(buf, offset, start, end): argument
225 if end > len(buf):
[all …]
/development/samples/Vault/src/com/example/android/vault/
DSecretKeyWrapper.java74 final Calendar end = new GregorianCalendar(); in generateKeyPair() local
75 end.add(Calendar.YEAR, 100); in generateKeyPair()
82 .setEndDate(end.getTime()) in generateKeyPair()
/development/host/windows/usb/api/
Dadb_object_handle.cpp114 ATLASSERT((found != the_map.end()) && (this == found->second)); in CloseHandle()
116 if ((found != the_map.end()) && (this == found->second)) { in CloseHandle()
156 if (found != the_map.end()) { in Lookup()
/development/vndk/tools/header-checker/header-abi-util/src/
Dir_representation.cpp79 if (map_it == odr_list_map_.end()) { in AddToODRListMap()
92 if (builtin_it != builtin_types_.end()) { in IsBuiltinTypeNodePresent()
118 if (it == odr_list_map_.end()) { in DoesUDTypeODRViolationExist()
185 if (local_to_global_it != local_to_global_type_id_map->end()) { in MergeReferencingTypeInternal()
194 if (local_type_it != addend.type_graph_.end()) { in MergeReferencingTypeInternal()
292 if (it == addend.type_graph_.end()) { in MergeEnumDependencies()
362 if (it == parent_map->end()) { in MergeReferencingTypeInternalAndUpdateParent()
469 if (type_it != local_to_global_type_id_map->end()) { in MergeType()
489 if (ret_type_it == addend.type_graph_.end()) { in MergeCFunctionLikeDeps()
518 return (message_map.find(lm->GetLinkerSetKey()) != message_map.end()); in IsLinkableMessagePresent()
Dcollect_exported_headers.cpp53 llvm::sys::fs::recursive_directory_iterator end; in CollectExportedHeaderSet() local
55 for ( ; walker != end; walker.increment(ec)) { in CollectExportedHeaderSet()
/development/tools/apkcheck/src/com/android/apkcheck/
DTypeUtils.java118 int end = typeName.lastIndexOf("."); in packageNameOnly() local
119 if (end < 0) { in packageNameOnly()
123 return typeName.substring(0, end); in packageNameOnly()
/development/scripts/
Dnative_heapdump_viewer.py95 def __init__(self, start, end, offset, name): argument
97 self.end = end
125 end = int(m.group('end'), 16) variable
128 mappings.append(Mapping(start, end, offset, name))
140 if mappings[mid].end <= addr:
Dstack_core.py231 end = start + int(match.group(3))
233 offset_list.append([name, start, end])
234 return name, start, end
243 for file_name, start, end in offset_list:
244 if offset >= start and offset < end:
281 cur_name, start, end = self.ProcessCentralInfo(offset_list, central_info)
282 if not file_name and offset >= start and offset < end:
288 cur_name, start, end = self.ProcessCentralInfo(offset_list, central_info)
289 if not file_name and offset >= start and offset < end:
/development/ide/emacs/
Dandroid-compile.el118 (end (point)))
129 (while (search-forward-regexp android-compile-ignore-re end t)
/development/vndk/tools/definition-tool/tools/
Dremove_dt_needed.py86 end = offset
88 while _extract_buf_byte(buf, end) != 0:
89 end += 1
92 return buf[offset:end]
/development/samples/ApiDemos/src/com/example/android/apis/app/
DPrintCustomContent.java454 int end = -1; in print()
460 int oldEnd = end = start; in print()
461 while (i < writtenPageCount && (end - oldEnd) <= 1) { in print()
462 oldEnd = end; in print()
463 end = writtenPages.valueAt(i); in print()
466 PageRange pageRange = new PageRange(start, end); in print()
468 start = end = -1; in print()
/development/vndk/tools/definition-tool/tests/testdata/test_dex_file/
DExample.smali13 .end method
DHello.smali13 .end method
/development/vndk/tools/header-checker/header-abi-linker/src/
Dheader_abi_linker.cpp172 std::size_t end = std::min(i + kSourcesPerBatchThread, num_sources); in DeDuplicateAbiElementsThread() local
173 for (auto it = begin_it; it != begin_it + end; it++) { in DeDuplicateAbiElementsThread()
248 if (regex_matched_link_set->find(symbol) != regex_matched_link_set->end()) { in QueryRegexMatches()
262 while (it != link_set.end()) { in CreateRegexMatchExprFromSet()
266 if (++it != link_set.end()) { in CreateRegexMatchExprFromSet()
290 exported_headers_.end()) { in LinkDecl()
298 if (it == link_set->end()) { in LinkDecl()
/development/vndk/tools/vtable-dumper/
Delf_handling.cpp194 if (It == mAddrToSymbolRef.end()) { in initVTableRanges()
206 std::sort(mVTables.begin(), mVTables.end()); in initVTableRanges()
225 It = std::lower_bound(mVTables.begin(), mVTables.end(), RelOffset); in identifyVTable()
311 if (It == mAddrToSymbolRef.end()) { in relativeRelocation()
443 VTable::func_iterator VTable::end() const { in end() function in VTable
456 std::sort(mFunctions.begin(), mFunctions.end()); in sortVFunctions()
/development/vndk/tools/sourcedr/sourcedr/
Dninja.py261 return (self._kinds[match.lastindex - 1], match.start(), match.end())
328 self._line_pos = match.end()
337 self._line_pos = match.end()
363 kind, start, end = match
369 self._line_pos = end
374 self._line_buf[start:end])
376 self._next_pos = end
444 kind, start, end = match
448 self._line_pos = end
451 builder.append_raw(self._line_buf[start:end])
[all …]
/development/samples/browseable/BasicAndroidKeyStore/src/com.example.android.basicandroidkeystore/
DBasicAndroidKeyStoreFragment.java162 Calendar end = new GregorianCalendar(); in createKeys() local
163 end.add(Calendar.YEAR, 1); in createKeys()
192 .setEndDate(end.getTime()) in createKeys()
205 .setCertificateNotAfter(end.getTime()) in createKeys()
/development/host/windows/usb/adb_winapi_test/
Dadb_winapi_test.cpp668 const DWORD* end = g_expected_errors + ARRAYSIZE(g_expected_errors); in get_error_description() local
669 const DWORD* found = std::find(g_expected_errors, end, err); in get_error_description()
670 if (found != end) { in get_error_description()
680 const DWORD* end = g_expected_errors + ARRAYSIZE(g_expected_errors); in is_expected_error() local
681 return std::find(g_expected_errors, end, err) != end; in is_expected_error()
804 it != read_errors.end(); ++it) { in TestCloseRaceCondition()
/development/samples/browseable/BasicMediaDecoder/src/com.example.android.basicmediadecoder/
DMainActivity.java77 mTimeAnimator.end(); in onPause()
170 mTimeAnimator.end(); in startPlayback()
/development/tools/mkstubs/src/com/android/mkstubs/stubber/
DMethodStubber.java144 Label start, Label end, int index) { in visitLocalVariable() argument
174 public void visitTryCatchBlock(Label start, Label end, Label handler, String type) { in visitTryCatchBlock() argument
/development/samples/browseable/PermissionRequest/src/com.example.android.permissionrequest/
DSimpleWebServer.java131 int end = line.indexOf(' ', start); in handle() local
132 route = line.substring(start, end); in handle()

123