Lines Matching defs:in
4 * you may not use this file except in compliance with the License.
9 * Unless required by applicable law or agreed to in writing, software
206 LOG_COMPILER(ERROR) << "depend in of " << GetId() << GateMetaData::Str(GetOpCode()) << "is "
251 log << "\",\"in\":[";
564 auto in = inList[idx];
565 if (in == nullptr) {
568 NewIn(idx, in);
575 void Gate::NewIn(size_t idx, Gate *in)
577 GetIn(idx)->SetGate(in);
579 if (in->IsFirstOutNull()) {
582 curOut->SetNextOut(in->GetFirstOut());
583 in->GetFirstOut()->SetPrevOut(curOut);
586 in->SetFirstOut(curOut);
589 void Gate::ModifyIn(size_t idx, Gate *in)
592 NewIn(idx, in);
829 oss << "\",\"in\":[";
904 log << "\", in=[";