Lines Matching defs:into
425 MergeIncludedKeycodes(KeyNamesInfo * into, KeyNamesInfo * from,
430 into->errorCount += from->errorCount;
433 if (into->name == NULL)
435 into->name = from->name;
451 if (!AddKeyName(into, i, buf, thisMerge, from->fileID, False))
452 into->errorCount++;
461 if (!AddIndicatorName(into, led))
462 into->errorCount++;
466 if (!MergeAliases(&into->aliases, &from->aliases, merge))
467 into->errorCount++;
470 if ((into->explicitMin < 0)
471 || (into->explicitMin > from->explicitMin))
472 into->effectiveMin = into->explicitMin = from->explicitMin;
476 if ((into->explicitMax < 0)
477 || (into->explicitMax < from->explicitMax))
478 into->effectiveMax = into->explicitMax = from->explicitMax;