HomeSort by relevance Sort by last modified time
    Searched defs:Off (Results 1 - 10 of 10) sorted by null

  /external/clang/test/Analysis/
unreachable-code-path.c 70 enum test_enum { Off, On };
78 if (Off)
  /external/webkit/Source/WebCore/html/
HTMLInputElement.h 210 enum AutoCompleteSetting { Uninitialized, On, Off };
  /external/llvm/lib/MC/MCParser/
COFFAsmParser.cpp 300 int64_t Off;
308 if (getParser().ParseAbsoluteExpression(Off))
311 if (Off & 0x0F)
318 getStreamer().EmitWin64EHSetFrame(Reg, Off);
341 int64_t Off;
349 if (getParser().ParseAbsoluteExpression(Off))
352 if (Off & 7)
360 getStreamer().EmitWin64EHSaveReg(Reg, Off);
368 int64_t Off;
376 if (getParser().ParseAbsoluteExpression(Off))
    [all...]
  /external/llvm/lib/CodeGen/
MachineFunction.cpp 508 int64_t Off = SO.SPOffset - ValOffset;
510 if (Off > 0)
511 OS << "+" << Off;
512 else if (Off < 0)
513 OS << Off;
  /external/llvm/lib/Target/MBlaze/AsmParser/
MBlazeAsmParser.cpp 102 const MCExpr *Off;
163 return Mem.Off;
254 static MBlazeOperand *CreateMem(unsigned Base, const MCExpr *Off, SMLoc S,
258 Op->Mem.Off = Off;
265 static MBlazeOperand *CreateMem(unsigned Base, unsigned Off, SMLoc S,
269 Op->Mem.OffReg = Off;
270 Op->Mem.Off = 0;
  /external/llvm/lib/Target/ARM/
ARMBaseRegisterInfo.cpp 610 // are variable sized objects, we can't reference off of the SP, so we
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/
GlobalActions.java 74 private ToggleAction.State mAirplaneState = ToggleAction.State.Off;
162 // first: power off
373 * A toggle action knows whether it is on or off, and displays an icon
379 Off(false),
395 protected State mState = State.Off;
406 * @param disabledIconResid The icon for when this action is off.
409 * @param disabledStatusMessageResId The off status message, e.g. 'sound enabled'
482 * states until some notification is received (e.g airplane mode is 'turning off' until
484 * @param buttonOn Whether the button was turned on or off
487 mState = buttonOn ? State.On : State.Off;
    [all...]
  /frameworks/media/libvideoeditor/vss/src/
M4VSS3GPP_EditVideo.c     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp 129 Value *Off = ConstantInt::get(AI.getArraySize()->getType(),
131 Amt = AllocaBuilder.CreateAdd(Amt, Off);
609 // Mask off any bits that are set and won't be shifted away.
    [all...]
  /external/llvm/lib/Target/ARM/Disassembler/
ARMDisassembler.cpp 497 const MCExpr *Off = NULL;
499 Off = MCConstantExpr::Create(SymbolicOp.Value, *Ctx);
508 if (Off != 0)
509 Expr = MCBinaryExpr::CreateAdd(LHS, Off, *Ctx);
513 if (Off != 0)
514 Expr = MCBinaryExpr::CreateAdd(Add, Off, *Ctx);
518 if (Off != 0)
519 Expr = Off;
    [all...]

Completed in 188 milliseconds