HomeSort by relevance Sort by last modified time
    Searched full:arg2 (Results 76 - 100 of 1963) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/
MarkerIgnoringBase.java 54 public void trace(Marker marker, String format, Object arg1, Object arg2) {
55 trace(format, arg1, arg2);
78 public void debug(Marker marker, String format, Object arg1, Object arg2) {
79 debug(format, arg1, arg2);
102 public void info(Marker marker, String format, Object arg1, Object arg2) {
103 info(format, arg1, arg2);
126 public void warn(Marker marker, String format, Object arg1, Object arg2) {
127 warn(format, arg1, arg2);
150 public void error(Marker marker, String format, Object arg1, Object arg2) {
151 error(format, arg1, arg2);
    [all...]
SubstituteLogger.java 65 public void trace(String format, Object arg1, Object arg2) {
66 delegate().trace(format, arg1, arg2);
89 public void trace(Marker marker, String format, Object arg1, Object arg2) {
90 delegate().trace(marker, format, arg1, arg2);
113 public void debug(String format, Object arg1, Object arg2) {
114 delegate().debug(format, arg1, arg2);
137 public void debug(Marker marker, String format, Object arg1, Object arg2) {
138 delegate().debug(marker, format, arg1, arg2);
161 public void info(String format, Object arg1, Object arg2) {
162 delegate().info(format, arg1, arg2);
    [all...]
  /art/test/510-checker-try-catch/src/
Main.java 29 TestPath(boolean arg1, boolean arg2, int expected) {
31 this.arg2 = arg2;
36 public boolean arg2; field in class:Main.TestPath
45 Object[] arguments = new Object[] { path.arg1, path.arg2 };
  /cts/tests/tests/os/src/android/os/cts/
MessageTest.java 30 public static final int ARG2 = 2;
85 assertEquals(0, message.arg2);
94 Message message = Message.obtain(mHandler, WHAT, ARG1, ARG2, OBJ);
100 assertEquals(message.arg2, expected.arg2);
129 Message expected = Message.obtain(mHandler, WHAT, ARG1, ARG2);
133 assertEquals(ARG2, expected.arg2);
137 Message expected = Message.obtain(mHandler, WHAT, ARG1, ARG2, OBJ);
141 assertEquals(ARG2, expected.arg2)
    [all...]
  /external/llvm/test/Transforms/DeadStoreElimination/
2011-03-25-DSEMiscompile.ll 10 define ghccc void @Func1(i32* noalias %Arg1, i32* noalias %Arg2, i32* %Arg3, i32 %Arg4) {
12 store i32 add (i32 ptrtoint ([0 x i32]* @A to i32), i32 1), i32* %Arg2
13 ; CHECK: store i32 add (i32 ptrtoint ([0 x i32]* @A to i32), i32 1), i32* %Arg2
17 %ln2gD = getelementptr i32, i32* %Arg2, i32 -3
21 tail call ghccc void @Func2(i32* %Arg1, i32* %Arg2, i32* %Arg3, i32 %Arg4) nounwind
  /external/swiftshader/third_party/LLVM/test/Transforms/DeadStoreElimination/
2011-03-25-DSEMiscompile.ll 10 define cc10 void @Func1(i32* noalias %Arg1, i32* noalias %Arg2, i32* %Arg3, i32 %Arg4) {
12 store i32 add (i32 ptrtoint ([0 x i32]* @A to i32), i32 1), i32* %Arg2
13 ; CHECK: store i32 add (i32 ptrtoint ([0 x i32]* @A to i32), i32 1), i32* %Arg2
17 %ln2gD = getelementptr i32* %Arg2, i32 -3
21 tail call cc10 void @Func2(i32* %Arg1, i32* %Arg2, i32* %Arg3, i32 %Arg4) nounwind
  /external/llvm/test/CodeGen/X86/
2013-10-14-FastISel-incorrect-vreg.ll 19 ; Spill %arg2.
35 define i64 @test_bitcast(i64 (i64, i64, i64)** %arg, i1 %bool, i64 %arg2) {
51 %res = call i64 %fct_ptr(i64 %arg2, i64 %arg2, i64 %arg2)
58 ; Spill %arg2.
74 define i64 @test_inttoptr(i64 (i64, i64, i64)** %arg, i1 %bool, i64 %arg2) {
90 %res = call i64 %fct_ptr(i64 %arg2, i64 %arg2, i64 %arg2)
    [all...]
exedepsfix-broadcast.ll 7 define <4 x float> @ExeDepsFix_broadcastss(<4 x float> %arg, <4 x float> %arg2) {
17 %max_is_x = fcmp oge <4 x float> %floatcast, %arg2
18 %max = select <4 x i1> %max_is_x, <4 x float> %floatcast, <4 x float> %arg2
22 define <8 x float> @ExeDepsFix_broadcastss256(<8 x float> %arg, <8 x float> %arg2) {
32 %max_is_x = fcmp oge <8 x float> %floatcast, %arg2
33 %max = select <8 x i1> %max_is_x, <8 x float> %floatcast, <8 x float> %arg2
37 define <4 x float> @ExeDepsFix_broadcastss_inreg(<4 x float> %arg, <4 x float> %arg2, i32 %broadcastvalue) {
50 %max_is_x = fcmp oge <4 x float> %floatcast, %arg2
51 %max = select <4 x i1> %max_is_x, <4 x float> %floatcast, <4 x float> %arg2
55 define <8 x float> @ExeDepsFix_broadcastss256_inreg(<8 x float> %arg, <8 x float> %arg2, i32 %broadcastvalue)
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
callback.h 206 template <typename Arg1, typename Arg2>
209 typedef void (*FunctionType)(Arg1 arg1, Arg2 arg2);
212 Arg1 arg1, Arg2 arg2)
214 arg1_(arg1), arg2_(arg2) {}
227 Arg2 arg2_;
230 template <typename Class, typename Arg1, typename Arg2>
233 typedef void (Class::*MethodType)(Arg1 arg1, Arg2 arg2);
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
callback.h 206 template <typename Arg1, typename Arg2>
209 typedef void (*FunctionType)(Arg1 arg1, Arg2 arg2);
212 Arg1 arg1, Arg2 arg2)
214 arg1_(arg1), arg2_(arg2) {}
227 Arg2 arg2_;
230 template <typename Class, typename Arg1, typename Arg2>
233 typedef void (Class::*MethodType)(Arg1 arg1, Arg2 arg2);
    [all...]
  /external/strace/
keyctl.c 271 kernel_ulong_t arg2 = tcp->u_arg[1]; local
289 keyctl_get_keyring_id(tcp, arg2, arg3);
293 printstr(tcp, arg2);
297 keyctl_update_key(tcp, arg2, arg3, arg4);
304 print_keyring_serial_number(arg2);
309 keyctl_handle_key_key(tcp, arg2, arg3);
315 keyctl_read_key(tcp, arg2, arg3, arg4, cmd != KEYCTL_READ);
319 keyctl_keyring_search(tcp, arg2, arg3, arg4, arg5);
323 keyctl_chown_key(tcp, arg2, arg3, arg4);
327 keyctl_setperm_key(tcp, arg2, arg3)
    [all...]
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
MessageTest.java 54 m.arg2 = 42;
63 assertThat(m2.arg2, equalTo(m.arg2));
112 int arg2 = 5; local
113 Message m = Message.obtain(h, what, arg1, arg2);
118 assertThat(m.arg2, equalTo(arg2));
126 int arg2 = 5; local
128 Message m = Message.obtain(h, what, arg1, arg2, obj);
133 assertThat(m.arg2, equalTo(arg2))
    [all...]
  /external/llvm/test/CodeGen/AMDGPU/
cndmask-no-def-vcc.ll 11 define void @vcc_shrink_vcc_def(float %arg, i32 %arg1, float %arg2, i32 %arg3) {
16 %tmp5 = fcmp ogt float %arg2, 0.000000e+00
17 %tmp6 = fcmp olt float %arg2, 1.000000e+00
38 define void @preserve_condition_undef_flag(float %arg, i32 %arg1, float %arg2) {
43 %tmp5 = fcmp ogt float %arg2, 0.000000e+00
44 %tmp6 = fcmp olt float %arg2, 1.000000e+00
  /external/swiftshader/third_party/LLVM/test/CodeGen/CellSPU/
shift_ops.ll 26 define i16 @shlh_i16_1(i16 %arg1, i16 %arg2) {
27 %A = shl i16 %arg1, %arg2
31 define i16 @shlh_i16_2(i16 %arg1, i16 %arg2) {
32 %A = shl i16 %arg2, %arg1
36 define signext i16 @shlh_i16_3(i16 signext %arg1, i16 signext %arg2) {
37 %A = shl i16 %arg1, %arg2
41 define signext i16 @shlh_i16_4(i16 signext %arg1, i16 signext %arg2) {
42 %A = shl i16 %arg2, %arg1
46 define zeroext i16 @shlh_i16_5(i16 zeroext %arg1, i16 zeroext %arg2) {
47 %A = shl i16 %arg1, %arg2
    [all...]
  /external/valgrind/coregrind/m_syswrap/
syswrap-generic.c     [all...]
  /external/v8/src/compiler/
code-assembler.h 322 Node* arg2);
324 Node* arg2, Node* arg3);
326 Node* arg2, Node* arg3, Node* arg4);
328 Node* arg2, Node* arg3, Node* arg4, Node* arg5);
334 Node* arg1, Node* arg2);
336 Node* arg1, Node* arg2, Node* arg3);
338 Node* arg1, Node* arg2, Node* arg3, Node* arg4);
340 Node* arg1, Node* arg2, Node* arg3, Node* arg4,
343 Node* arg1, Node* arg2, Node* arg3, Node* arg4,
358 Node* arg2, size_t result_size = 1)
    [all...]
  /external/clang/test/CodeGenCXX/
instantiate-blocks.cpp 24 ^ T1 (char ch, T arg, T1 arg2, double d1) { byref_block_arg = arg2;
  /external/compiler-rt/test/BlocksRuntime/
rettypepromotion.c 25 void sortWithBlock(long (^comp)(void *arg1, void *arg2)) {
29 sortWithBlock(^(void *arg1, void *arg2) {
  /external/curl/tests/libtest/
test610.pl 23 my $arg2 = shift @ARGV;
24 move($arg,$arg2) || die "$!";
  /external/llvm/test/Analysis/CFLAliasAnalysis/Steensgaard/
arguments-globals.ll 12 define void @test(i1 %c, i32* %arg1, i32* %arg2) {
16 %B = select i1 %c, i32* %arg1, i32* %arg2
  /external/llvm/test/Analysis/DivergenceAnalysis/AMDGPU/
kernel-args.ll 6 ; CHECK-NOT; %arg2
12 define amdgpu_ps void @main([4 x <16 x i8>] addrspace(2)* byval %arg0, float inreg %arg1, i32 inreg %arg2, <2 x i32> %arg3, <3 x i32> %arg4, float %arg5, i32 %arg6) #0 {
  /external/syslinux/gnu-efi/gnu-efi-3.0/inc/ia64/
efilibplat.h 60 IN UINT64 Arg2,
73 IN UINT64 Arg2,
  /libcore/ojluni/src/main/java/sun/misc/
MessageUtils.java 47 public static String subst(String patt, String arg1, String arg2) {
48 String args[] = { arg1, arg2 };
52 public static String subst(String patt, String arg1, String arg2,
54 String args[] = { arg1, arg2, arg3 };
85 public static String substProp(String propName, String arg1, String arg2) {
86 return subst(System.getProperty(propName), arg1, arg2);
89 public static String substProp(String propName, String arg1, String arg2,
91 return subst(System.getProperty(propName), arg1, arg2, arg3);
  /prebuilts/go/darwin-x86/src/runtime/
cpuidlow_amd64.s 5 // func cpuid_low(arg1, arg2 uint32) (eax, ebx, ecx, edx uint32)
8 MOVL arg2+4(FP), CX
  /prebuilts/go/linux-x86/src/runtime/
cpuidlow_amd64.s 5 // func cpuid_low(arg1, arg2 uint32) (eax, ebx, ecx, edx uint32)
8 MOVL arg2+4(FP), CX

Completed in 2270 milliseconds

1 2 34 5 6 7 8 91011>>