Searched refs:end (Results 151 - 169 of 169) sorted by relevance

1234567

/art/tools/
H A Dcpplint.py906 # end of the line. Otherwise, we try to remove spaces from the right side,
945 """We are inside a comment, find the end marker."""
953 def RemoveMultiLineCommentsFromRange(lines, begin, end):
957 for i in range(begin, end):
971 'Could not find end of multi-line comment')
1102 # Did not find endchar before end of file, give up
1237 """Logs an error if there is no newline char at the end of the file.
1251 'Could not find a newline character at the end of the file.')
1390 This is mostly used for checking end of namespace comments.
1414 # Try to find the end o
[all...]
/art/compiler/
H A Dimage_writer.cc181 // Write out the image bitmap at the page aligned start of the image end.
206 image_bitmap_->Set(obj); // Mark the obj as mutated, since we will end up changing it.
210 if (hash_it != saved_hashes_map_.end()) {
384 // Grow the image closer to the end by the object we just assigned.
552 // Add the string to the end of the char array.
562 if (it == existing_strings.end()) {
903 // know where image_roots is going to end up
953 // Note that image_end_ is left at end of used space
/art/compiler/optimizing/
H A Dnodes.h394 void SetLifetimeEnd(size_t end) { lifetime_end_ = end; } argument
/art/patchoat/
H A Dpatchoat.cc460 uintptr_t end = reinterpret_cast<uintptr_t>(heap_->End()); local
462 return o == nullptr || (begin <= obj && obj < end);
/art/runtime/
H A Druntime.cc1324 CHECK(it != compile_time_class_paths_.end());
1345 CHECK(it != method_verifiers_.end());
H A Ddex_file_verifier.cc315 ErrorStringPrintf("Map item after end of file: %x, size %x",
746 // Grab the end of the insns if there are no try_items.
820 ErrorStringPrintf("String data would go beyond end-of-file");
1092 // Return a pointer to the end of the annotations.
1312 ErrorStringPrintf("Out-of-bounds end of data subsection: %zx", next_offset);
1407 if (UNLIKELY(it == offset_to_type_map_.end())) {
1686 if (defined_classes_.find(item->class_idx_) != defined_classes_.end()) {
H A Dmonitor.cc428 * to return at the end of the 32-bit time epoch.
1150 for (auto it = list_.begin(); it != list_.end(); ) {
H A Djni_internal.cc101 std::replace(result.begin(), result.end(), '.', '/');
385 // Check this so we don't end up waiting for ourselves. We need to return "true" so the
499 return (it == libraries_.end()) ? nullptr : it->second;
/art/runtime/verifier/
H A Dmethod_verifier.cc591 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "code did not end where expected ("
612 uint32_t end = start + try_item->insn_count_; local
613 if ((start >= end) || (start >= insns_size) || (end > insns_size)) {
615 << " endAddr=" << end << " (size=" << insns_size << ")";
623 for (uint32_t dex_pc = start; dex_pc < end;
904 /* make sure the end of the switch is in range */
906 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "invalid array data end: at " << cur_offset
907 << ", data offset " << array_data_offset << ", end "
1026 /* make sure the end o
[all...]
/art/compiler/dex/
H A Dmir_graph.cc765 // Unreachable instruction, mark for no continuation and end basic block.
1029 /* Insert an MIR instruction to the end of a basic block. */
1041 for (std::vector<MIR*>::const_iterator it = insns.begin(); it != insns.end(); it++) {
1092 for (std::vector<MIR*>::const_iterator it = to_add.begin(); it != to_add.end(); it++) {
1352 std::replace(str.begin(), str.end(), match[i].before, match[i].after);
1678 // Loop head: it was already processed, mark end and copy exit blocks to the queue.
2069 // the last SSA number of the same dalvik register. At the end, if it is different than ssa_reg,
H A Dmir_optimization.cc981 const size_t end = (cu_->code_item->insns_size_in_code_units_ + 1u) / 2u; local
983 temp_scoped_alloc_->Alloc(end * sizeof(*temp_insn_data_), kArenaAllocGrowableArray));
/art/runtime/jdwp/
H A Djdwp_handler.cc1288 std::replace(pattern.begin(), pattern.end(), '.', '/');
1297 std::replace(pattern.begin(), pattern.end(), '.', '/');
/art/runtime/hprof/
H A Dhprof.cc623 if (it != strings_.end()) {
911 // StaticField array at the end of this class.
/art/compiler/dex/portable/
H A Dmir_to_gbc.cc1587 DCHECK(it != mir_graph_->block_id_map_.end());
1945 it_end = placeholder_bb_->end(); it != it_end;) {
/art/compiler/dex/quick/arm64/
H A Dassemble_arm64.cc54 * a{n}e: argument {n} end bit position /
768 ((1 << (encoder->field_loc[i].end + 1)) - 1);
H A Dtarget_arm64.cc829 return res != mapping_.end() ? res->second : RegStorage::InvalidReg();
/art/compiler/dex/quick/x86/
H A Dint_x86.cc264 LIR* end = NewLIR0(kPseudoTargetLabel); local
265 that_is_it->target = end;
H A Dtarget_x86.cc1332 // We will use the register at the end to calculate result.
1348 // We will use the register at the end to calculate result.
1377 // We will use the register at the end to calculate result.
1416 // And join up at the end.
2402 return res != mapping_.end() ? res->second : RegStorage::InvalidReg();
2500 * end up half-promoted. In those cases, we must flush the promoted
/art/compiler/utils/
H A Dassembler_thumb_test.cc200 ASSERT_NE(results, test_results.end());
216 // Check that we are at the end.

Completed in 510 milliseconds

1234567