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

1 2 34 5 6 7 8 91011>>

  /dalvik/dexgen/src/com/android/dexgen/rop/type/
Prototype.java 26 public final class Prototype implements Comparable<Prototype> {
28 private static final HashMap<String, Prototype> internTable =
29 new HashMap<String, Prototype>(500);
53 public static Prototype intern(String descriptor) {
57 Prototype result = internTable.get(descriptor);
103 result = new Prototype(descriptor, returnType, parameterTypes);
164 public static Prototype intern(String descriptor, Type definer,
166 Prototype base = intern(descriptor);
184 * @param count {@code > 0;} the number of elements in the prototype
    [all...]
  /external/v8/src/js/
string.js 21 CHECK_OBJECT_COERCIBLE(this, "String.prototype.concat");
33 CHECK_OBJECT_COERCIBLE(this, "String.prototype.match");
51 CHECK_OBJECT_COERCIBLE(this, "String.prototype.search");
70 CHECK_OBJECT_COERCIBLE(this, "String.prototype.slice");
118 CHECK_OBJECT_COERCIBLE(this, "String.prototype.anchor");
126 CHECK_OBJECT_COERCIBLE(this, "String.prototype.big");
133 CHECK_OBJECT_COERCIBLE(this, "String.prototype.blink");
140 CHECK_OBJECT_COERCIBLE(this, "String.prototype.bold");
147 CHECK_OBJECT_COERCIBLE(this, "String.prototype.fixed");
154 CHECK_OBJECT_COERCIBLE(this, "String.prototype.fontcolor")
    [all...]
  /external/flatbuffers/tests/
monster_test_generated.js 66 MyGame.Example2.Monster.prototype.__init = function(i, bb) {
117 MyGame.Example.Test.prototype.__init = function(i, bb) {
126 MyGame.Example.Test.prototype.a = function() {
134 MyGame.Example.Test.prototype.mutate_a = function(value) {
148 MyGame.Example.Test.prototype.b = function() {
156 MyGame.Example.Test.prototype.mutate_b = function(value) {
201 MyGame.Example.TestSimpleTableWithEnum.prototype.__init = function(i, bb) {
219 MyGame.Example.TestSimpleTableWithEnum.prototype.color = function() {
228 MyGame.Example.TestSimpleTableWithEnum.prototype.mutate_color = function(value) {
283 MyGame.Example.Vec3.prototype.__init = function(i, bb)
    [all...]
  /external/v8/benchmarks/
deltablue.js 49 Object.prototype.inheritsFrom = function (shuper) {
51 Inheriter.prototype = shuper.prototype;
52 this.prototype = new Inheriter();
60 OrderedCollection.prototype.add = function (elm) {
64 OrderedCollection.prototype.at = function (index) {
68 OrderedCollection.prototype.size = function () {
72 OrderedCollection.prototype.removeFirst = function () {
76 OrderedCollection.prototype.remove = function (elm) {
122 Strength.prototype.nextWeaker = function ()
    [all...]
raytrace.js 8 // untouched. This file also contains a copy of parts of the Prototype
24 // The following is a copy of parts of the Prototype JavaScript library:
26 // Prototype JavaScript framework, version 1.5.0
29 // Prototype is freely distributable under the terms of an MIT-style license.
30 // For details, see the Prototype web site: http://prototype.conio.net/
79 Flog.RayTracer.Color.prototype = {
169 result = Flog.RayTracer.Color.prototype.add(
170 Flog.RayTracer.Color.prototype.multiplyScalar(c1, 1 - w),
171 Flog.RayTracer.Color.prototype.multiplyScalar(c2, w
    [all...]
  /external/autotest/client/site_tests/network_FirewallHolePunch/src/tcpserver/
tcp-server.js 74 TcpServer.prototype.isConnected=function() {
84 TcpServer.prototype.listen = function(callback) {
96 TcpServer.prototype.disconnect = function() {
122 TcpServer.prototype._onCreate = function(createInfo) {
142 TcpServer.prototype._onListenComplete = function(resultCode) {
148 TcpServer.prototype._onAccept = function (info) {
164 TcpServer.prototype._onAcceptError = function(info) {
171 TcpServer.prototype._onNoMoreConnectionsAvailable = function(socketId) {
181 TcpServer.prototype._onSocketInfo = function(tcpConnection, socketInfo) {
207 TcpConnection.prototype.setSocketInfo = function(socketInfo)
    [all...]
  /external/clang/test/SemaTemplate/
inject-templated-friend-post.cpp 2 // RUN: %clang_cc1 %s -std=c++98 -triple %itanium_abi_triple -emit-llvm -o - -DPROTOTYPE | FileCheck --check-prefix=CHECK-PROTOTYPE %s
4 // RUN: %clang_cc1 %s -std=c++98 -triple %itanium_abi_triple -emit-llvm -o - -DPROTOTYPE -DINSTANTIATE | FileCheck --check-prefix=CHECK-PROTOTYPE-INSTANTIATE %s
11 // CHECK-PROTOTYPE: define linkonce_odr{{.*}}_ZlsR11std_ostreamRK8StreamerI3FooE
13 // CHECK-PROTOTYPE-INSTANTIATE: define linkonce_odr{{.*}}_ZlsR11std_ostreamRK8StreamerI3FooE
50 #ifdef PROTOTYPE
  /external/protobuf/js/binary/
decoder_test.js 259 jspb.BinaryDecoder.prototype.readUint8,
260 jspb.BinaryEncoder.prototype.writeUint8,
264 jspb.BinaryDecoder.prototype.readUint16,
265 jspb.BinaryEncoder.prototype.writeUint16,
269 jspb.BinaryDecoder.prototype.readUint32,
270 jspb.BinaryEncoder.prototype.writeUint32,
274 jspb.BinaryDecoder.prototype.readUint64,
275 jspb.BinaryEncoder.prototype.writeUint64,
285 jspb.BinaryDecoder.prototype.readInt8,
286 jspb.BinaryEncoder.prototype.writeInt8
    [all...]
writer.js 117 jspb.BinaryWriter.prototype.appendUint8Array_ = function(arr) {
132 jspb.BinaryWriter.prototype.beginDelimited_ = function(field) {
149 jspb.BinaryWriter.prototype.endDelimited_ = function(bookmark) {
171 jspb.BinaryWriter.prototype.writeSerializedMessage = function(
184 jspb.BinaryWriter.prototype.maybeWriteSerializedMessage = function(
195 jspb.BinaryWriter.prototype.reset = function() {
207 jspb.BinaryWriter.prototype.getResultBuffer = function() {
241 jspb.BinaryWriter.prototype.getResultBase64String = function() {
252 jspb.BinaryWriter.prototype.beginSubMessage = function(field) {
261 jspb.BinaryWriter.prototype.endSubMessage = function()
    [all...]
reader.js 144 jspb.BinaryReader.prototype.alloc = jspb.BinaryReader.alloc;
150 jspb.BinaryReader.prototype.free = function() {
167 jspb.BinaryReader.prototype.getFieldCursor = function() {
176 jspb.BinaryReader.prototype.getCursor = function() {
185 jspb.BinaryReader.prototype.getBuffer = function() {
194 jspb.BinaryReader.prototype.getFieldNumber = function() {
203 jspb.BinaryReader.prototype.getWireType = function() {
212 jspb.BinaryReader.prototype.isEndGroup = function() {
221 jspb.BinaryReader.prototype.getError = function() {
232 jspb.BinaryReader.prototype.setBlock = function(bytes, start, length)
    [all...]
encoder.js 62 jspb.BinaryEncoder.prototype.length = function() {
70 jspb.BinaryEncoder.prototype.end = function() {
83 jspb.BinaryEncoder.prototype.writeSplitVarint64 = function(lowBits, highBits) {
107 jspb.BinaryEncoder.prototype.writeUnsignedVarint32 = function(value) {
126 jspb.BinaryEncoder.prototype.writeSignedVarint32 = function(value) {
155 jspb.BinaryEncoder.prototype.writeUnsignedVarint64 = function(value) {
171 jspb.BinaryEncoder.prototype.writeSignedVarint64 = function(value) {
186 jspb.BinaryEncoder.prototype.writeZigzagVarint32 = function(value) {
200 jspb.BinaryEncoder.prototype.writeZigzagVarint64 = function(value) {
215 jspb.BinaryEncoder.prototype.writeUint8 = function(value)
    [all...]
decoder.js 97 jspb.BinaryIterator.prototype.init_ =
142 jspb.BinaryIterator.prototype.free = function() {
153 jspb.BinaryIterator.prototype.clear = function() {
171 jspb.BinaryIterator.prototype.get = function() {
180 jspb.BinaryIterator.prototype.atEnd = function() {
190 jspb.BinaryIterator.prototype.next = function() {
306 jspb.BinaryDecoder.prototype.free = function() {
318 jspb.BinaryDecoder.prototype.clone = function() {
327 jspb.BinaryDecoder.prototype.clear = function() {
340 jspb.BinaryDecoder.prototype.getBuffer = function()
    [all...]
  /external/v8/tools/turbolizer/
edge.js 20 Edge.prototype.stringID = function() {
24 Edge.prototype.isVisible = function() {
28 Edge.prototype.getInputHorizontalPosition = function(graph) {
48 Edge.prototype.generatePath = function(graph) {
77 Edge.prototype.isBackEdge = function() {
  /dalvik/dx/src/com/android/dx/rop/cst/
CstInvokeDynamic.java 19 import com.android.dx.rop.type.Prototype;
35 /** {@code non-null;} the prototype derived from {@code nat} */
36 private final Prototype prototype; field in class:CstInvokeDynamic
68 this.prototype = Prototype.fromDescriptor(nat.getDescriptor().toHuman());
158 * Gets the {@code Prototype} of the {@code invokedynamic} call site.
160 * @return the {@code invokedynamic} call site prototype
162 public Prototype getPrototype() {
163 return prototype;
    [all...]
CstCallSiteRef.java 18 import com.android.dx.rop.type.Prototype;
85 * Gets the prototype of the method handle resolved at the call site.
87 * @return the prototype associated with the call site invocation
89 public Prototype getPrototype() {
  /external/vixl/examples/aarch64/
examples.h 36 // Generate a function with the following prototype:
42 // Generate a function with the following prototype:
48 // Generate a function with the following prototype:
54 // Generate a function with the following prototype:
60 // Generate a function with the following prototype:
67 // Generate a function with the following prototype:
74 // Generate a function with the following prototype:
81 // Generate a function with the following prototype:
87 // Generate a function with the following prototype:
96 // Generate a function with the following prototype
    [all...]
  /external/libmojo/mojo/public/js/test/
validation_test_input_parser.js 21 InputError.prototype.toString = function() {
35 File.prototype.endReached = function() {
39 File.prototype.nextLine = function() {
59 Line.prototype.endReached = function() {
72 Line.prototype.nextItem = function() {
105 Item.prototype.isFloat = function() {
109 Item.prototype.isInteger = function() {
114 Item.prototype.isNumber = function() {
118 Item.prototype.isByte = function() {
122 Item.prototype.isDistance = function()
    [all...]
  /external/v8/src/
bootstrapper.cc 279 // object and overrides the prototype in 'to' with the one from
300 // prototype for the processing of JS builtins. Later the function maps are
301 // replaced in order to make prototype writable. These are the final, writable
302 // prototype, maps.
386 Handle<JSObject> prototype; local
388 maybe_prototype.ToHandle(&prototype)
389 ? factory->NewFunction(name, call_code, prototype, type,
544 // Functions with this map will not have a 'prototype' property, and
553 // Later the map is replaced with writable prototype map, allocated below.
560 // The final map for functions. Writeable prototype
998 Handle<JSObject> prototype = local
1121 Handle<JSObject> prototype = local
1300 Handle<JSFunction> prototype = empty_function; local
1508 Handle<JSValue> prototype = local
1570 Handle<JSValue> prototype = local
1622 Handle<JSValue> prototype = local
1724 Handle<JSObject> prototype = local
1791 Handle<JSObject> prototype = local
1946 Handle<JSObject> prototype = local
2074 Handle<JSObject> prototype = local
2505 Handle<JSObject> prototype = local
2571 Handle<JSObject> prototype = local
2961 Handle<JSObject> prototype = local
3307 Handle<JSObject> prototype = local
3818 Handle<JSObject> prototype = local
3858 Handle<JSObject> prototype = local
3927 Handle<JSObject> prototype = local
    [all...]
  /external/libmojo/mojo/edk/js/tests/
js_to_cpp_tests.js 27 JsSideConnection.prototype =
28 Object.create(jsToCpp.JsSide.stubClass.prototype);
30 JsSideConnection.prototype.setCppSide = function(cppSide) {
35 JsSideConnection.prototype.ping = function (arg) {
39 JsSideConnection.prototype.echo = function (numIterations, arg) {
93 JsSideConnection.prototype.bitFlip = function (arg) {
97 var proto = connector.Connector.prototype;
135 JsSideConnection.prototype.backPointer = function (arg) {
139 var proto = connector.Connector.prototype;
207 var genuineArray = Array.prototype.slice.call(arguments)
    [all...]
  /external/v8/src/builtins/
builtins-symbol.cc 70 // ES6 section 19.4.3.4 Symbol.prototype [ @@toPrimitive ] ( hint )
81 "Symbol.prototype [ @@toPrimitive ]");
85 // ES6 section 19.4.3.2 Symbol.prototype.toString ( )
95 "Symbol.prototype.toString");
101 // ES6 section 19.4.3.3 Symbol.prototype.valueOf ( )
111 context, receiver, PrimitiveType::kSymbol, "Symbol.prototype.valueOf");
  /external/v8/src/inspector/build/
check_injected_script_source.py 45 # Array.prototype.*
48 # Function.prototype.*
50 # Object.prototype.*
61 # - Object.prototype.toString()
62 # - Array.prototype.*
63 # - Function.prototype.*
  /external/clang/test/Parser/
check-syntax-1.m 9 // expected-error {{expected ';' after method prototype}}
  /external/llvm/test/Feature/
testvarargs.ll 6 declare i32 @printf(i8*, ...) ;; Prototype for: int __builtin_printf(const char*, ...)
  /external/llvm/test/Linker/
2003-08-28-TypeResolvesGlobal3.ll 7 ; GLobal using the resolved function prototype
2005-02-12-ConstantGlobals.ll 1 ; Test that a prototype can be marked const, and the definition is allowed

Completed in 706 milliseconds

1 2 34 5 6 7 8 91011>>