Searched refs:constructor (Results 76 - 100 of 360) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
H A DCommonToken.pm11 sub constructor : Test(1) { subroutine
/external/chromium_org/chrome/browser/resources/file_manager/js/image_editor/
H A Dimage_encoder.js18 * @param {function(new:ImageEncoder.MetadataEncoder)} constructor
22 ImageEncoder.registerMetadataEncoder = function(constructor, mimeType) {
23 ImageEncoder.metadataEncoders[mimeType] = constructor;
35 var constructor = ImageEncoder.metadataEncoders[metadata.mimeType] ||
37 return new constructor(metadata);
175 * @constructor
/external/chromium_org/third_party/mesa/src/src/gallium/targets/libgl-xlib/
H A Dxlib.c87 static void _init( void ) __attribute__((constructor));
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-evaluate-bool-constructor.js70 // Add set constructor field to a non-function value.
71 var a = {constructor:true};
/external/clang/test/Misc/
H A Dast-dump-attr.cpp78 void TestInt(void) __attribute__((constructor(123)));
/external/clang/test/Sema/
H A Dwarn-unused-function.c33 __attribute__((constructor)) static void bar2(void);
/external/iproute2/include/
H A Diptables_common.h37 #define _init __attribute__((constructor)) my_init
/external/javassist/src/test/test/javassist/proxy/
H A DProxySerializationTest.java33 Constructor constructor = proxyClass.getConstructor(new Class[] {String.class});
34 TestClass proxy = (TestClass)constructor.newInstance(new Object[] {name});
60 Constructor constructor = proxyClass.getConstructor(new Class[] {String.class});
61 TestClass proxy = (TestClass)constructor.newInstance(new Object[] {name});
/external/mesa3d/src/gallium/targets/libgl-xlib/
H A Dxlib.c87 static void _init( void ) __attribute__((constructor));
/external/v8/test/mjsunit/
H A Ddebug-evaluate-bool-constructor.js70 // Add set constructor field to a non-function value.
71 var a = {constructor:true};
/external/chromium-trace/trace-viewer/src/tracing/analysis/
H A Dobject_instance_view.js51 constructor: viewConstructor,
H A Dobject_snapshot_view.js51 constructor: viewConstructor,
H A Dslice_view.js14 * @constructor
52 constructor: viewConstructor
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dtest_servlet.py49 constructor = InstanceServlet.GetConstructor(self._delegate)
51 return constructor(Request(path, '', self._request.headers)).Get()
/external/jsilver/src/org/clearsilver/
H A DFactoryLoader.java109 Constructor<ClearsilverFactory> constructor = clazz.getConstructor();
110 return constructor.newInstance();
/external/chromium-trace/trace-viewer/src/tracing/
H A Dselection.js108 constructor: SelectionSliceHit,
113 constructor: SelectionCounterSampleHit,
118 constructor: SelectionObjectSnapshotHit,
123 constructor: SelectionObjectInstanceHit,
131 * @constructor
254 if (hit instanceof hitType.constructor)
/external/chromium_org/v8/test/mjsunit/harmony/
H A Dsymbols.js33 // Test different forms of constructor calls, all equivalent.
86 assertFalse(Object === Symbol.prototype.constructor)
87 assertFalse(Symbol === Object.prototype.constructor)
88 assertSame(Symbol, Symbol.prototype.constructor)
89 assertSame(Symbol, Symbol().__proto__.constructor)
90 assertSame(Symbol, Symbol(Symbol()).__proto__.constructor)
91 assertSame(Symbol, (new Symbol).__proto__.constructor)
92 assertSame(Symbol, (new Symbol()).__proto__.constructor)
93 assertSame(Symbol, (new Symbol(Symbol())).__proto__.constructor)
94 assertSame(Symbol, Object(Symbol()).__proto__.constructor)
[all...]
/external/v8/src/
H A Dmessages.js30 // If this object gets passed to an error constructor the error will
94 var constructor = obj.constructor;
95 if (typeof constructor == "function") {
96 var constructorName = constructor.name;
106 function MakeGenericError(constructor, type, args) {
110 var e = new constructor(kAddMessageAccessorsMarker);
118 * Set up the Script function and constructor.
121 %SetProperty(Script.prototype, 'constructor', Script,
163 "not_constructor", ["%0", " is not a constructor"],
[all...]
/external/junit/src/junit/framework/
H A DTestSuite.java27 * TestSuite constructor.
33 * <p>This constructor creates a suite with all the methods
52 Constructor<?> constructor;
54 constructor= getTestConstructor(theClass);
56 return warning("Class "+theClass.getName()+" has no public constructor TestCase(String name) or TestCase()");
60 if (constructor.getParameterTypes().length == 0) {
61 test= constructor.newInstance(new Object[0]);
65 test= constructor.newInstance(new Object[]{name});
70 return(warning("Exception in constructor: "+name+" ("+exceptionToString(e.getTargetException())+")"));
78 * Gets a constructor whic
[all...]
/external/doclava/src/com/google/doclava/
H A DFederationTagger.java129 for (MethodInfo constructor : localClass.constructors()) {
130 if (federatedClass.hasConstructor(constructor)) {
131 constructor.addFederatedReference(site);
/external/chromium/testing/gtest/test/
H A Dgtest_catch_exceptions_test.py78 'in the test fixture\'s constructor'
113 'in the test fixture\'s constructor'
136 self.assert_('CxxExceptionInSetUpTestCaseTest constructor '
/external/chromium_org/testing/gtest/test/
H A Dgtest_catch_exceptions_test.py78 'in the test fixture\'s constructor'
113 'in the test fixture\'s constructor'
139 self.assert_('CxxExceptionInSetUpTestCaseTest constructor '
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DHeapSnapshotLoader.js32 * @constructor
61 var constructor = WebInspector[constructorName];
62 var result = new constructor(this._snapshot);
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/ui/
H A Dresults.js104 _addResult: function(comparison, constructor, resultsURLsByKind, kind)
109 comparison.update(kind, new constructor(url));
114 var constructor = constructorForResultType(resultType);
116 this._addResult(comparison, constructor, resultsURLsByKind, results.kExpectedKind);
117 this._addResult(comparison, constructor, resultsURLsByKind, results.kActualKind);
118 this._addResult(comparison, constructor, resultsURLsByKind, results.kDiffKind);
125 var constructor = constructorForResultType(resultType);
126 var view = new constructor(url);
/external/gtest/test/
H A Dgtest_catch_exceptions_test.py78 'in the test fixture\'s constructor'
113 'in the test fixture\'s constructor'
136 self.assert_('CxxExceptionInSetUpTestCaseTest constructor '

Completed in 2197 milliseconds

1234567891011>>