HomeSort by relevance Sort by last modified time
    Searched defs:Ctor (Results 1 - 25 of 32) sorted by null

1 2

  /external/v8/test/mjsunit/regress/
regress-crbug-350434.js 7 function Ctor() {
11 var o = new Ctor();
12 var p = new Ctor();
regress-crbug-500497.js 10 function Ctor() {
17 global.push(Ctor().a);
21 // The bad situation is only triggered if Ctor wasn't optimized too early.
22 assertUnoptimized(Ctor);
23 // Optimized code for Ctor will pretenure the "a" property, so it will have
28 %OptimizeFunctionOnNextCall(Ctor);
32 Ctor();
regress-crbug-305309.js 38 function Ctor() {}
39 Ctor.prototype = b1;
40 var a = new Ctor();
regress-343609.js 8 function Ctor() {
37 var o = new Ctor();
41 f1(new Ctor());
42 f1(new Ctor());
66 f2(new Ctor());
  /external/v8/test/mjsunit/
regress-sync-optimized-lists.js 7 function Ctor() {
24 f1(new Ctor(), false);
25 f1(new Ctor(), false);
30 var o = new Ctor();
42 f2(new Ctor(), true);
  /external/llvm/lib/CodeGen/
MachinePassRegistry.cpp 23 MachinePassCtor Ctor = nullptr;
26 Ctor = R->getCtor();
30 assert(Ctor && "Unregistered pass name");
31 setDefault(Ctor);
Passes.cpp 703 RegisterRegAlloc::FunctionPassCtor Ctor = RegisterRegAlloc::getDefault();
706 if (!Ctor) {
707 Ctor = RegAlloc;
710 if (Ctor != useDefaultRegisterAllocator)
711 return Ctor();
  /external/clang/test/SemaCXX/
deprecated.cpp 76 struct Ctor {
77 Ctor();
78 Ctor(const Ctor&); // expected-warning {{definition of implicit copy assignment operator for 'Ctor' is deprecated because it has a user-declared copy constructor}}
80 Ctor b1, b2;
81 void f() { b1 = b2; } // expected-note {{implicit copy assignment operator for 'Ctor' first required here}}
cxx98-compat.cpp 52 struct Ctor {
53 Ctor(int, char);
54 Ctor(double, long);
72 Ctor c1 = { 1, 2 }; // expected-warning {{constructor call from initializer list is incompatible with C++98}}
73 Ctor c2 = { 3.0, 4l }; // expected-warning {{constructor call from initializer list is incompatible with C++98}}
  /external/llvm/include/llvm/CodeGen/
MachinePassRegistry.h 57 MachinePassCtor Ctor; // Function pass creator.
65 , Ctor(C)
73 MachinePassCtor getCtor() const { return Ctor; }
  /external/llvm/lib/Transforms/Utils/
ModuleUtils.cpp 29 // Get the current set of static global constructors and add the new ctor
115 Function *Ctor = Function::Create(
118 BasicBlock *CtorBB = BasicBlock::Create(M.getContext(), "", Ctor);
133 return std::make_pair(Ctor, InitFunction);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
comdef.h 58 void Ctor(const _com_error &that) throw();
72 Ctor(that);
82 Ctor(that);
158 inline void _com_error::Ctor(const _com_error &that) throw() {
  /external/clang/lib/ASTMatchers/Dynamic/
Registry.cpp 434 MatcherCtor Ctor = CtxEntry.first;
439 Ctor->isConvertibleTo(Kind.getMatcherKind()) &&
440 (Ctor->isVariadic() || ArgNumber < Ctor->getNumArgs()))
441 Ctor->getArgKinds(Kind.getMatcherKind(), ArgNumber, NextTypeSet);
529 VariantMatcher Registry::constructMatcher(MatcherCtor Ctor,
533 return Ctor->create(NameRange, Args, Error);
537 VariantMatcher Registry::constructBoundMatcher(MatcherCtor Ctor,
542 VariantMatcher Out = constructMatcher(Ctor, NameRange, Args, Error);
Parser.cpp 335 llvm::Optional<MatcherCtor> Ctor = S->lookupMatcherCtor(NameToken.Text);
337 if (!Ctor) {
347 ScopedContextEntry SCE(this, Ctor ? *Ctor : nullptr);
421 if (!Ctor)
430 *Ctor, MatcherRange, BindID, Args, Error);
537 MatcherCtor Ctor, SourceRange NameRange, StringRef BindID,
540 return Registry::constructMatcher(Ctor, NameRange, Args, Error);
542 return Registry::constructBoundMatcher(Ctor, NameRange, BindID, Args,
  /external/clang/test/CXX/class/class.union/
p1.cpp 16 class Ctor {
17 Ctor() { abort(); } // expected-note 2{{because type 'Ctor' has a user-provided default constructor}} expected-note 2{{here}}
41 Ctor ctor; // expected-error {{union member 'ctor' has a non-trivial constructor}} member in union:U1
58 Ctor ctor; // expected-note {{because field of type 'Ctor' has a user-provided default constructor}} member in struct:U2::__anon6956
82 struct s3 : Ctor { // expected-note {{because base class of type 'Ctor' has a user-provided default constructor}
    [all...]
  /external/clang/test/Parser/
cxx-class.cpp 83 class Ctor { // expected-note{{not complete until the closing '}'}}
84 Ctor(f)(int); // ok
85 Ctor(g(int)); // ok
86 Ctor(x[5]); // expected-error{{incomplete type}}
88 Ctor(UnknownType *); // expected-error{{unknown type name 'UnknownType'}}
92 Ctor::Ctor (x) = { 0 }; // \
93 // expected-error{{qualified reference to 'Ctor' is a constructor name}}
95 Ctor::Ctor(UnknownType *) {} //
    [all...]
  /external/clang/unittests/ASTMatchers/Dynamic/
RegistryTest.cpp 46 llvm::Optional<MatcherCtor> Ctor = lookupMatcherCtor(MatcherName);
48 if (Ctor)
49 Out = Registry::constructMatcher(*Ctor, SourceRange(), Args(), Error);
59 llvm::Optional<MatcherCtor> Ctor = lookupMatcherCtor(MatcherName);
61 if (Ctor)
62 Out = Registry::constructMatcher(*Ctor, SourceRange(), Args(Arg1), Error);
73 llvm::Optional<MatcherCtor> Ctor = lookupMatcherCtor(MatcherName);
75 if (Ctor)
76 Out = Registry::constructMatcher(*Ctor, SourceRange(), Args(Arg1, Arg2),
92 llvm::Optional<MatcherCtor> Ctor = lookupMatcherCtor(MatcherName1)
    [all...]
  /external/llvm/include/llvm/Support/
Registry.h 28 std::unique_ptr<T> (*Ctor)();
32 : Name(N), Desc(D), Ctor(C)
37 std::unique_ptr<T> instantiate() const { return Ctor(); }
191 /// entry(const char *Name, const char *ShortDesc, T *(*Ctor)());
  /external/skia/platform_tools/android/apps/canvasproof/src/main/java/org/skia/canvasproof/
GaneshPictureRenderer.java 77 this.contextPtr = GaneshPictureRenderer.Ctor();
79 Log.e(TAG, "Ctor failed", e);
117 private static native long Ctor();
  /external/clang/lib/Sema/
JumpDiagnostics.cpp 188 const CXXConstructorDecl *Ctor = CCE->getConstructor();
189 if (Ctor->isTrivial() && Ctor->isDefaultConstructor() &&
193 else if (!Ctor->getParent()->isPOD())
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp     [all...]
ExprEngineCallAndReturn.cpp 609 const CXXConstructorCall &Ctor = cast<CXXConstructorCall>(Call);
614 const MemRegion *Target = Ctor.getCXXThisVal().getAsRegion();
622 const CXXConstructExpr *CtorExpr = Ctor.getOriginExpr();
633 if (Ctor.getDecl()->getParent()->hasTrivialDestructor())
    [all...]
  /external/clang/test/CodeGenCXX/
temporaries.cpp 790 namespace Ctor {
const-init-cxx11.cpp 442 struct Ctor { constexpr Ctor(int n) : k(n) {} int k; };
460 int ctor() { constexpr Ctor a = { f(102) }; return a.k; } function in namespace:LocalVarInit
  /external/clang/lib/AST/
ASTDumper.cpp     [all...]

Completed in 745 milliseconds

1 2