HomeSort by relevance Sort by last modified time
    Searched defs:parameter1 (Results 1 - 4 of 4) sorted by null

  /art/compiler/optimizing/
nodes_test.cc 79 HInstruction* parameter1 = new (&allocator) HParameterValue(0, Primitive::kPrimNot); local
81 entry->AddInstruction(parameter1);
85 ASSERT_FALSE(parameter1->HasUses());
87 HInstruction* to_insert = new (&allocator) HNullCheck(parameter1, 0);
90 ASSERT_TRUE(parameter1->HasUses());
91 ASSERT_TRUE(parameter1->GetUses().HasOnlyOneUse());
125 HInstruction* parameter1 = new (&allocator) HParameterValue(0, Primitive::kPrimNot); local
126 HInstruction* with_environment = new (&allocator) HNullCheck(parameter1, 0);
127 entry->AddInstruction(parameter1);
131 ASSERT_TRUE(parameter1->HasUses())
    [all...]
bounds_check_elimination_test.cc 51 HInstruction* parameter1 = new (&allocator) local
55 entry->AddInstruction(parameter1);
71 HNullCheck* null_check = new (&allocator) HNullCheck(parameter1, 0);
84 null_check = new (&allocator) HNullCheck(parameter1, 0);
95 null_check = new (&allocator) HNullCheck(parameter1, 0);
108 null_check = new (&allocator) HNullCheck(parameter1, 0);
156 HInstruction* parameter1 = new (&allocator) local
160 entry->AddInstruction(parameter1);
178 HNullCheck* null_check = new (&allocator) HNullCheck(parameter1, 0);
228 HInstruction* parameter1 = new (&allocator local
    [all...]
  /frameworks/wilhelm/src/
ThreadPool.c 40 int parameter1 = closure.mParameter1; local
46 (*handler_ppi)(context1, context2, parameter1);
54 (*handler_ppii)(context1, context2, parameter1, parameter2);
63 (*handler_piipp)(context1, parameter1, parameter2, context2, context3);
251 void *context1, void *context2, void *context3, int parameter1, int parameter2)
277 closure->mParameter1 = parameter1;
372 void *context1, void *context2, int parameter1)
376 context1, context2, NULL, parameter1, 0);
380 void *context1, void *context2, int parameter1, int parameter2)
384 context1, context2, NULL, parameter1, parameter2)
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/annotationprocessor/
ProcessMethodAdapters.java 151 TypeMirror parameter1 = parameters.get(0).asType(); local
153 if (parameter1.getKind() == TypeKind.DECLARED &&
154 typeUtils.isAssignable(parameter1, viewElement)) {
160 if (!typeUtils.isAssignable(parameter1, viewStubProxy)) {

Completed in 130 milliseconds