Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:Elements

1384   // Get the struct elements for these annotations.
3398 // Wide strings have either 2-byte or 4-byte elements.
3400 SmallVector<uint16_t, 32> Elements;
3401 Elements.reserve(NumElements);
3404 Elements.push_back(E->getCodeUnit(i));
3405 Elements.resize(NumElements);
3406 return llvm::ConstantDataArray::get(VMContext, Elements);
3410 SmallVector<uint32_t, 32> Elements;
3411 Elements.reserve(NumElements);
3414 Elements.push_back(E->getCodeUnit(i));
3415 Elements.resize(NumElements);
3416 return llvm::ConstantDataArray::get(VMContext, Elements);
4142 // We rely on MapVector insertions adding new elements to the end