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

1 2

  /art/compiler/optimizing/
nodes_test.cc 80 HInstruction* parameter1 = new (&allocator) HParameterValue( local
84 entry->AddInstruction(parameter1);
88 ASSERT_FALSE(parameter1->HasUses());
90 HInstruction* to_insert = new (&allocator) HNullCheck(parameter1, 0);
93 ASSERT_TRUE(parameter1->HasUses());
94 ASSERT_TRUE(parameter1->GetUses().HasExactlyOneElement());
129 HInstruction* parameter1 = new (&allocator) HParameterValue( local
131 HInstruction* with_environment = new (&allocator) HNullCheck(parameter1, 0);
132 entry->AddInstruction(parameter1);
136 ASSERT_TRUE(parameter1->HasUses())
    [all...]
bounds_check_elimination_test.cc 72 HInstruction* parameter1 = new (&allocator_) local
76 entry->AddInstruction(parameter1);
92 HNullCheck* null_check = new (&allocator_) HNullCheck(parameter1, 0);
105 null_check = new (&allocator_) HNullCheck(parameter1, 0);
116 null_check = new (&allocator_) HNullCheck(parameter1, 0);
129 null_check = new (&allocator_) HNullCheck(parameter1, 0);
169 HInstruction* parameter1 = new (&allocator_) local
173 entry->AddInstruction(parameter1);
191 HNullCheck* null_check = new (&allocator_) HNullCheck(parameter1, 0);
233 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 158 TypeMirror parameter1 = parameters.get(0).asType(); local
160 if (parameter1.getKind() == TypeKind.DECLARED &&
161 typeUtils.isAssignable(parameter1, viewElement)) {
167 if (!typeUtils.isAssignable(parameter1, viewStubProxy)) {