HomeSort by relevance Sort by last modified time
    Searched refs:Terminator (Results 1 - 14 of 14) sorted by null

  /external/webkit/Source/JavaScriptCore/runtime/
Terminator.h 34 class Terminator {
36 Terminator() : m_shouldTerminate(false) { }
JSGlobalData.h 41 #include "Terminator.h"
220 Terminator terminator; member in class:JSC::JSGlobalData
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audioquality/
Terminator.java 22 public interface Terminator {
Experiment.java 45 protected Terminator mTerminator;
91 public void run(Context context, Terminator t) {
ExperimentService.java 37 public class ExperimentService extends Service implements Terminator {
70 * Implements Terminator, to clean up when the experiment indicates it
  /external/clang/include/clang/Driver/
Compilation.h 121 /// \param Terminator - A string to print at the end of the line.
124 const char *Terminator, bool Quote) const;
  /external/llvm/include/llvm/MC/
MCInstrDesc.h 103 Terminator,
292 /// isTerminator - Returns true if this instruction part of the terminator for
299 return Flags & (1 << MCID::Terminator);
  /external/clang/lib/Driver/
Compilation.cpp 64 const char *Terminator, bool Quote) const {
85 OS << Terminator;
90 PrintJob(OS, **it, Terminator, Quote);
  /external/clang/lib/Analysis/
CFG.cpp 837 /// happens to be logical end. Use blocks terminator as statement that specifies
    [all...]
  /external/clang/lib/AST/
DeclPrinter.cpp 267 const char *Terminator = 0;
270 Terminator = 0;
272 Terminator = 0;
279 Terminator = 0;
284 Terminator = ",";
286 Terminator = ";";
288 if (Terminator)
289 Out << Terminator;
  /external/clang/include/clang/Analysis/
CFG.h 215 /// CFGTerminator - Represents CFGBlock terminator statement.
217 /// TemporaryDtorsBranch bit is set to true if the terminator marks a branch
218 /// in control flow of destructors of temporaries. In this case terminator
249 /// (2) A "terminator" statement (not in the set of statements).
252 /// Terminator: The terminator represents the type of control-flow that occurs
253 /// at the end of the basic block. The terminator is a Stmt* referring to an
261 /// currently have the following orderings based on the terminator:
263 /// Terminator Successor Ordering
318 /// Terminator - The terminator for a basic block tha
    [all...]
  /external/llvm/lib/Transforms/Scalar/
JumpThreading.cpp 167 << "' with terminator: " << *BB->getTerminator() << '\n');
182 // If the terminator is the only non-phi instruction, try to nuke it.
223 // Sum up the cost of each instruction until we get to the terminator. Don't
224 // include the terminator because the copy won't include it.
285 /// terminator with the given value as its condition, and if so what value to
342 /// predecessor based on its terminator.
657 // Look to see if the terminator is a conditional branch, switch or indirect
660 Instruction *Terminator = BB->getTerminator();
661 if (BranchInst *BI = dyn_cast<BranchInst>(Terminator)) {
665 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(Terminator)) {
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExprEngine.h 427 const GRState* MarkBranch(const GRState* St, const Stmt* Terminator,
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp 838 const Stmt* Terminator,
841 switch (Terminator->getStmtClass()) {
847 const BinaryOperator* B = cast<BinaryOperator>(Terminator);
868 = cast<AbstractConditionalOperator>(Terminator);
885 const ChooseExpr* C = cast<ChooseExpr>(Terminator);
    [all...]

Completed in 258 milliseconds