HomeSort by relevance Sort by last modified time
    Searched refs:constructor (Results 26 - 50 of 978) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
PropertyBoxParserImpl.java 24 import java.lang.reflect.Constructor;
118 Constructor<AbstractBox> constructorObject;
165 String constructor; local
170 constructor = mapping.getProperty((parent) + "-uuid[" + Hex.encodeHex(userType).toUpperCase() + "]");
171 if (constructor == null) {
172 constructor = mapping.getProperty("uuid[" + Hex.encodeHex(userType).toUpperCase() + "]");
174 if (constructor == null) {
175 constructor = mapping.getProperty("uuid");
178 constructor = mapping.getProperty((parent) + "-" + (type));
179 if (constructor == null)
    [all...]
  /external/chromium_org/extensions/renderer/
document_custom_bindings.cc 37 v8::Handle<v8::Value> constructor = document.registerEmbedderCustomElement( local
39 args.GetReturnValue().Set(constructor);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/main/
App.js 6 * @constructor
  /external/chromium_org/v8/test/mjsunit/regress/
regress-3359.js 8 return 1 >> Boolean.constructor + 1;
regress-193.js 28 // Test that context extension objects do not have a constructor
34 return eval("var x; constructor");
37 // It should be ok to call the constructor function returned by f.
40 // The call to f should get the constructor of the receiver which is
41 // the constructor of the global object.
42 assertEquals(constructor, f());
  /external/clang/test/SemaCXX/
cast-conversion.cpp 11 struct B { // expected-note 3 {{candidate constructor (the implicit copy constructor) not viable}} \
12 expected-note 3 {{candidate constructor (the implicit move constructor) not viable}}
13 B(A); // expected-note 3 {{candidate constructor not viable}}
  /external/llvm/test/MC/MachO/
x86_64-sections.s 12 .constructor
  /bionic/tests/libs/
dlopen_testlib_ifunc.c 22 static void __attribute__((constructor)) init_flag() {
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
FailedPredicateException.js 13 org.antlr.runtime.FailedPredicateException.superclass.constructor.call(this, input);
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
RewriteEmptyStreamException.js 4 sup.constructor.call(this, elementDescription);
  /external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
Lexer.pm 12 sub constructor : Test(1) { subroutine
  /external/chromium_org/chrome/browser/resources/cryptotoken/
inherits.js 14 /** @constructor */
19 childCtor.prototype.constructor = childCtor;
  /external/chromium_org/third_party/boringssl/src/crypto/
crypto.c 43 static void do_library_init(void) __attribute__ ((constructor));
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_stoptheworld_testlib.cc 47 __attribute__((constructor)) void StopTheWorldTestLibConstructor(void) {
  /external/doclava/src/com/google/doclava/
SinceTagger.java 157 for (MethodInfo constructor : doc.constructors()) {
158 if (constructor.getSince() == null
159 && spec.hasConstructor(constructor)) {
160 constructor.setSince(versionName);
164 if (constructor.isDeprecated() && constructor.getDeprecatedSince() == null) {
166 if (spec.allConstructorsMap().containsKey(constructor.getHashableName())) {
167 MethodInfo specConstructor = spec.allConstructorsMap().get(constructor.getHashableName());
169 constructor.setDeprecatedSince(versionName);
250 for (MethodInfo constructor : missingVersions(claz.constructors()))
    [all...]
  /external/libcxxabi/src/
cxa_vector.cpp 33 // They get passed a block of memory in the constructor, and unless the
111 // __cxa_vec_new2(element_count, element_size, padding_size, constructor,
115 void (*constructor)(void*), void (*destructor)(void*) ) {
118 constructor, destructor, &::operator new [], &::operator delete [] );
126 // the padding is non-zero, and call the given constructor on each element.
130 // NULL, return NULL. If the constructor throws an exception, call
134 // The constructor may be NULL, in which case it must not be called. If the
141 void (*constructor)(void*), void (*destructor)(void*),
158 __cxa_vec_ctor ( vec_base, element_count, element_size, constructor, destructor );
170 void (*constructor)(void*), void (*destructor)(void*)
    [all...]
  /external/libcxxabi/include/
cxxabi.h 93 void (*constructor)(void*),
99 void (*constructor)(void*),
107 void (*constructor)(void*),
115 void (*constructor)(void*),
155 void (*constructor) (void*, void*),
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
XmlReport.java 86 for (ApiConstructor constructor : apiClass.getConstructors()) {
87 out.println("<constructor name=\"" + constructor.getName()
88 + "\" deprecated=\"" + constructor.isDeprecated()
89 + "\" covered=\"" + constructor.isCovered() + "\">");
90 if (constructor.isDeprecated()) {
91 if (constructor.isCovered()) {
96 for (String parameterType : constructor.getParameterTypes()) {
100 out.println("</constructor>");
TextReport.java 60 for (ApiConstructor constructor : constructors) {
61 printConstructor(constructor, out);
87 private static void printConstructor(ApiConstructor constructor, PrintStream out) {
89 .append(constructor.isCovered() ? "X" : " ")
90 .append("] ").append(constructor.getName()).append("(");
92 List<String> parameterTypes = constructor.getParameterTypes();
  /cts/tests/signature-tests/src/android/signature/cts/tests/
JDiffClassDescriptionTest.java 106 JDiffClassDescription.JDiffConstructor constructor = local
108 clz.addConstructor(constructor);
110 assertEquals(constructor.toSignatureString(), "public NormalClass()");
115 JDiffClassDescription.JDiffConstructor constructor = local
117 constructor.addParam("java.lang.String");
118 clz.addConstructor(constructor);
120 assertEquals(constructor.toSignatureString(), "private NormalClass(java.lang.String)");
125 JDiffClassDescription.JDiffConstructor constructor = local
127 constructor.addParam("java.lang.String");
128 constructor.addParam("java.lang.String")
139 JDiffClassDescription.JDiffConstructor constructor = local
    [all...]
  /external/chromium_org/v8/test/webkit/
instance-of-immediates.js 24 description('This test makes sure that instance of behaves correctly when the value, constructor, or its prototype are immediates.');
26 // A Constructor to use check for instances of, and an instance called obj.
27 function Constructor() {}
28 var obj = new Constructor();
30 // Run a batch of tests; call'testInstanceOf' three times, passing 1, {}, and the object 'obj', which is an instance of Constructor.
31 function testSet(constructor, testMethod)
33 testMethod["1"]("(1 instanceof " + constructor + ")");
34 testMethod["{}"]("({} instanceof " + constructor + ")");
35 testMethod["obj"]("(obj instanceof " + constructor + ")");
38 // Test set 1, test passing the integer 1 as the constructor to be tested for
    [all...]
  /external/chromium_org/v8/test/mjsunit/compiler/
escape-analysis.js 33 function constructor() {
37 var object = new constructor();
54 function constructor() {
59 var object = new constructor();
76 function constructor() {
82 var object = new constructor();
183 function constructor() { class
188 var o = new constructor();
199 constructor.prototype = monkey;
207 function constructor() {
    [all...]
  /external/chromium_org/v8/test/mjsunit/harmony/
typedarrays.js 273 function SubarrayTestCase(constructor, item, expectedResultLen, expectedStartIndex,
275 var a = new constructor(initialLen);
277 assertSame(constructor, s.constructor);
285 function TestSubArray(constructor, item) {
286 SubarrayTestCase(constructor, item, 512, 512, 1024, 512, 1024);
287 SubarrayTestCase(constructor, item, 512, 512, 1024, 512);
289 SubarrayTestCase(constructor, item, 0, undefined, 0, 1, 20);
290 SubarrayTestCase(constructor, item, 100, 0, 100, 0, 100);
291 SubarrayTestCase(constructor, item, 100, 0, 100, 0, 1000)
    [all...]
super.js 50 constructor: Base,
62 constructor: Derived,
77 constructor: Base,
91 constructor: Derived,
107 constructor: Base,
118 constructor: Derived,
  /external/chromium_org/v8/test/webkit/fast/js/
object-prototype-constructor.js 30 shouldBe("f.constructor", "Foo.Bar");
31 shouldBe("typeof f.constructor", '"function"');
36 shouldBe("f2.constructor", "Foo2.Bar");
37 shouldBe("typeof f2.constructor", '"function"');
41 shouldBe("f3.constructor", "Foo3.Bar");
42 shouldBe("typeof f3.constructor", '"function"');

Completed in 2292 milliseconds

12 3 4 5 6 7 8 91011>>