Searched defs:From (Results 1 - 25 of 94) sorted by last modified time

1234

/external/nist-sip/java/gov/nist/javax/sip/header/
H A DFrom.java39 * From SIP Header.
48 public final class From class in inherits:AddressParametersHeader,javax.sip.header.FromHeader
59 public From() { method in class:From
65 public From(To to) { method in class:From
146 * @param t tag to set. From tags are mandatory.
/external/llvm/include/llvm/ADT/
H A DPostOrderIterator.h59 bool insertEdge(NodeType *From, NodeType *To) { argument
76 // Return true if edge destination should be visited, called with From = 0 for
80 bool insertEdge(NodeType *From, NodeType *To) { return Visited.insert(To); } argument
H A DSmallVector.h587 iterator insert(iterator I, ItTy From, ItTy To) { argument
592 append(From, To);
599 size_t NumToInsert = std::distance(From, To);
619 std::copy(From, To, I);
634 *J = *From;
635 ++J; ++From;
639 this->uninitialized_copy(From, To, OldEnd);
H A DTinyPtrVector.h263 iterator insert(iterator I, ItTy From, ItTy To) { argument
266 if (From == To)
272 if (std::next(From) == To) {
273 Val = *From;
282 return Val.template get<VecTy*>()->insert(begin() + Offset, From, To);
/external/llvm/include/llvm/Analysis/
H A DLoopInfo.h729 /// replacementPreservesLCSSAForm - Returns true if replacing From with To
731 bool replacementPreservesLCSSAForm(Instruction *From, Value *To) { argument
738 if (I->getParent() == From->getParent())
747 return ToLoop->contains(getLoopFor(From->getParent()));
H A DLoopIterator.h117 bool insertEdge(BasicBlock *From, BasicBlock *To);
170 insertEdge(BasicBlock *From, BasicBlock *To) { argument
/external/llvm/include/llvm/CodeGen/
H A DMachineBasicBlock.h561 /// Take an instruction from MBB 'Other' at the position From, and insert it
564 /// If From points to a bundle of instructions, the whole bundle is moved.
565 void splice(iterator Where, MachineBasicBlock *Other, iterator From) { argument
567 if (Where != From)
568 splice(Where, Other, From, std::next(From));
571 /// Take a block of instructions from MBB 'Other' in the range [From, To),
577 iterator From, iterator To) {
579 From.getInstrIterator(), To.getInstrIterator());
576 splice(iterator Where, MachineBasicBlock *Other, iterator From, iterator To) argument
/external/llvm/include/llvm/IR/
H A DIRBuilder.h1474 Value *CreateExtractInteger(const DataLayout &DL, Value *From, argument
1477 IntegerType *IntTy = cast<IntegerType>(From->getType());
1482 Value *V = From;
/external/llvm/lib/Analysis/
H A DAliasAnalysis.cpp75 void AliasAnalysis::copyValue(Value *From, Value *To) { argument
77 AA->copyValue(From, To);
H A DAliasSetTracker.cpp522 void AliasSetTracker::copyValue(Value *From, Value *To) { argument
524 AA.copyValue(From, To);
527 PointerMapType::iterator I = PointerMap.find_as(From);
536 I = PointerMap.find_as(From);
H A DLoopPass.cpp144 void LPPassManager::cloneBasicBlockSimpleAnalysis(BasicBlock *From, argument
148 LP->cloneBasicBlockAnalysis(From, To, L);
H A DSparsePropagation.cpp203 /// isEdgeFeasible - Return true if the control flow edge from the 'From'
205 bool SparseSolver::isEdgeFeasible(BasicBlock *From, BasicBlock *To, argument
208 TerminatorInst *TI = From->getTerminator();
H A DValueTracking.cpp1545 // arguments. Idxs is the index within the nested struct From that we are
1550 static Value *BuildSubAggregate(Value *From, Value* To, Type *IndexedType, argument
1563 To = BuildSubAggregate(From, To, STy->getElementType(i), Idxs, IdxSkip,
1587 Value *V = FindInsertedValue(From, Idxs);
1605 // each of the elements of the substruct are known (ie, inserted into From by an
1609 static Value *BuildSubAggregate(Value *From, ArrayRef<unsigned> idx_range, argument
1612 Type *IndexedType = ExtractValueInst::getIndexedType(From->getType(),
1618 return BuildSubAggregate(From, To, IndexedType, Idxs, IdxSkip, InsertBefore);
/external/llvm/lib/Analysis/IPA/
H A DCallGraph.cpp131 void CallGraph::spliceFunction(const Function *From, const Function *To) { argument
132 assert(FunctionMap.count(From) && "No CallGraphNode for function!");
135 FunctionMapTy::iterator I = FunctionMap.find(From);
H A DGlobalsModRef.cpp160 void copyValue(Value *From, Value *To) override;
587 void GlobalsModRef::copyValue(Value *From, Value *To) { argument
588 AliasAnalysis::copyValue(From, To);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DWinCodeViewLineTables.cpp120 const MCSymbol *From, const MCSymbol *To) {
123 const MCExpr *FromRef = MCSymbolRefExpr::Create(From, Variant, Context),
119 EmitLabelDiff(MCStreamer &Streamer, const MCSymbol *From, const MCSymbol *To) argument
/external/llvm/lib/CodeGen/
H A DMachineSink.cpp83 MachineBasicBlock *From,
86 MachineBasicBlock *From,
285 MachineBasicBlock *From,
292 if (!CEBCandidates.insert(std::make_pair(From, To)))
338 // Avoid breaking back edge. From == To means backedge for single BB loop.
380 // new block if all the predecessors of "To", except for "From", are
381 // not dominated by "From". Given SSA property, this means these
284 isWorthBreakingCriticalEdge(MachineInstr *MI, MachineBasicBlock *From, MachineBasicBlock *To) argument
H A DMachineTraceMetrics.cpp295 // Return true if an edge from the From loop to the To loop is leaving a loop.
296 // Either of To and From can be null.
297 static bool isExitingLoop(const MachineLoop *From, const MachineLoop *To) { argument
298 return From && !From->contains(To);
437 bool insertEdge(const MachineBasicBlock *From, const MachineBasicBlock *To) {
442 // From is null once when To is the trace center block.
443 if (From) {
444 if (const MachineLoop *FromLoop = LB.Loops->getLoopFor(From)) {
446 if ((LB.Downward ? To : From)
[all...]
H A DSplitKit.cpp1355 SlotIndex From = enterIntvBefore(LeaveBefore); local
1356 useIntv(From, To);
1358 useIntv(Start, From);
1359 assert((!LeaveBefore || From <= LeaveBefore) && "Interference");
1370 SlotIndex From = enterIntvBefore(std::min(To, LeaveBefore)); local
1371 useIntv(From, To);
1373 useIntv(Start, From);
1374 assert((!LeaveBefore || From <= LeaveBefore) && "Interference");
1434 SlotIndex From = enterIntvBefore(std::min(Idx, BI.FirstInstr)); local
1435 useIntv(From, Id
[all...]
H A DStackColoring.cpp475 const AllocaInst *From = MFI->getObjectAllocation(SI.first); local
477 assert(To && From && "Invalid allocation object");
478 Allocas[From] = To;
487 if (From->getType() != To->getType()) {
488 BitCastInst *Cast = new BitCastInst(Inst, From->getType());
495 SP->adjustForColoring(From, To);
500 const_cast<AllocaInst *>(From)->replaceAllUsesWith(Inst);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp9849 SDValue From[] = { SDValue(EVE, 0), SDValue(OriginalLoad, 1) }; local
9851 DAG.ReplaceAllUsesOfValuesWith(From, To, 2);
H A DLegalizeTypes.cpp675 /// value. Update the DAG and NodeIds replacing any uses of From to use To
677 void DAGTypeLegalizer::ReplaceValueWith(SDValue From, SDValue To) { argument
678 assert(From.getNode() != To.getNode() && "Potential legalization loop!");
681 ExpungeNode(From.getNode());
689 DAG.ReplaceAllUsesOfValueWith(From, To);
693 ReplacedValues[From] = To;
729 // new uses of From due to CSE. If this happens, replace the new uses of
730 // From with To.
731 } while (!From.use_empty());
H A DLegalizeVectorOps.cpp46 void AddLegalizedOperand(SDValue From, SDValue To) { argument
47 LegalizedNodes.insert(std::make_pair(From, To));
49 if (From != To)
H A DSelectionDAG.cpp5801 /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
5804 /// This version assumes From has a single result value.
5807 SDNode *From = FromN.getNode(); local
5808 assert(From->getNumValues() == 1 && FromN.getResNo() == 0 &&
5810 assert(From != To.getNode() && "Cannot replace uses of with self");
5812 // Iterate over all the existing uses of From. New uses will be added
5814 // This specifically avoids visiting uses of From that arise while the
5816 // of CSE: If an existing node looks like From after one of its operands
5819 SDNode::use_iterator UI = From->use_begin(), UE = From
5853 ReplaceAllUsesWith(SDNode *From, SDNode *To) argument
5900 ReplaceAllUsesWith(SDNode *From, const SDValue *To) argument
5938 ReplaceAllUsesOfValueWith(SDValue From, SDValue To) argument
6015 ReplaceAllUsesOfValuesWith(const SDValue *From, const SDValue *To, unsigned Num) argument
6168 TransferDbgValues(SDValue From, SDValue To) argument
[all...]
H A DSelectionDAGISel.cpp557 unsigned From = I->first; local
567 if (TargetRegisterInfo::isVirtualRegister(From) &&
569 MRI.constrainRegClass(To, MRI.getRegClass(From));
571 MRI.replaceRegWith(From, To);
1459 // This is "default" BB. We have two jumps to it. From "header" BB and

Completed in 5494 milliseconds

1234