HomeSort by relevance Sort by last modified time
    Searched refs:TA (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/clang/lib/ARCMigrate/
TransGCCalls.cpp 38 TransformActions &TA = MigrateCtx.Pass.TA;
41 TA.report(E->getLocStart(), diag::warn_arcmt_nsalloc_realloc,
53 Transaction Trans(TA);
54 TA.clearDiagnostic(diag::err_unavailable,
58 TA.replace(DRE->getSourceRange(), "CFBridgingRelease");
61 TA.reportError("CFMakeCollectable will leak the object that it "
TransUnusedInitDelegate.cpp 53 Pass.TA.hasDiagnostic(diag::err_arc_unused_init_message,
55 Transaction Trans(Pass.TA);
56 Pass.TA.clearDiagnostic(diag::err_arc_unused_init_message,
59 Pass.TA.insert(ExprRange.getBegin(), "if (!(self = ");
62 Pass.TA.insertAfterToken(ExprRange.getEnd(), retStr);
Internals.h 124 TransformActions &TA;
128 Transaction(TransformActions &TA) : TA(TA), Aborted(false) {
129 TA.startTransaction();
134 TA.commitTransaction();
138 TA.abortTransaction();
151 TransformActions &TA;
157 Sema &sema, TransformActions &TA,
161 SemaRef(sema), TA(TA), CapturedDiags(capturedDiags)
    [all...]
TransAPIUses.cpp 78 Pass.TA.report(parm->getLocStart(),
90 Pass.TA.hasDiagnostic(diag::err_unavailable,
94 Transaction Trans(Pass.TA);
95 Pass.TA.clearDiagnostic(diag::err_unavailable,
98 Pass.TA.replace(E->getSourceRange(), getNilString(Pass.Ctx));
TransUnbridgedCasts.cpp 201 Transaction Trans(Pass.TA);
207 TransformActions &TA = Pass.TA;
210 if (!TA.hasDiagnostic(diag::err_arc_mismatched_cast,
227 TA.clearDiagnostic(diag::err_arc_mismatched_cast,
232 TA.insertAfterToken(CCE->getLParenLoc(), bridge);
242 TA.insert(insertLoc, newCast.str());
245 TA.insert(insertLoc, newCast.str());
246 TA.insertAfterToken(E->getLocEnd(), ")");
267 TA.insert(InsertLoc, BridgeCall)
    [all...]
TransEmptyStatementsAndDealloc.cpp 180 Transaction Trans(Pass.TA);
181 Pass.TA.removeStmt(S);
199 TransformActions &TA = pass.TA;
223 Transaction Trans(TA);
224 TA.remove(DeallocM->getSourceRange());
228 Transaction Trans(TA);
229 TA.remove(FinalizeM->getSourceRange());
234 Transaction Trans(TA);
235 TA.remove(FinalizeM->getSourceRange())
    [all...]
TransARCAssign.cpp 57 Transaction Trans(Pass.TA);
58 if (Pass.TA.clearDiagnostic(diag::err_typecheck_arr_assign_enumeration,
62 Pass.TA.insert(TLoc.getBeginLoc(), "__strong ");
TransAutoreleasePool.cpp 113 Transaction Trans(Pass.TA);
116 Pass.TA.removeStmt(info.Dcl);
127 Pass.TA.replaceStmt(*scope.Begin, "@autoreleasepool {");
128 Pass.TA.removeStmt(*scope.End);
136 Pass.TA.insertAfterToken(afterSemi, "\n}");
137 Pass.TA.increaseIndentation(
142 Pass.TA.replaceStmt(*scope.Begin, "@autoreleasepool {");
143 Pass.TA.replaceStmt(*scope.End, "}");
144 Pass.TA.increaseIndentation(scope.getIndentedRange(),
158 Pass.TA.removeStmt(*relI)
    [all...]
TransZeroOutPropsInDealloc.cpp 45 TransformActions &TA = Pass.TA;
71 Transaction Trans(TA);
77 TA.removeStmt(ME);
84 Transaction Trans(Pass.TA);
85 Pass.TA.removeStmt(POE);
93 Transaction Trans(Pass.TA);
94 Pass.TA.removeStmt(BOE);
TransGCAttrs.cpp 185 TransformActions &TA = MigrateCtx.Pass.TA;
193 TA.reportError("GC managed memory will become unmanaged in ARC",
201 TransformActions &TA = MigrateCtx.Pass.TA;
211 Transaction Trans(TA);
213 TA.replaceText(Attr.Loc, "__weak", "__unsafe_unretained");
214 TA.clearDiagnostic(diag::err_arc_weak_no_runtime,
265 TransformActions &TA = MigrateCtx.Pass.TA;
    [all...]
TransRetainReleaseDealloc.cpp 74 Pass.TA.reportError("it is not safe to remove an unused 'autorelease' "
91 Pass.TA.reportError(err, rec->getLocStart());
100 Pass.TA.reportError(err, rec->getLocStart());
105 Pass.TA.reportError("it is not safe to remove 'retain' "
120 Transaction Trans(Pass.TA);
124 Pass.TA.replace(E->getSourceRange(), "self");
134 Transaction Trans(Pass.TA);
146 Pass.TA.replace(RecContainer->getSourceRange(), RecRange);
149 Pass.TA.insertAfterToken(RecRange.getEnd(), str);
157 Pass.TA.replace(RecContainer->getSourceRange(), RecRange)
    [all...]
TransProtectedScope.cpp 131 Transaction Trans(Pass.TA);
143 Pass.TA.clearDiagnostic(diag::err_switch_into_protected_scope, ErrLoc);
158 Pass.TA.clearDiagnostic(Diag.getID(), Diag.getLocation());
175 Pass.TA.insertAfterToken(info.SC->getColonLoc(), " {");
176 Pass.TA.insert(info.Range.getEnd(), "}\n");
Transforms.cpp 434 Pass.TA.replaceText(tok.getLocation(), fromAttr, toAttr);
456 Pass.TA.remove(SourceRange(BeforeTok.getLocation(),
459 Pass.TA.remove(SourceRange(AttrLoc, AfterTok.getLocation()));
461 Pass.TA.remove(SourceRange(BeforeTok.getLocation(), AttrLoc));
502 Pass.TA.insert(tok.getLocation(), std::string("(") + attr.str() + ") ");
508 Pass.TA.insert(tok.getLocation(), attr);
514 Pass.TA.insert(tok.getLocation(), std::string(attr) + ", ");
528 TransformActions &TA = pass.TA;
543 Transaction Trans(TA);
    [all...]
TransBlockObjCVariable.cpp 142 Transaction Trans(Pass.TA);
143 Pass.TA.replaceText(SM.getExpansionLoc(attr->getLocation()),
TransProperties.cpp 137 Transaction Trans(Pass.TA);
150 Transaction Trans(Pass.TA);
226 Pass.TA.clearDiagnostic(diag::err_arc_strong_property_ownership,
251 Pass.TA.insert(I->IvarD->getLocation(), toWhich);
255 Pass.TA.clearDiagnostic(diag::err_arc_strong_property_ownership,
276 Pass.TA.insert(I->IvarD->getLocation(),
280 Pass.TA.clearDiagnostic(diag::err_arc_strong_property_ownership,
284 Pass.TA.clearDiagnostic(
  /external/llvm/lib/MC/MCAnalysis/
MCObjectDisassembler.cpp 204 MCTextAtom *TA = dyn_cast<MCTextAtom>(*AI);
205 if (!TA) continue;
206 Calls.push_back(TA->getBeginAddr());
207 BBInfos[TA->getBeginAddr()].Atom = TA;
208 for (MCTextAtom::const_iterator II = TA->begin(), IE = TA->end();
229 MCTextAtom *TA = cast<MCTextAtom>(A);
230 if (TA->getBeginAddr() == *SI)
232 MCTextAtom *NewAtom = TA->split(*SI)
    [all...]
MCFunction.cpp 23 MCBasicBlock &MCFunction::createBlock(const MCTextAtom &TA) {
24 std::unique_ptr<MCBasicBlock> MCBB(new MCBasicBlock(TA, this));
MCModule.cpp 112 void MCModule::splitBasicBlocksForAtom(const MCTextAtom *TA,
116 TA, CompBBToAtom);
117 for (; I != BBsByAtom.end() && (*I)->getInsts() == TA; ++I) {
  /frameworks/av/services/audioflinger/
AudioMixerOps.h 219 template <typename TO, typename TI, typename TV, typename TA>
220 inline TO MixMulAux(TI value, TV volume, TA *auxaccum) {
221 MixAccum<TA, TI>(auxaccum, value);
278 typename TO, typename TI, typename TV, typename TA, typename TAV>
280 const TI* in, TA* aux, TV *vol, const TV *volinc, TAV *vola, TAV volainc)
287 TA auxaccum = 0;
291 *out++ += MixMulAux<TO, TI, TV, TA>(*in++, vol[i], &auxaccum);
297 *out++ += MixMulAux<TO, TI, TV, TA>(*in, vol[i], &auxaccum);
304 *out++ = MixMulAux<TO, TI, TV, TA>(*in++, vol[i], &auxaccum);
310 *out++ += MixMulAux<TO, TI, TV, TA>(*in++, vol[0], &auxaccum)
    [all...]
AudioMixer.h 427 * TA: int32_t (Q4.27)
430 typename TO, typename TI, typename TA>
432 const TI *in, TA *aux, bool ramp, AudioMixer::track_t *t);
435 template <int MIXTYPE, typename TO, typename TI, typename TA>
439 template <int MIXTYPE, typename TO, typename TI, typename TA>
441 TO* temp __unused, TA* aux);
442 template <int MIXTYPE, typename TO, typename TI, typename TA>
444 TO* temp __unused, TA* aux);
  /external/clang/test/Sema/
array-constraint.c 44 typedef int TA[I]; // expected-error {{variable length array declaration not allowed at file scope}}
  /external/clang/test/CXX/special/class.dtor/
p3-0x.cpp 61 struct TA {
62 ~TA();
88 TA<int> a;
  /external/clang/lib/AST/
ASTTypeTraits.cpp 67 if (const TemplateArgument *TA = get<TemplateArgument>())
68 TA->print(PP, OS);
  /external/chromium_org/ipc/
ipc_message_macros.h 455 template<class T, class S, class P, typename TA> \
457 void (T::*func)(P*, TA)) { \
467 template<class T, class S, class P, typename TA, typename TB> \
469 void (T::*func)(P*, TA, TB)) { \
479 template<class T, class S, class P, typename TA, typename TB, typename TC> \
481 void (T::*func)(P*, TA, TB, TC)) { \
491 template<class T, class S, class P, typename TA, typename TB, typename TC, \
494 void (T::*func)(P*, TA, TB, TC, TD)) { \
504 template<class T, class S, class P, typename TA, typename TB, typename TC, \
507 void (T::*func)(P*, TA, TB, TC, TD, TE)) {
    [all...]
  /external/libpcap/
tokdefs.h 91 TA = 309,
212 #define TA 309

Completed in 171 milliseconds

1 2 3