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

1 2 3 4 5 67 8 91011>>

  /dalvik/dx/src/com/android/dx/cf/code/
BaseMachine.java 22 import com.android.dx.rop.type.Prototype;
36 /* {@code non-null;} the prototype for the associated method */
37 private final Prototype prototype; field in class:BaseMachine
84 * @param prototype {@code non-null;} the prototype for the
87 public BaseMachine(Prototype prototype) {
88 if (prototype == null) {
89 throw new NullPointerException("prototype == null")
    [all...]
  /external/v8/src/builtins/
builtins-date.cc 361 // ES6 section 20.3.4.20 Date.prototype.setDate ( date )
364 CHECK_RECEIVER(JSDate, date, "Date.prototype.setDate");
380 // ES6 section 20.3.4.21 Date.prototype.setFullYear (year, month, date)
383 CHECK_RECEIVER(JSDate, date, "Date.prototype.setFullYear");
413 // ES6 section 20.3.4.22 Date.prototype.setHours(hour, min, sec, ms)
416 CHECK_RECEIVER(JSDate, date, "Date.prototype.setHours");
450 // ES6 section 20.3.4.23 Date.prototype.setMilliseconds(ms)
453 CHECK_RECEIVER(JSDate, date, "Date.prototype.setMilliseconds");
470 // ES6 section 20.3.4.24 Date.prototype.setMinutes ( min, sec, ms )
473 CHECK_RECEIVER(JSDate, date, "Date.prototype.setMinutes")
    [all...]
  /external/v8/src/js/
array.js 109 // Predeclare the instance variables on the prototype. Otherwise setting them in
110 // the constructor will leak the instance through settings on Object.prototype.
111 Stack.prototype.length = null;
112 Stack.prototype.values = null;
383 CHECK_OBJECT_COERCIBLE(this, "Array.prototype.join");
395 CHECK_OBJECT_COERCIBLE(this, "Array.prototype.pop");
415 CHECK_OBJECT_COERCIBLE(this, "Array.prototype.push");
517 CHECK_OBJECT_COERCIBLE(this, "Array.prototype.reverse");
536 CHECK_OBJECT_COERCIBLE(this, "Array.prototype.shift");
563 CHECK_OBJECT_COERCIBLE(this, "Array.prototype.unshift")
    [all...]
prologue.js 127 // Prevents changes to the prototype of a built-in function.
128 // The "prototype" property of the function object is made non-configurable,
129 // and the prototype object is made non-extensible. The latter prevents
134 var prototype = constructor.prototype;
139 %OptimizeObjectForAddingMultipleProperties(prototype, property_count);
143 %AddNamedProperty(prototype, fields[i],
150 %AddNamedProperty(prototype, key, f, DONT_ENUM | DONT_DELETE | READ_ONLY);
153 %InternalSetPrototype(prototype, null);
154 %ToFastProperties(prototype);
    [all...]
  /external/protobuf/src/google/protobuf/
dynamic_message.cc 54 // refers to the "default" copy of the class as the "prototype".
235 // important (the prototype must be deleted *before* the offsets).
238 // Don't use a scoped_ptr to hold the prototype: the destructor for
239 // DynamicMessage needs to know whether it is the prototype, and does so by
242 const DynamicMessage* prototype; member in struct:google::protobuf::DynamicMessage::TypeInfo
245 TypeInfo() : prototype(NULL), default_oneof_instance(NULL) {}
248 delete prototype;
256 // Called on the prototype after construction to initialize message fields.
287 return type_info_->prototype == this ||
288 // If type_info_->prototype is NULL, then we must be constructin
752 DynamicMessage* prototype = new(base) DynamicMessage(type_info); local
    [all...]
  /external/v8/benchmarks/
crypto.js 148 BigInteger.prototype.am = fn;
523 Classic.prototype.convert = cConvert;
524 Classic.prototype.revert = cRevert;
525 Classic.prototype.reduce = cReduce;
526 Classic.prototype.mulTo = cMulTo;
527 Classic.prototype.sqrTo = cSqrTo;
608 Montgomery.prototype.convert = montConvert;
609 Montgomery.prototype.revert = montRevert;
610 Montgomery.prototype.reduce = montReduce;
611 Montgomery.prototype.mulTo = montMulTo
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
EarlyExitException.js 17 /** @lends org.antlr.runtime.EarlyExitException.prototype */
  /external/clang/test/Parser/
warn-semicolon-before-method-body.m 4 // Allow optional semicolon in objc method definition after method prototype,
  /external/dexmaker/dexmaker/src/main/java/com/android/dx/
MethodId.java 22 import com.android.dx.rop.type.Prototype;
96 Prototype prototype(boolean includeThis) { method in class:MethodId
97 return Prototype.intern(descriptor(includeThis));
  /external/icu/icu4c/source/common/
localsvc.h 17 * Prototype for user-supplied service hook. This function is expected to return
  /external/jemalloc/include/jemalloc/
jemalloc_defs.h.in 25 * Match the operating system's prototype.
  /external/libmojo/mojo/public/js/
bindings.js 22 ProxyProperties.prototype.getLocalDelegate = function() {
27 ProxyProperties.prototype.setLocalDelegate = function(impl) {
34 ProxyProperties.prototype.close = function() {
44 StubProperties.prototype.close = function() {
  /external/llvm/test/CodeGen/SystemZ/
memchr-01.ll 1 ; Test memchr using SRST, with a weird but usable prototype.
  /external/llvm/test/Transforms/InstCombine/
exp2-2.ll 9 ; Check that exp2 functions with the wrong prototype aren't simplified.
  /external/llvm/utils/unittest/
CMakeLists.txt 4 # Consider this a prototype. It will change drastically. For now,
  /external/protobuf/js/binary/
arith.js 73 jspb.arith.UInt64.prototype.cmp = function(other) {
88 jspb.arith.UInt64.prototype.rightShift = function() {
99 jspb.arith.UInt64.prototype.leftShift = function() {
110 jspb.arith.UInt64.prototype.msb = function() {
119 jspb.arith.UInt64.prototype.lsb = function() {
128 jspb.arith.UInt64.prototype.zero = function() {
138 jspb.arith.UInt64.prototype.add = function(other) {
152 jspb.arith.UInt64.prototype.sub = function(other) {
208 jspb.arith.UInt64.prototype.mul = function(a) {
227 jspb.arith.UInt64.prototype.div = function(_divisor)
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
SAXFactoryImpl.java 33 * a prototype object. Currently this is actually not a real prototype,
35 * (as opposed to instantiating new readers from this prototype), but
48 * directly using the prototype instance.
  /hardware/akm/AK8975_FS/akmdfs/AKFS_APIs_8975/
AKFS_Direction.h 24 /***** Prototype of function **************************************************/
  /toolchain/binutils/binutils-2.25/libiberty/
ChangeLog.jit 4 copy of prototype.
  /external/v8/src/runtime/
runtime-classes.cc 143 Handle<JSObject> prototype = isolate->factory()->NewJSObjectFromMap(map); local
154 JSFunction::SetPrototype(constructor, prototype);
160 prototype, attribs),
168 JSObject::AddProperty(prototype, isolate->factory()->constructor_string(),
184 // Caller already has access to constructor, so return the prototype.
185 return prototype;
453 Object* prototype = active_function->map()->prototype(); local
454 if (!prototype->IsConstructor()) {
456 return ThrowNotSuperConstructor(isolate, handle(prototype, isolate)
    [all...]
  /prebuilts/go/darwin-x86/doc/codewalk/
codewalk.js 81 CodewalkViewer.prototype.navigateToCode = function(url, opt_window) {
102 CodewalkViewer.prototype.selectFirstComment = function() {
111 CodewalkViewer.prototype.targetCommentLinksAtBlank = function() {
120 CodewalkViewer.prototype.installEventHandlers = function() {
178 CodewalkViewer.prototype.startSizerDrag = function(ev) {
189 CodewalkViewer.prototype.handleSizerDrag = function(ev) {
213 CodewalkViewer.prototype.endSizerDrag = function(ev) {
222 CodewalkViewer.prototype.toggleDescription = function(target) {
235 CodewalkViewer.prototype.changeCodeSide = function(codeSide) {
252 CodewalkViewer.prototype.changeSelectedComment = function(target)
    [all...]
  /prebuilts/go/linux-x86/doc/codewalk/
codewalk.js 81 CodewalkViewer.prototype.navigateToCode = function(url, opt_window) {
102 CodewalkViewer.prototype.selectFirstComment = function() {
111 CodewalkViewer.prototype.targetCommentLinksAtBlank = function() {
120 CodewalkViewer.prototype.installEventHandlers = function() {
178 CodewalkViewer.prototype.startSizerDrag = function(ev) {
189 CodewalkViewer.prototype.handleSizerDrag = function(ev) {
213 CodewalkViewer.prototype.endSizerDrag = function(ev) {
222 CodewalkViewer.prototype.toggleDescription = function(target) {
235 CodewalkViewer.prototype.changeCodeSide = function(codeSide) {
252 CodewalkViewer.prototype.changeSelectedComment = function(target)
    [all...]
  /external/libunwind/doc/
unw_backtrace.tex 28 called \Func{backtrace}(). The prototype for this function is usually obtained
29 by including the \File{$<$execinfo.h$>$} header file -- a prototype for
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
ast.ml 19 (* proto - This type represents the "prototype" for a function, which captures
22 type proto = Prototype of string * string array
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
ast.ml 19 (* proto - This type represents the "prototype" for a function, which captures
22 type proto = Prototype of string * string array

Completed in 570 milliseconds

1 2 3 4 5 67 8 91011>>