Searched defs:Change (Results 1 - 20 of 20) sorted by relevance

/external/toolchain-utils/automation/common/
H A Dstate_machine.py45 def Change(self, new_state): member in class:BasicStateMachine
/external/pdfium/xfa/fxfa/parser/
H A Dcscript_eventpseudomodel.h14 Change = 0, member in class:XFA_Event
38 void Change(CFXJSE_Value* pValue, bool bSetting, XFA_ATTRIBUTE eAttribute);
H A Dcscript_eventpseudomodel.cpp72 case XFA_Event::Change:
123 void CScript_EventPseudoModel::Change(CFXJSE_Value* pValue, function in class:CScript_EventPseudoModel
126 Property(pValue, XFA_Event::Change, bSetting);
/external/clang/include/clang/Rewrite/Core/
H A DRewriteBuffer.h104 void AddInsertDelta(unsigned OrigOffset, int Change) { argument
105 return Deltas.AddDelta(2*OrigOffset, Change);
110 void AddReplaceDelta(unsigned OrigOffset, int Change) { argument
111 return Deltas.AddDelta(2*OrigOffset+1, Change);
/external/v8/src/compiler/
H A Dsimplified-operator-reducer.cc87 return Change(node, machine()->ChangeInt32ToFloat64(), m.InputAt(0));
90 return Change(node, machine()->ChangeUint32ToFloat64(), m.InputAt(0));
99 return Change(node, machine()->ChangeFloat64ToInt32(), m.InputAt(0));
110 return Change(node, machine()->ChangeFloat64ToUint32(), m.InputAt(0));
128 return Change(node, machine()->TruncateFloat64ToWord32(), m.InputAt(0));
223 Reduction SimplifiedOperatorReducer::Change(Node* node, const Operator* op, function in class:v8::internal::compiler::SimplifiedOperatorReducer
H A Dcommon-operator-reducer.cc254 return Change(node, machine()->Float32Abs(), vtrue);
265 return Change(node, machine()->Float64Abs(), vtrue);
393 return Change(node, machine()->Float32Abs(), vtrue);
404 return Change(node, machine()->Float64Abs(), vtrue);
416 Reduction CommonOperatorReducer::Change(Node* node, Operator const* op, function in class:v8::internal::compiler::CommonOperatorReducer
425 Reduction CommonOperatorReducer::Change(Node* node, Operator const* op, Node* a, function in class:v8::internal::compiler::CommonOperatorReducer
H A Djs-intrinsic-lowering.cc110 return Change(node, javascript()->CreateIterResultObject(), value, done,
121 return Change(node, op, value, effect, control);
153 return Change(node, op, generator, closed, effect, control);
163 return Change(node, op, generator, effect, control);
173 return Change(node, op, generator, effect, control);
183 return Change(node, op, generator, effect, control);
220 return Change(node, common()->Phi(MachineRepresentation::kTagged, 2), vtrue,
226 return Change(node, simplified()->ObjectIsReceiver());
231 return Change(node, simplified()->ObjectIsSmi());
235 Reduction JSIntrinsicLowering::Change(Nod function in class:v8::internal::compiler::JSIntrinsicLowering
395 Reduction JSIntrinsicLowering::Change(Node* node, const Operator* op, Node* a, function in class:v8::internal::compiler::JSIntrinsicLowering
406 Reduction JSIntrinsicLowering::Change(Node* node, const Operator* op, Node* a, function in class:v8::internal::compiler::JSIntrinsicLowering
418 Reduction JSIntrinsicLowering::Change(Node* node, const Operator* op, Node* a, function in class:v8::internal::compiler::JSIntrinsicLowering
431 Reduction JSIntrinsicLowering::Change(Node* node, Callable const& callable, function in class:v8::internal::compiler::JSIntrinsicLowering
[all...]
/external/clang/lib/Format/
H A DWhitespaceManager.h86 struct Change { struct in class:clang::format::WhitespaceManager
91 bool operator()(const Change &C1, const Change &C2) const;
97 Change() {} function in struct:clang::format::WhitespaceManager::Change
99 /// \brief Creates a \c Change.
101 /// The generated \c Change will replace the characters at
108 Change(bool CreateReplacement, SourceRange OriginalWhitespaceRange,
158 // If this Change represents a continuation of a block comment,
159 // \c StartOfBlockComment is pointer to the first Change in the block
163 const Change *StartOfBlockCommen
[all...]
H A DWhitespaceManager.cpp21 bool WhitespaceManager::Change::IsBeforeInFile::
22 operator()(const Change &C1, const Change &C2) const {
28 WhitespaceManager::Change::Change( function in class:clang::format::WhitespaceManager::Change
58 Change(/*CreateReplacement=*/true, Tok.WhitespaceRange, IndentLevel,
69 Changes.push_back(Change(
84 Changes.push_back(Change(
97 std::sort(Changes.begin(), Changes.end(), Change::IsBeforeInFile(SourceMgr));
110 Change *LastOutsideTokenChang
[all...]
/external/llvm/lib/Support/
H A DDAGDeltaAlgorithm.cpp204 change_ty Change = Worklist.back(); local
207 std::set<change_ty> &ChangeSuccs = SuccClosure[Change];
208 for (pred_iterator_ty it = pred_begin(Change),
209 ie = pred_end(Change); it != ie; ++it) {
210 SuccClosure[*it].insert(Change);
/external/pdfium/core/fxge/skia/
H A Dfx_skia_device_unittest.cpp19 enum class Change { kNo, kYes }; class in struct:__anon16485::State
24 Change m_change;
73 if (state.m_change == State::Change::kYes) {
149 Harness(&CommonTest, {State::Change::kNo, State::Save::kYes,
152 {State::Change::kNo, State::Save::kYes, State::Clip::kDifferentPath,
154 Harness(&CommonTest, {State::Change::kNo, State::Save::kYes, State::Clip::kNo,
156 Harness(&CommonTest, {State::Change::kYes, State::Save::kNo, State::Clip::kNo,
158 Harness(&CommonTest, {State::Change::kNo, State::Save::kNo, State::Clip::kNo,
165 {State::Change::kNo, State::Save::kYes, State::Clip::kDifferentMatrix,
167 Harness(&CommonTest, {State::Change
[all...]
/external/swiftshader/third_party/LLVM/lib/Support/
H A DDAGDeltaAlgorithm.cpp210 change_ty Change = Worklist.back(); local
213 std::set<change_ty> &ChangeSuccs = SuccClosure[Change];
214 for (pred_iterator_ty it = pred_begin(Change),
215 ie = pred_end(Change); it != ie; ++it) {
216 SuccClosure[*it].insert(Change);
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DTailRecursionElimination.cpp186 bool Change = ProcessReturningBlock(Ret, OldEntry, TailCallsAreMarkedTail, local
188 if (!Change && BB->getFirstNonPHIOrDbg() == Ret)
189 Change = FoldReturnAndProcessPred(BB, Ret, OldEntry,
192 MadeChange |= Change;
591 bool Change = false; local
616 Change = true;
620 return Change;
/external/llvm/lib/Target/AArch64/
H A DAArch64A57FPLoadBalancing.cpp591 bool Change = TransformAll || getColor(MO.getReg()) != C; local
593 Change = false;
595 if (Change) {
/external/llvm/lib/Transforms/Scalar/
H A DTailRecursionElimination.cpp679 bool Change = false; local
713 Change = true;
717 return Change;
758 // Change any tail recursive calls to loops.
767 bool Change = local
770 if (!Change && BB->getFirstNonPHIOrDbg() == Ret)
771 Change =
774 MadeChange |= Change;
/external/pdfium/fpdfsdk/javascript/
H A DJS_EventHandler.cpp411 CFX_WideString& CJS_EventHandler::Change() { function in class:CJS_EventHandler
/external/llvm/lib/CodeGen/
H A DIfConversion.cpp329 bool Change = false; local
412 Change |= RetVal;
420 if (!Change)
422 MadeChange |= Change;
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DIfConversion.cpp293 bool Change = false; local
379 Change |= RetVal;
387 if (!Change)
389 MadeChange |= Change;
/external/pdfium/xfa/fxfa/
H A Dfxfa_basic.h803 Change, member in class:XFA_Element
/external/r8/deps/
H A Dcommons-compress-1.12.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/compress/ ...

Completed in 555 milliseconds