HomeSort by relevance Sort by last modified time
    Searched refs:constructor (Results 301 - 325 of 1680) sorted by null

<<11121314151617181920>>

  /prebuilts/go/darwin-x86/src/runtime/testdata/testprogcgo/
threadprof.go 6 // a thread running a busy loop at constructor time.
29 __attribute__((constructor)) void issue9456() {
  /prebuilts/go/linux-x86/src/runtime/testdata/testprogcgo/
threadprof.go 6 // a thread running a busy loop at constructor time.
29 __attribute__((constructor)) void issue9456() {
  /external/harfbuzz_ng/util/
helper-cairo.cc 337 cairo_surface_t *(*constructor) (cairo_write_func_t write_func,
372 constructor = cairo_svg_surface_create_for_stream;
376 constructor = cairo_pdf_surface_create_for_stream;
380 constructor = cairo_ps_surface_create_for_stream;
383 constructor = _cairo_eps_surface_create_for_stream;
409 if (constructor)
410 surface = constructor (stdio_write_func, f, w, h);
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
BaseConstructor.java 16 package org.yaml.snakeyaml.constructor;
181 Construct constructor = getConstructor(node); local
182 Object data = constructor.construct(node);
186 constructor.construct2ndStep(node, data);
192 * Get the constructor to construct the Node. For implicit tags if the
194 * Otherwise the constructor is chosen by the tag.
204 Construct constructor = yamlConstructors.get(node.getTag()); local
205 if (constructor == null) {
213 return constructor;
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_StringIO.py 18 # Constructor to use for the test data (._line is passed to this
19 # constructor)
20 constructor = str variable in class:TestGenericStringIO
23 self._lines = self.constructor((self._line + '\n') * 5)
207 constructor = buffer variable in class:TestBufferStringIO
210 constructor = buffer variable in class:TestBuffercStringIO
213 constructor = memoryview variable in class:TestMemoryviewcStringIO
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_StringIO.py 18 # Constructor to use for the test data (._line is passed to this
19 # constructor)
20 constructor = str variable in class:TestGenericStringIO
23 self._lines = self.constructor((self._line + '\n') * 5)
207 constructor = buffer variable in class:TestBufferStringIO
210 constructor = buffer variable in class:TestBuffercStringIO
213 constructor = memoryview variable in class:TestMemoryviewcStringIO
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_StringIO.py 18 # Constructor to use for the test data (._line is passed to this
19 # constructor)
20 constructor = str variable in class:TestGenericStringIO
23 self._lines = self.constructor((self._line + '\n') * 5)
207 constructor = buffer variable in class:TestBufferStringIO
210 constructor = buffer variable in class:TestBuffercStringIO
213 constructor = memoryview variable in class:TestMemoryviewcStringIO
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_StringIO.py 18 # Constructor to use for the test data (._line is passed to this
19 # constructor)
20 constructor = str variable in class:TestGenericStringIO
23 self._lines = self.constructor((self._line + '\n') * 5)
207 constructor = buffer variable in class:TestBufferStringIO
210 constructor = buffer variable in class:TestBuffercStringIO
213 constructor = memoryview variable in class:TestMemoryviewcStringIO
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
asdl.py 167 def p_sum_0(self, (constructor,)):
168 " sum ::= constructor "
169 return [constructor]
171 def p_sum_1(self, (constructor, _, sum)):
172 " sum ::= constructor | sum "
173 return [constructor] + sum
175 def p_sum_2(self, (constructor, _, sum)):
176 " sum ::= constructor | sum "
177 return [constructor] + sum
180 " constructor ::= Id "
    [all...]
  /external/v8/src/
execution.cc 182 MaybeHandle<Object> Execution::New(Handle<JSFunction> constructor, int argc,
184 return New(constructor->GetIsolate(), constructor, constructor, argc, argv);
189 MaybeHandle<Object> Execution::New(Isolate* isolate, Handle<Object> constructor,
192 return Invoke(isolate, true, constructor,
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
ConstructorTest.java 25 import java.lang.reflect.Constructor;
36 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER})
41 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER})
46 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER})
51 @Target( {ElementType.CONSTRUCTOR, ElementType.PARAMETER})
93 // This class has no public constructor.
96 // Used to test synthetic constructor.
106 Constructor<ConstructorTestHelper> ctor1 = ConstructorTestHelper.class
126 Constructor<ConstructorTestHelper> ctor1 = null;
142 Constructor<ConstructorTestHelper> varArgCtor = ConstructorTestHelper.clas
153 Constructor<ConstructorTestHelper> constructor = ConstructorTestHelper.class local
326 Constructor<GenericConstructorTestHelper> constructor = GenericConstructorTestHelper.class local
357 Constructor<GenericConstructorTestHelper> constructor = GenericConstructorTestHelper.class local
    [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/dagger/dagger-compiler/1.2.2/
dagger-compiler-1.2.2.jar 
  /art/test/954-invoke-polymorphic-verifier/smali/
Subclass.smali 21 .method public constructor <init>()V
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
copy_reg.py 9 __all__ = ["pickle", "constructor",
25 constructor(constructor_ob)
27 def constructor(object): function
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
copy_reg.py 9 __all__ = ["pickle", "constructor",
25 constructor(constructor_ob)
27 def constructor(object): function
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
rhino-python.prog 39 MyLexer.superclass.constructor.apply(this, arguments);
  /external/google-breakpad/src/testing/gtest/test/
gtest_catch_exceptions_test.py 78 'in the test fixture\'s constructor'
113 'in the test fixture\'s constructor'
139 self.assert_('CxxExceptionInSetUpTestCaseTest constructor '
  /external/googletest/googletest/test/
gtest_catch_exceptions_test.py 91 'in the test fixture\'s constructor'
126 'in the test fixture\'s constructor'
152 self.assert_('CxxExceptionInSetUpTestCaseTest constructor '
  /external/guice/extensions/grapher/test/com/google/inject/grapher/
ShortNameFactoryTest.java 88 Member constructor = Obj.class.getDeclaredConstructor(); local
89 assertEquals("<init>", nameFactory.getMemberName(constructor));
  /external/libmicrohttpd/src/include/
autoinit_funcs.h 73 #if !__has_attribute(constructor) || !__has_attribute(destructor)
75 #endif /* !__has_attribute(constructor) || !__has_attribute(destructor) */
82 void __attribute__ ((constructor)) _GNUC_init_helper_##FI(void) \
  /external/snakeyaml/src/test/java/examples/jodatime/
JodaTimeFlowStylesTest.java 28 import org.yaml.snakeyaml.constructor.Construct;
29 import org.yaml.snakeyaml.constructor.Constructor;
78 * and in this case the empty constructor of the class will be used.
79 * Since this constructor does not exist for JodaTime an exception will
96 "No String constructor found. Exception=org.joda.time.DateTime.<init>(java.lang.String)"));
135 private class JodaPropertyConstructor extends Constructor {
140 class TimeStampConstruct extends Constructor.ConstructScalar {
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue11/
YamlMapTest.java 24 import org.yaml.snakeyaml.constructor.AbstractConstruct;
25 import org.yaml.snakeyaml.constructor.Constructor;
132 public static class ExtendedConstructor extends Constructor {
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue150/
YamlLoadAsIssueTest.java 33 import org.yaml.snakeyaml.constructor.AbstractConstruct;
34 import org.yaml.snakeyaml.constructor.Constructor;
95 private class MyConstructor extends Constructor {
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue99/
YamlBase64Test.java 28 import org.yaml.snakeyaml.constructor.AbstractConstruct;
29 import org.yaml.snakeyaml.constructor.Constructor;
121 private class SpecialContructor extends Constructor {
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/resolver/
ResolverTest.java 29 import org.yaml.snakeyaml.constructor.AbstractConstruct;
30 import org.yaml.snakeyaml.constructor.Constructor;
114 class MyConstructor extends Constructor {

Completed in 1323 milliseconds

<<11121314151617181920>>