Searched refs:constructor (Results 176 - 200 of 360) sorted by relevance

1234567891011>>

/external/smack/src/org/jivesoftware/smack/
H A DConnection.java802 Constructor<?> constructor = debuggerClass
804 debugger = (SmackDebugger) constructor.newInstance(this, writer, reader);
/external/android-mock/src/com/google/android/testing/mocking/
H A DAndroidMock.java90 * The parameter {@literal args} allows the caller to choose which constructor on the Class
91 * specified by {@literal toMock} to be called when constructing the Mock object. If a constructor
94 * where {@literal MyObject} defines a constructor such as
99 * @param args the arguments to pass to the constructor.
112 * The parameter {@literal args} allows the caller to choose which constructor on the Class
113 * specified by {@literal toMock} to be called when constructing the Mock object. If a constructor
117 * where {@literal MyObject} defines a constructor such as
124 * @param args the arguments to pass to the constructor.
143 * The parameter {@literal args} allows the caller to choose which constructor on the Class
144 * specified by {@literal toMock} to be called when constructing the Mock object. If a constructor
[all...]
/external/dexmaker/src/main/java/com/google/dexmaker/stock/
H A DProxyBuilder.java87 * By default, the {@link #build()} method will call the no-arg constructor belonging to the class
88 * being proxied. If you wish to call a different constructor, you must provide arguments for both
108 * If the base class to be proxied leaks the {@code this} pointer in the constructor (bad practice),
109 * that is to say calls a non-private non-final method from the constructor, the invocation handler
111 * inernally calls setSeed during the constructor. The proxy will not intercept this call during
196 * @throws UndeclaredThrowableException if the constructor for the base class to proxy throws
198 * @throws IllegalArgumentException if the handler is null, if the constructor argument types
199 * do not match the constructor argument values, or if no such constructor exists.
206 Constructor<? extends T> constructor;
[all...]
/external/chromium_org/v8/src/
H A Disolate.cc614 // a stack trace. The caller is the error constructor that asked
938 JSFunction* constructor = JSFunction::cast(receiver->map()->constructor()); local
939 if (!constructor->shared()->IsApiFunction()) return;
941 constructor->shared()->get_api_func_data()->access_check_info();
1005 JSFunction* constructor = JSFunction::cast(receiver->map()->constructor());
1006 if (!constructor->shared()->IsApiFunction()) return false;
1009 constructor->shared()->get_api_func_data()->access_check_info();
1048 JSFunction* constructor
[all...]
H A Dfactory.h295 Handle<JSObject> NewJSObject(Handle<JSFunction> constructor,
299 Handle<GlobalObject> NewGlobalObject(Handle<JSFunction> constructor);
398 Handle<Object> NewError(const char* constructor,
H A Dbuiltins.cc201 JSFunction* constructor) {
245 MaybeObject* maybe_obj = heap->AllocateJSObject(constructor);
1299 // API. The object can be called as either a constructor (using new) or just as
1306 // called as a constructor the delegate call is not a construct call.
1318 JSFunction* constructor = JSFunction::cast(obj->map()->constructor()); local
1319 ASSERT(constructor->shared()->IsApiFunction());
1321 constructor->shared()->get_api_func_data()->instance_call_handler();
1336 constructor,
199 ArrayCodeGenericCommon(Arguments* args, Isolate* isolate, JSFunction* constructor) argument
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
H A DDelphi.stg159 constructor Create; overload;
160 constructor Create(const AInput: ICharStream<grammar.delegators:{g|; const A<g:delegateName()>: IBaseRecognizer{<g.recognizerName>}}>); overload;
161 constructor Create(const AInput: ICharStream; const AState: IRecognizerSharedState<grammar.delegators:{g|; const A<g:delegateName()>: IBaseRecognizer{<g.recognizerName>}}>); overload;
179 constructor T<grammar.recognizerName>.Create;
184 constructor T<grammar.recognizerName>.Create(const AInput: ICharStream<grammar.delegators:{g|; const A<g:delegateName()>: IBaseRecognizer{<g.recognizerName>}}>);
189 constructor T<grammar.recognizerName>.Create(const AInput: ICharStream; const AState: IRecognizerSharedState<grammar.delegators:{g|; const A<g:delegateName()>: IBaseRecognizer{<g.recognizerName>}}>);
341 constructor Create(const AInput: <inputStreamType><grammar.delegators:{g|; const A<g:delegateName()>: IBaseRecognizer{<g.recognizerName>}}>); overload;
342 constructor Create(const AInput: <inputStreamType>; const AState: IRecognizerSharedState<grammar.delegators:{g|; const A<g:delegateName()>: IBaseRecognizer{<g.recognizerName>}}>); overload;
385 constructor T<grammar.recognizerName>.Create(const AInput: <inputStreamType><grammar.delegators:{g|; const A<g:delegateName()>: IBaseRecognizer{<g.recognizerName>}}>);
390 constructor
[all...]
/external/guava/guava/src/com/google/common/util/concurrent/
H A DFutures.java1016 * public constructor that accepts zero or more arguments, all of type {@code
1018 * {@code String}) and calling the constructor via reflection. If the
1020 * Throwable#initCause(Throwable)} on it. If no such constructor exists, an
1032 * RuntimeException} or does not have a suitable constructor
1082 * public constructor that accepts zero or more arguments, all of type {@code
1084 * {@code String}) and calling the constructor via reflection. If the
1086 * Throwable#initCause(Throwable)} on it. If no such constructor exists, an
1098 * RuntimeException} or does not have a suitable constructor
1217 for (Constructor<X> constructor : preferringStrings(constructors)) {
1218 @Nullable X instance = newFromConstructor(constructor, caus
1243 newFromConstructor( Constructor<X> constructor, Throwable cause) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DHeapSnapshotDataGrids.js32 * @constructor
263 * @constructor
414 * @constructor
437 * @constructor
472 * @constructor
543 * @constructor
563 * @constructor
647 for (var constructor in aggregates)
648 this.appendTopLevelNode(new WebInspector.HeapSnapshotConstructorNode(this, constructor, aggregates[constructor], ke
[all...]
/external/v8/src/
H A Dfactory.h255 Handle<JSObject> NewJSObject(Handle<JSFunction> constructor,
259 Handle<GlobalObject> NewGlobalObject(Handle<JSFunction> constructor);
337 Handle<Object> NewError(const char* constructor,
H A Dhandles.h271 Handle<JSFunction> constructor,
H A Dv8natives.js67 function SetUpLockedPrototype(constructor, fields, methods) {
69 var prototype = constructor.prototype;
215 %SetProperty($Boolean.prototype, "constructor", $Boolean, DONT_ENUM);
220 $Object.prototype.constructor = $Object;
1136 $Object.defineProperty(prototype, "constructor",
1365 // Set the Number function and constructor.
1492 // Set up the constructor property on the Number prototype object.
1493 %SetProperty($Number.prototype, "constructor", $Number, DONT_ENUM);
1543 $Function.prototype.constructor = $Function;
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/
H A Ddeprecated_idl_parser.pm1532 foreach my $constructor (@constructors) {
1533 push(@{$extendedAttributeList->{"Constructors"}}, $constructor);
2206 my $constructor = domFunction->new();
2207 $constructor->name("Constructor");
2208 $constructor->extendedAttributes($extendedAttributeList);
2209 $constructor->parameters($param);
2210 $constructor->overloadedIndex($index++);
2211 push(@{$interface->constructors}, $constructor);
H A Didl_definitions.py189 for constructor in self.constructors:
190 constructor.resolve_typedefs(typedefs)
H A Didl_definitions_builder.py349 possibly signatures of the constructor.
351 possibly signatures of the custom constructor.
353 signature of the named constructor.
392 raise ValueError('Non-constructor ExtAttributes node with children: %s' % name)
421 constructor = IdlOperation(name=name, extended_attributes=extended_attributes, overloaded_index=overloaded_index, arguments=arguments)
422 constructors.append(constructor)
/external/chromium_org/v8/tools/
H A Dprofile.js33 * @constructor
391 if (entries[i][1].constructor === Profile.FunctionEntry) {
401 if (entries[i][1].constructor === Profile.FunctionEntry &&
415 * @constructor
456 * @constructor
498 * @constructor
524 * @constructor
/external/v8/tools/
H A Dprofile.js33 * @constructor
391 if (entries[i][1].constructor === Profile.FunctionEntry) {
401 if (entries[i][1].constructor === Profile.FunctionEntry &&
415 * @constructor
456 * @constructor
498 * @constructor
524 * @constructor
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/
H A Ddojo-1.6.1.js317 "propertyIsEnumerable", "toLocaleString", "toString", "constructor"];
373 // | constructor: function(properties){
1059 if(curr.constructor == Array){
1216 // Safari doesn't support this.constructor so we have to be explicit
1893 dojo.extend = function(/*Object*/ constructor, /*Object...*/ props){
1895 // Adds all properties and methods of props to constructor's
1897 // constructor.
1899 d._mixin(constructor.prototype, arguments[i]);
1901 return constructor; // Object
1973 // pattern in JavaScript. An intermediate object constructor mediate
[all...]
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DLexer.js8 org.antlr.runtime.Lexer.superclass.constructor.call(this, state);
/external/chromium/chrome/browser/resources/net_internals/
H A Dutil.js6 * Inherit the prototype methods from one constructor into another.
13 childCtor.prototype.constructor = childCtor;
/external/clang/test/CXX/special/class.ctor/
H A Dp5-0x.cpp20 // A defaulted default constructor for a class X is defined as deleted if:
23 // default constructor,
24 union Deleted1a { UserProvidedDefCtor u; }; // expected-note {{default constructor of 'Deleted1a' is implicitly deleted because variant field 'u' has a non-trivial default constructor}}
25 Deleted1a d1a; // expected-error {{implicitly-deleted default constructor}}
37 Deleted2a d2a; // expected-error {{implicitly-deleted default constructor}}
39 int &&b; // expected-note {{default constructor of 'Deleted2b' is implicitly deleted because field 'b' of reference type 'int &&' would not be initialized}}
41 Deleted2b d2b; // expected-error {{deleted default constructor}}
51 // default constructor,
53 expected-warning {{does not declare any constructor}} \
[all...]
/external/e2fsprogs/lib/et/
H A Derror_message.c66 static void COMERR_ATTR((constructor)) setup_et_lock(void)
/external/elfutils/libdwfl/
H A Dargp-std.c331 void __attribute__ ((constructor))
/external/iptables/include/
H A Dxtables.h464 # define _init __attribute__((constructor)) _INIT
/external/libnl-headers/
H A Dnetlink-local.h121 #define __init __attribute__ ((constructor))

Completed in 2137 milliseconds

1234567891011>>