HomeSort by relevance Sort by last modified time
    Searched refs:Constructor (Results 326 - 350 of 381) sorted by null

<<111213141516

  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
interface.cpp 565 const WrapperTypeInfo {{v8_class}}Constructor::wrapperTypeInfo = { gin::kEmbedderBlink, {{v8_class}}Constructor::domTemplate, {{v8_class}}::derefObject, {{to_active_dom_object}}, {{to_event_target}}, 0, {{v8_class}}::installPerContextEnabledMethods, 0, WrapperTypeObjectPrototype, {{gc_type}} };
568 v8::Handle<v8::FunctionTemplate> {{v8_class}}Constructor::domTemplate(v8::Isolate* isolate)
592 static void constructor(const v8::FunctionCallbackInfo<v8::Value>& info)
602 {% for test, constructor in tests_constructors %}
605 {{cpp_class}}V8Internal::constructor{{constructor.overload_index}}(info);
626 exceptionState.throwTypeError("No matching constructor signature.");
637 static void constructor(const v8::FunctionCallbackInfo<v8::Value>& info)
    [all...]
interface.h 21 class {{v8_class}}Constructor {
  /art/test/100-reflect2/src/
Main.java 260 Constructor<?> ctor;
  /external/chromium_org/mojo/android/system/
core_impl.cc 52 static void Constructor(JNIEnv* env, jobject jcaller) {
  /external/chromium_org/net/cookies/
canonical_cookie_unittest.cc 45 TEST(CanonicalCookieTest, Constructor) {
  /libcore/luni/src/main/java/libcore/reflect/
AnnotationAccess.java 30 import java.lang.reflect.Constructor;
153 * Class, Field, Method, Constructor and Parameter annotations
211 * @param element a class, a field, a method or a constructor.
247 : ((Constructor<?>) element).getDexMethodIndex();
372 * defined in a method or constructor, this is not transitive.
426 * @param element a class, a field, a method or a constructor.
449 * @param element a method or a constructor.
  /libcore/luni/src/test/java/libcore/java/lang/
OldClassTest.java 26 import java.lang.reflect.Constructor;
644 Constructor<?> constr = declClasses[i].getDeclaredConstructors()[0];
    [all...]
  /external/clang/include/clang/AST/
ExprCXX.h     [all...]
  /external/clang/lib/Sema/
SemaExprCXX.cpp 45 /// constructor declarations. 'NS::X::X' and 'NS::X<...>::X' are treated as
46 /// constructor names in member using declarations, even if 'X' is not the
64 assert(NNS->getAsIdentifier() == &Name && "not a constructor name");
    [all...]
SemaTemplateInstantiateDecl.cpp     [all...]
TreeTransform.h 443 /// By default, transforms the types of conversion function, constructor,
    [all...]
SemaExpr.cpp 787 // having a non-trivial copy constructor, a non-trivial move constructor,
    [all...]
  /external/clang/lib/CodeGen/
CGDecl.cpp     [all...]
CGClass.cpp 292 // This constructor/destructor does not need a VTT parameter.
304 // If this is a delegating constructor call, just load the VTT.
325 // A VTT parameter was passed to the constructor, use it.
329 // We're the complete constructor, so get the VTT by name.
398 // The base constructor doesn't construct virtual bases.
402 // If the initializer for the base (other than the constructor
512 // constructor call.
534 const CXXConstructorDecl *Constructor,
559 // Special case: if we are in a copy or move constructor, and we are copying
566 if (Array && Constructor->isDefaulted() &
    [all...]
  /external/chromium_org/net/dns/
dns_response_unittest.cc 20 TEST(DnsRecordParserTest, Constructor) {
  /external/clang/include/clang/Sema/
Initialization.h 66 /// \brief The initialization is being done by a delegating constructor.
291 /// \brief Create the initialization entity for a delegated constructor.
603 /// first parameter in a copy or move constructor, such conversions are
658 /// function or via a constructor.
672 /// \brief Perform list-initialization without a constructor
674 /// \brief Perform list-initialization with a constructor.
680 /// \brief Perform initialization via a constructor.
731 /// the constructor to be called.
810 /// \brief Overloading for initialization by constructor failed.
812 /// \brief Overloading for list-initialization by constructor failed
    [all...]
Sema.h     [all...]
  /external/chromium_org/tools/stats_viewer/
stats_table.cs 483 /// Constructor
  /libcore/luni/src/test/java/libcore/java/nio/
BufferTest.java 22 import java.lang.reflect.Constructor;
746 Constructor<?> ctor = c.getDeclaredConstructor(long.class, int.class);
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
spannable.js 14 * @constructor
125 * Returns the first span value which is an instance of a given constructor.
126 * @param {!Function} constructor Constructor.
129 cvox.Spannable.prototype.getSpanInstanceOf = function(constructor) {
132 if (span.value instanceof constructor) {
291 function(v) { return v.ctor === span.value.constructor; });
337 * @param {!Function} constructor The type of object that can be converted.
346 constructor, name, fromJson, toJson) {
347 var obj = {name: name, ctor: constructor,
    [all...]
  /external/chromium_org/chrome/renderer/resources/extensions/
web_view_events.js 170 // Constructor.
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/gdocs/
chrome_ex_oauth.js 6 * Constructor - no need to invoke directly, call initBackgroundPage instead.
7 * @constructor
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
chrome_ex_oauth.js 6 * Constructor - no need to invoke directly, call initBackgroundPage instead.
7 * @constructor
  /external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/i18n/
messageformat.js 72 * Constructor of MessageFormat.
75 * @constructor
  /frameworks/base/core/java/android/app/
Notification.java 55 import java.lang.reflect.Constructor;
    [all...]

Completed in 1704 milliseconds

<<111213141516