HomeSort by relevance Sort by last modified time
    Searched full:prototype (Results 1 - 25 of 3248) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/autotest/client/site_tests/power_LoadTest/extension/
custom_event_listener.js 1 Window.prototype.orginalEventListener = Window.prototype.addEventListener;
2 Window.prototype.addEventListener = function(type, listener, useCapture) {
  /dalvik/dx/src/com/android/dx/rop/cst/
CstProtoRef.java 18 import com.android.dx.rop.type.Prototype;
21 * Prototype reference.
25 /** {@code non-null;} the prototype */
26 private final Prototype prototype; field in class:CstProtoRef
28 public CstProtoRef(Prototype prototype) {
29 this.prototype = prototype;
40 Prototype prototype = Prototype.fromDescriptor(descriptor.getString()) local
    [all...]
CstBaseMethodRef.java 19 import com.android.dx.rop.type.Prototype;
31 /** {@code non-null;} the raw prototype for this method */
32 private final Prototype prototype; field in class:CstBaseMethodRef
35 * {@code null-ok;} the prototype for this method taken to be an instance
38 private Prototype instancePrototype;
51 // The prototype for signature polymorphic methods is used to
53 // target (invoke() or invokeExact(). The prototype is created
56 this.prototype = Prototype.fromDescriptor(descriptor)
    [all...]
  /external/v8/src/inspector/
debugger_script_externs.js 123 BreakPoint.prototype.script_break_point = function() {}
126 BreakPoint.prototype.number = function() {}
135 ExecutionState.prototype.evaluateGlobal = function(source) {}
138 ExecutionState.prototype.frameCount = function() {}
144 ExecutionState.prototype.frame = function(index) {}
147 ExecutionState.prototype.setSelectedFrame = function(index) {}
150 ExecutionState.prototype.selectedFrame = function() {}
187 ScopeDetails.prototype.object = function() {}
190 ScopeDetails.prototype.name = function() {}
193 ScopeDetails.prototype.type = function() {
    [all...]
injected_script_externs.js 13 InjectedScriptHostClass.prototype.nullifyPrototype = function(obj) {}
19 InjectedScriptHostClass.prototype.internalConstructorName = function(obj) {}
26 InjectedScriptHostClass.prototype.formatAccessorsAsProperties = function(obj, func) {}
32 InjectedScriptHostClass.prototype.subtype = function(obj) {}
38 InjectedScriptHostClass.prototype.isTypedArray = function(obj) {}
44 InjectedScriptHostClass.prototype.getInternalProperties = function(obj) {}
51 InjectedScriptHostClass.prototype.objectHasOwnProperty = function(object, propertyName) {}
58 InjectedScriptHostClass.prototype.bind = function(value, groupName) {}
64 InjectedScriptHostClass.prototype.proxyTargetValue = function(object) {}
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
ProtoIdsSection.java 20 import com.android.dexgen.rop.type.Prototype;
28 * Proto (method prototype) identifiers list section of a
35 private final TreeMap<Prototype, ProtoIdItem> protoIds;
45 protoIds = new TreeMap<Prototype, ProtoIdItem>();
87 * @param prototype {@code non-null;} the prototype to intern
90 public ProtoIdItem intern(Prototype prototype) {
91 if (prototype == null) {
92 throw new NullPointerException("prototype == null")
    [all...]
ProtoIdItem.java 21 import com.android.dexgen.rop.type.Prototype;
28 * Representation of a method prototype reference inside a Dalvik file.
34 /** {@code non-null;} the wrapped prototype */
35 private final Prototype prototype; field in class:ProtoIdItem
37 /** {@code non-null;} the short-form of the prototype */
42 * prototype has no parameters
49 * @param prototype {@code non-null;} the constant for the prototype
51 public ProtoIdItem(Prototype prototype)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
ProtoIdsSection.java 21 import com.android.dx.rop.type.Prototype;
28 * Proto (method prototype) identifiers list section of a
35 private final TreeMap<Prototype, ProtoIdItem> protoIds;
45 protoIds = new TreeMap<Prototype, ProtoIdItem>();
102 * @param prototype {@code non-null;} the prototype to intern
105 public synchronized ProtoIdItem intern(Prototype prototype) {
106 if (prototype == null) {
107 throw new NullPointerException("prototype == null")
    [all...]
ProtoIdItem.java 21 import com.android.dx.rop.type.Prototype;
28 * Representation of a method prototype reference inside a Dalvik file.
31 /** {@code non-null;} the wrapped prototype */
32 private final Prototype prototype; field in class:ProtoIdItem
34 /** {@code non-null;} the short-form of the prototype */
39 * prototype has no parameters
46 * @param prototype {@code non-null;} the constant for the prototype
48 public ProtoIdItem(Prototype prototype)
    [all...]
  /external/clang/test/Parser/
method-def-in-class.m 5 -(id) f0 { // expected-error {{expected ';' after method prototype}}
11 - (id) f0 { // expected-error {{expected ';' after method prototype}}
missing-selector-name.mm 6 - (void) // expected-error {{expected ';' after method prototype}}
35 - (void)Meth {} // expected-error {{expected ';' after method prototype}}
42 // expected-error {{expected ';' after method prototype}}
  /external/guice/extensions/spring/test/com/google/inject/spring/
SpringIntegrationTest.java 47 RootBeanDefinition prototype local
48 = new RootBeanDefinition(Prototype.class, false);
49 beanFactory.registerBeanDefinition("prototype", prototype);
56 bind(Prototype.class)
57 .toProvider(fromSpring(Prototype.class, "prototype"));
65 assertNotNull(injector.getInstance(Prototype.class));
66 assertNotSame(injector.getInstance(Prototype.class),
67 injector.getInstance(Prototype.class))
78 RootBeanDefinition prototype local
    [all...]
  /external/clang/test/Sema/
warn-missing-prototypes.c 6 int f(int x) { return x; } // expected-warning{{no previous prototype for function 'f'}}
10 int h(int x) { return x; } // expected-warning{{no previous prototype for function 'h'}}
28 int h2(int x) { return x; } // expected-warning{{no previous prototype for function 'h2'}}
29 int h3(int x) { return x; } // expected-warning{{no previous prototype for function 'h3'}}
40 void not_a_prototype_test(); // expected-note{{this declaration is not a prototype; add 'void' to make it a prototype for a zero-parameter function}}
41 void not_a_prototype_test() { } // expected-warning{{no previous prototype for function 'not_a_prototype_test'}}
decl-microsoft-call-conv.c 5 // This is fine, as CrcGenerateTable*() has a prototype.
22 void __fastcall CrcGenerateTableNoProtoFastcall(); // expected-error{{function with no prototype cannot use the fastcall calling convention}}
23 void __stdcall CrcGenerateTableNoProtoStdcall(); // expected-warning{{function with no prototype cannot use the stdcall calling convention}}
24 void __thiscall CrcGenerateTableNoProtoThiscall(); // expected-error{{function with no prototype cannot use the thiscall calling convention}}
25 void __pascal CrcGenerateTableNoProtoPascal(); // expected-error{{function with no prototype cannot use the pascal calling convention}}
26 void __vectorcall CrcGenerateTableNoProtoVectorcall(); // expected-error{{function with no prototype cannot use the vectorcall calling convention}}
  /external/clang/test/SemaOpenCL/
warn-missing-prototypes.cl 3 void f() { } // expected-warning {{no previous prototype for function 'f'}}
  /external/libmojo/mojo/public/js/
router.js 36 Router.prototype.close = function() {
41 Router.prototype.accept = function(message) {
45 Router.prototype.reject = function(message) {
49 Router.prototype.acceptAndExpectResponse = function(message) {
68 Router.prototype.setIncomingReceiver = function(receiver) {
72 Router.prototype.setPayloadValidators = function(payloadValidators) {
76 Router.prototype.setErrorHandler = function(handler) {
80 Router.prototype.encounteredError = function() {
84 Router.prototype.handleIncomingMessage_ = function(message) {
97 Router.prototype.handleValidIncomingMessage_ = function(message)
    [all...]
buffer.js 27 Object.defineProperty(Buffer.prototype, "byteLength", {
31 Buffer.prototype.alloc = function(size) {
45 Buffer.prototype.grow = function(size) {
52 Buffer.prototype.trim = function() {
57 Buffer.prototype.getUint8 = function(offset) {
60 Buffer.prototype.getUint16 = function(offset) {
63 Buffer.prototype.getUint32 = function(offset) {
66 Buffer.prototype.getUint64 = function(offset) {
78 Buffer.prototype.getInt8 = function(offset) {
81 Buffer.prototype.getInt16 = function(offset)
    [all...]
codec.js 49 Decoder.prototype.align = function() {
53 Decoder.prototype.skip = function(offset) {
57 Decoder.prototype.readInt8 = function() {
63 Decoder.prototype.readUint8 = function() {
69 Decoder.prototype.readInt16 = function() {
75 Decoder.prototype.readUint16 = function() {
81 Decoder.prototype.readInt32 = function() {
87 Decoder.prototype.readUint32 = function() {
93 Decoder.prototype.readInt64 = function() {
99 Decoder.prototype.readUint64 = function()
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/mqueue_h/
11-1-buildonly.c 2 Test for the existence and valid prototype
2-1-buildonly.c 2 Test for the existence and valid prototype
  /external/snakeyaml/src/test/resources/examples/
spring.xml 9 <bean id="yamlConstructor" class="examples.CustomConstructor" scope="prototype" />
10 <bean id="yamlRepresenter" class="org.yaml.snakeyaml.representer.Representer" scope="prototype" />
11 <bean id="yamlOptions" class="org.yaml.snakeyaml.DumperOptions" scope="prototype">
14 <bean id="snakeYaml" class="org.yaml.snakeyaml.Yaml" scope="prototype">
21 <bean id="beanConstructor" class="org.yaml.snakeyaml.constructor.Constructor" scope="prototype">
24 <bean id="javabeanYaml" class="org.yaml.snakeyaml.Yaml" scope="prototype">
29 <bean id="standardYaml" class="org.yaml.snakeyaml.Yaml" scope="prototype" />
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstBaseMethodRef.java 19 import com.android.dexgen.rop.type.Prototype;
31 /** {@code non-null;} the raw prototype for this method */
32 private final Prototype prototype; field in class:CstBaseMethodRef
35 * {@code null-ok;} the prototype for this method taken to be an instance
38 private Prototype instancePrototype;
50 this.prototype = Prototype.intern(descriptor);
55 * Gets the raw prototype of this method. This doesn't include a
58 * @return {@code non-null;} the method prototype
    [all...]
  /external/v8/src/debug/
mirrors.js 142 * Inherit the prototype methods from one constructor into another.
144 * The Function.prototype.inherits from lang.js rewritten as a standalone
145 * function (not on Function.prototype). NOTE: If this file is to be loaded
147 * functions as prototype setup using normal JavaScript does not work as
151 * prototype
152 * @param {function} superCtor Constructor function to inherit prototype from
156 tempCtor.prototype = superCtor.prototype;
157 ctor.super_ = superCtor.prototype;
158 ctor.prototype = new tempCtor()
    [all...]
  /external/autotest/client/deps/webgl_mpd/src/
cros_fps.js 16 crosFpsCounter.prototype.update = function(
25 crosFpsCounter.prototype.reset = function() {
32 crosFpsCounter.prototype.getAvgFps = function() {
36 crosFpsCounter.prototype.getAvgRenderTime = function() {
40 crosFpsCounter.prototype.getFrameData = function() {
  /external/v8/tools/
detect-builtins.js 21 name === "prototype") {
26 if (this_name === "prototype" && name === "constructor") continue;
42 property.prototype = GetProperties("prototype", value.prototype);
51 // Print the __proto__ if it's not the default Object prototype.

Completed in 822 milliseconds

1 2 3 4 5 6 7 8 91011>>