/development/vndk/tools/sourcedr/sourcedr/blueprint/tests/ |
D | test_lexer.py | 133 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/ |
D | dalvik.gdb | 33 end 43 end 44 end 53 end 65 end 66 end 72 end
|
/development/vndk/tools/header-checker/header-abi-dumper/src/ |
D | fixed_argv.h | 57 end = argv_.rend(); it != end; ++it) { in GetLastArg() local 82 argv_.insert(argv_.end(), args.begin(), args.end()); in PushForwardArgs()
|
D | ast_util.h | 33 if (type_id_it == qual_type_to_type_id_cache_.end()) { in GetTypeId()
|
/development/vndk/tools/sourcedr/sourcedr/blueprint/ |
D | blueprint.py | 147 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/ |
D | SecretKeyWrapper.java | 74 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/ |
D | adb_object_handle.cpp | 114 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/ |
D | ir_representation.cpp | 79 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()
|
D | collect_exported_headers.cpp | 53 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/ |
D | TypeUtils.java | 118 int end = typeName.lastIndexOf("."); in packageNameOnly() local 119 if (end < 0) { in packageNameOnly() 123 return typeName.substring(0, end); in packageNameOnly()
|
/development/scripts/ |
D | native_heapdump_viewer.py | 95 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:
|
D | stack_core.py | 231 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/ |
D | android-compile.el | 118 (end (point))) 129 (while (search-forward-regexp android-compile-ignore-re end t)
|
/development/vndk/tools/definition-tool/tools/ |
D | remove_dt_needed.py | 86 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/ |
D | PrintCustomContent.java | 454 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/ |
D | Example.smali | 13 .end method
|
D | Hello.smali | 13 .end method
|
/development/vndk/tools/header-checker/header-abi-linker/src/ |
D | header_abi_linker.cpp | 172 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/ |
D | elf_handling.cpp | 194 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/samples/browseable/BasicAndroidKeyStore/src/com.example.android.basicandroidkeystore/ |
D | BasicAndroidKeyStoreFragment.java | 162 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/vndk/tools/sourcedr/sourcedr/ |
D | ninja.py | 261 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/BasicMediaDecoder/src/com.example.android.basicmediadecoder/ |
D | MainActivity.java | 77 mTimeAnimator.end(); in onPause() 170 mTimeAnimator.end(); in startPlayback()
|
/development/host/windows/usb/adb_winapi_test/ |
D | adb_winapi_test.cpp | 668 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/PermissionRequest/src/com.example.android.permissionrequest/ |
D | SimpleWebServer.java | 131 int end = line.indexOf(' ', start); in handle() local 132 route = line.substring(start, end); in handle()
|
/development/tools/mkstubs/src/com/android/mkstubs/stubber/ |
D | MethodStubber.java | 144 Label start, Label end, int index) { in visitLocalVariable() argument 174 public void visitTryCatchBlock(Label start, Label end, Label handler, String type) { in visitTryCatchBlock() argument
|