/art/test/994-breakpoint-line/ |
D | expected.txt | 3 argument was true 6 argument was false 9 argument was true 12 argument was false 15 argument was true 17 argument was false 19 argument was true 22 argument was false 24 argument was true 27 argument was false [all …]
|
/art/cmdline/ |
D | README.md | 72 (invalid argument), neither will `--apple:fruit` (fruit is not an int) nor `--orange:1234` (1234 is 77 The 'Define' method takes one or more aliases for the argument. Common examples might be `{"-h", 78 "--help"}` where both `--help` and `-h` are aliases for the same argument. 80 The simplest kind of argument just tests for presence, but we often want to parse out a particular 88 After an argument definition is provided, the parser builder needs to know what type the argument 89 will be in order to provide the type safety and make sure the rest of the argument definition is 90 correct as early as possible (in essence, everything but the parsing of the argument name is done at 96 argument that only cares about presence). 104 When parsing an enumeration, it might be very convenient to map a list of possible argument string 120 When an argument definition has multiple aliases with no wildcards, it might be convenient to [all …]
|
/art/cmdline/detail/ |
D | cmdline_parse_argument_detail.h | 384 virtual CmdlineResult ParseArgumentSingle(const std::string& argument) { in ParseArgumentSingle() 392 if (argument == name) { in ParseArgumentSingle() 406 "Argument value '" + argument + "' does not match any of known valid " in ParseArgumentSingle() 416 if (arg_def_token == argument) { in ParseArgumentSingle() 433 "Argument value '" + argument + "' does not match any of known valid" in ParseArgumentSingle() 442 CmdlineParseResult<TArg> result = type_parser.ParseAndAppend(argument, existing); in ParseArgumentSingle() 449 CmdlineParseResult<TArg> result = type_parser.Parse(argument); in ParseArgumentSingle()
|
/art/test/451-regression-add-float/ |
D | info.txt | 1 Tests a regression in float addition for optimizing. The second argument
|
/art/test/503-dead-instructions/smali/ |
D | DeadInstructions.smali | 28 # code, the verifier will not check the argument count. So 41 # Give a non-sequential pair for the long argument.
|
/art/test/954-invoke-polymorphic-verifier/ |
D | expected.txt | 4 …nit>(): void TooFewArguments.<init>(): Rejecting invocation, expected 2 argument registers, method… 5 …it>(): void TooManyArguments.<init>(): Rejecting invocation, expected 4 argument registers, method… 6 … failed to verify: void BadThis.<init>(): void BadThis.<init>(): 'this' argument 'Precise Referenc…
|
/art/test/988-method-trace/ |
D | expected.txt | 119 …actStringBuilder.append(java.lang.String) -> <class java.lang.StringBuilder: Bad argument: -19 < 0> 120 …ng.StringBuilder.append(java.lang.String) -> <class java.lang.StringBuilder: Bad argument: -19 < 0> 137 …va.lang.AbstractStringBuilder.append(int) -> <class java.lang.StringBuilder: Bad argument: -19 < 0> 138 …ilder java.lang.StringBuilder.append(int) -> <class java.lang.StringBuilder: Bad argument: -19 < 0> 151 …actStringBuilder.append(java.lang.String) -> <class java.lang.StringBuilder: Bad argument: -19 < 0> 152 …ng.StringBuilder.append(java.lang.String) -> <class java.lang.StringBuilder: Bad argument: -19 < 0> 156 …StringFactory.newStringFromChars(int,int,char[]) -> <class java.lang.String: Bad argument: -19 < 0> 157 …StringFactory.newStringFromChars(char[],int,int) -> <class java.lang.String: Bad argument: -19 < 0> 158 …a.lang.String java.lang.StringBuilder.toString() -> <class java.lang.String: Bad argument: -19 < 0> 168 …lang.Throwable.fillInStackTrace() -> <class java.lang.Error: java.lang.Error: Bad argument: -19 < 0 [all …]
|
/art/tools/ |
D | art | 225 # -cp argument is split by ':' and stored in DEX2OAT_CLASSPATH 226 # -Ximage argument is stored in DEX2OAT_BOOT_IMAGE 227 # -Xbootclasspath argument is stored in DEX2OAT_BCP 228 # -Xbootclasspath-locations argument is stored in DEX2OAT_BCP_LOCS 238 # Remove '-Ximage:' from the argument. 243 # Remove '-Xbootclasspath:' from the argument. 248 # Remove '-Xbootclasspath-locations:' from the argument. 253 # only supports one -cp argument. 480 # -cp argument is split by ':' and stored in DEX2OAT_CLASSPATH 481 # -Ximage argument is stored in DEX2OAT_BOOT_IMAGE
|
/art/runtime/arch/mips/ |
D | quick_entrypoints_mips.S | 89 addiu $sp, $sp, -ARG_SLOT_SIZE # reserve argument slots on the stack 136 addiu $sp, $sp, -ARG_SLOT_SIZE # reserve argument slots on the stack 141 addiu $sp, $sp, ARG_SLOT_SIZE # remove argument slots on the stack 255 addiu $sp, $sp, -ARG_SLOT_SIZE # reserve argument slots on the stack 273 addiu $sp, $sp, -ARG_SLOT_SIZE # reserve argument slots on the stack 295 addiu $sp, $sp, ARG_SLOT_SIZE # Remove argument slots from the stack. 446 addiu $sp, $sp, -ARG_SLOT_SIZE # reserve argument slots on the stack 467 addiu $sp, $sp, ARG_SLOT_SIZE # remove argument slots on the stack 660 addiu $sp, $sp, -16 # make space for argument slots for memcpy 909 lw $\reg, -4($\next_arg) # next_arg points to argument after the current one (offset is 4) [all …]
|
/art/test/800-smali/smali/ |
D | b_27148248.smali | 18 # used to throw with argument of non-reference type.
|
/art/tools/bisection_search/ |
D | README.md | 24 2. Raw-cmd invocation, dalvikvm command is accepted as an argument. 56 --arg [ARG [ARG ...]] argument passed to test
|
/art/test/954-invoke-polymorphic-verifier/smali/ |
D | TooFewArguments.smali | 30 # Invoke with one argument too few for prototype.
|
D | TooManyArguments.smali | 32 # Invoke with one argument too many for prototype.
|
/art/compiler/optimizing/ |
D | inliner.cc | 1865 HInstruction* argument = invoke_instruction->InputAt(parameter_index); in TryBuildAndInlineHelper() local 1866 if (argument->IsNullConstant()) { in TryBuildAndInlineHelper() 1868 } else if (argument->IsIntConstant()) { in TryBuildAndInlineHelper() 1869 current->ReplaceWith(callee_graph->GetIntConstant(argument->AsIntConstant()->GetValue())); in TryBuildAndInlineHelper() 1870 } else if (argument->IsLongConstant()) { in TryBuildAndInlineHelper() 1871 current->ReplaceWith(callee_graph->GetLongConstant(argument->AsLongConstant()->GetValue())); in TryBuildAndInlineHelper() 1872 } else if (argument->IsFloatConstant()) { in TryBuildAndInlineHelper() 1874 callee_graph->GetFloatConstant(argument->AsFloatConstant()->GetValue())); in TryBuildAndInlineHelper() 1875 } else if (argument->IsDoubleConstant()) { in TryBuildAndInlineHelper() 1877 callee_graph->GetDoubleConstant(argument->AsDoubleConstant()->GetValue())); in TryBuildAndInlineHelper() [all …]
|
D | intrinsics_x86_64.cc | 1222 CpuRegister argument = locations->InAt(1).AsRegister<CpuRegister>(); in VisitStringCompareTo() local 1223 __ testl(argument, argument); in VisitStringCompareTo() 2676 CpuRegister argument = CpuRegister(calling_convention.GetRegisterAt(0)); in VisitIntegerValueOf() local 2701 DCHECK_NE(out.AsRegister(), argument.AsRegister()); in VisitIntegerValueOf() 2702 codegen_->LoadBootImageAddress(argument, info.array_data_boot_image_reference); in VisitIntegerValueOf() 2705 __ movl(out, Address(argument, out, TIMES_4, 0)); in VisitIntegerValueOf()
|
/art/tools/jvmti-agents/jit-load/ |
D | README.md | 22 * To use with run-test or testrunner.py use the --with-agent argument.
|
/art/test/1931-monitor-events/ |
D | expected.txt | 22 Waiting with an illegal argument (negative timeout)
|
/art/runtime/arch/mips64/ |
D | quick_entrypoints_mips64.S | 973 # t2 = number of argument bytes remain 977 lbu $t3, 0($t0) # get argument type from shorty 1061 dsubu $sp, $sp, $t3 # reserve stack space for argument array 1065 daddiu $t2, $a2, -4 # t2 = number of argument bytes remain (skip this ptr) 1075 ble $t2, $zero, call_fn # t2 = number of argument bytes remain 1077 lw $t3, 0($t1) # load from argument array 1081 bgt $t2, $zero, 1b # t2 = number of argument bytes remain 1163 dsubu $sp, $sp, $t3 # reserve stack space for argument array 1167 move $t2, $a2 # t2 = number of argument bytes remain 1178 ble $t2, $zero, call_sfn # t2 = number of argument bytes remain [all …]
|
/art/tools/jvmti-agents/ti-fast/ |
D | README.md | 20 * If 'log' is the first argument the event handlers will LOG(INFO) when they are
|
/art/runtime/ |
D | reflection.cc | 397 ObjPtr<mirror::Object> argument = in CheckMethodArguments() local 399 if (argument != nullptr && !argument->InstanceOf(param_type)) { in CheckMethodArguments() 401 << argument->PrettyTypeOf() << " as argument " << (i + 1) in CheckMethodArguments()
|
/art/tools/runtime_memusage/ |
D | README | 63 the -m argument or by prune_sanitizer_output.py
|
/art/build/ |
D | Android.bp | 24 "bugprone-argument-comment",
|
D | Android.gtest.mk | 721 $$(error argument mismatch $(1) and ($2)) 728 $$(error argument mismatch $(1) and ($2))
|
/art/tools/jfuzz/ |
D | README.md | 70 --jfuzz_arg : argument for jfuzz
|
/art/dexdump/ |
D | dexdump.cc | 1707 size_t argument = 3; in dumpCallSite() local 1783 fprintf(gOutFile, " link_argument[%zu] : %s (%s)\n", argument, value.c_str(), type); in dumpCallSite() 1785 fprintf(gOutFile, "<link_argument index=\"%zu\" type=\"%s\" value=", argument, type); in dumpCallSite() 1791 argument++; in dumpCallSite()
|