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

<<11121314151617181920>>

  /external/v8/src/compiler/
access-info.cc 296 // Check for store to data property on a prototype.
298 // Store to property not found on the receiver but on a prototype, we
400 // Don't search on the prototype chain for special indices in case of
407 // Don't search on the prototype when storing in literals
412 // Don't lookup private symbols on the prototype chain.
415 // Walk up the prototype chain.
416 if (!map->prototype()->IsJSObject()) {
423 DCHECK(map->prototype()->IsJSObject());
424 } else if (map->prototype()->IsNull(isolate())) {
425 // Store to property not found on the receiver or any prototype, we nee
    [all...]
js-call-reducer.cc 82 // ES6 section 19.2.3.1 Function.prototype.apply ( thisArg, argArray )
87 // Tail calls to Function.prototype.apply are not properly supported
155 node->RemoveInput(0); // Function.prototype.apply
190 // Change context of {node} to the Function.prototype.apply context,
200 // ES6 section 19.2.3.3 Function.prototype.call (thisArg, ...args)
206 // Change context of {node} to the Function.prototype.call context,
236 // ES6 section 19.2.3.6 Function.prototype [ @@hasInstance ] (V)
310 Handle<JSObject> prototype(JSObject::cast(object_map->prototype()));
311 object_map = handle(prototype->map())
    [all...]
  /external/v8/src/regexp/
regexp-utils.cc 100 "RegExp.prototype.exec"),
143 // Check the receiver's prototype's map.
144 Object* proto = recv->map()->prototype();
  /external/v8/tools/
generate-builtins-tests.py 56 if "prototype" in function:
57 proto = function["prototype"]
87 call = "%s.prototype.%s.call(%s)" % (full_name, method["name"], args)
SourceMap.js 77 if (!WebInspector.SourceMap.prototype._base64Map) {
79 WebInspector.SourceMap.prototype._base64Map = {};
81 WebInspector.SourceMap.prototype._base64Map[base64Digits.charAt(i)] = i;
128 WebInspector.SourceMap.prototype = {
347 WebInspector.SourceMap.StringCharIterator.prototype = {
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
dynamic_message.h 97 // Given a Descriptor, constructs the default (prototype) Message of that
104 // by calling the prototype's New() method share some data with the
105 // prototype, so these must be destroyed before the DynamicMessageFactory
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
dynamic_message.h 97 // Given a Descriptor, constructs the default (prototype) Message of that
104 // by calling the prototype's New() method share some data with the
105 // prototype, so these must be destroyed before the DynamicMessageFactory
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/
dynamic_message.h 97 // Given a Descriptor, constructs the default (prototype) Message of that
104 // by calling the prototype's New() method share some data with the
105 // prototype, so these must be destroyed before the DynamicMessageFactory
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
dynamic_message.h 103 // Given a Descriptor, constructs the default (prototype) Message of that
110 // by calling the prototype's New() method share some data with the
111 // prototype, so these must be destroyed before the DynamicMessageFactory
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/
dynamic_message.h 97 // Given a Descriptor, constructs the default (prototype) Message of that
104 // by calling the prototype's New() method share some data with the
105 // prototype, so these must be destroyed before the DynamicMessageFactory
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/inc/
H264SwDecApi.h 160 /* function prototype for API trace */
163 /* function prototype for memory allocation */
166 /* function prototype for memory free */
169 /* function prototype for memory copy */
172 /* function prototype for memset */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
mathcalls.h 0 /* Prototype declarations for math functions; helper file for <math.h>.
24 This file provides prototype declarations for the math functions.
31 prototype, that is actually `double' in the prototype for `NAME' and
32 `float' in the prototype for `NAMEf'. Reentrant variant functions are
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
mathcalls.h 0 /* Prototype declarations for math functions; helper file for <math.h>.
24 This file provides prototype declarations for the math functions.
31 prototype, that is actually `double' in the prototype for `NAME' and
32 `float' in the prototype for `NAMEf'. Reentrant variant functions are
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
mathcalls.h 0 /* Prototype declarations for math functions; helper file for <math.h>.
24 This file provides prototype declarations for the math functions.
31 prototype, that is actually `double' in the prototype for `NAME' and
32 `float' in the prototype for `NAMEf'. Reentrant variant functions are
  /external/v8/src/
messages.h 264 "Function.prototype.apply was called on %, which is a % and not a " \
310 "Immutable prototype object '%' cannot have their prototype set") \
314 "Function has non-object prototype '%' in instanceof check") \
352 "Object.prototype.__defineGetter__: Expecting function") \
356 "Object.prototype.__defineSetter__: Expecting function") \
367 T(ProtoObjectOrNull, "Object prototype may only be an Object or null: %") \
369 "Class extends value does not have valid prototype property %") \
414 "trap did not return its actual prototype") \
448 "prototype on the non-extensible proxy target")
    [all...]
  /external/v8/src/runtime/
runtime-object.cc 49 // prototype including own lookups.
223 Handle<Object> prototype = args.at(0); local
224 if (!prototype->IsNull(isolate) && !prototype->IsJSReceiver()) {
226 isolate, NewTypeError(MessageTemplate::kProtoObjectOrNull, prototype));
229 // Generate the map with the specified {prototype} based on the Object
234 Map::GetObjectCreateMap(Handle<HeapObject>::cast(prototype));
296 CONVERT_ARG_HANDLE_CHECKED(Object, prototype, 1);
298 JSReceiver::SetPrototype(obj, prototype, false, Object::THROW_ON_ERROR),
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 141 /// PrototypeAST - This class represents the "prototype" for a function,
324 /// prototype
328 return LogErrorP("Expected function name in prototype");
334 return LogErrorP("Expected '(' in prototype");
340 return LogErrorP("Expected ')' in prototype");
348 /// definition ::= 'def' prototype expression
371 /// external ::= 'extern' prototype
  /external/protobuf/src/google/protobuf/
message.cc 294 void RegisterType(const Descriptor* descriptor, const Message* prototype);
338 const Message* prototype) {
347 if (!InsertIfNotPresent(&type_map_, descriptor, prototype)) {
405 const Descriptor* descriptor, const Message* prototype) {
406 GeneratedMessageFactory::singleton()->RegisterType(descriptor, prototype);
493 const Message* prototype, google::protobuf::Arena* arena) {
494 return prototype->New(arena);
  /external/python/cpython2/Lib/ctypes/
__init__.py 77 use_errno=False, use_last_error=False) -> function prototype.
82 The function prototype can be called in different ways to create a
85 prototype(integer address) -> foreign function
86 prototype(callable) -> create and return a C callable function from callable
87 prototype(integer index, method name[, paramflags]) -> foreign function calling a COM method
88 prototype((ordinal number, dll object)[, paramflags]) -> foreign function exported by ordinal
89 prototype((function name, dll object)[, paramflags]) -> foreign function exported by name
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter2/
toy.cpp 116 /// PrototypeAST - This class represents the "prototype" for a function,
281 /// prototype
285 return ErrorP("Expected function name in prototype");
291 return ErrorP("Expected '(' in prototype");
297 return ErrorP("Expected ')' in prototype");
305 /// definition ::= 'def' prototype expression
326 /// external ::= 'extern' prototype
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/
__init__.py 80 use_errno=False, use_last_error=False) -> function prototype.
85 The function prototype can be called in different ways to create a
88 prototype(integer address) -> foreign function
89 prototype(callable) -> create and return a C callable function from callable
90 prototype(integer index, method name[, paramflags]) -> foreign function calling a COM method
91 prototype((ordinal number, dll object)[, paramflags]) -> foreign function exported by ordinal
92 prototype((function name, dll object)[, paramflags]) -> foreign function exported by name
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/
__init__.py 80 use_errno=False, use_last_error=False) -> function prototype.
85 The function prototype can be called in different ways to create a
88 prototype(integer address) -> foreign function
89 prototype(callable) -> create and return a C callable function from callable
90 prototype(integer index, method name[, paramflags]) -> foreign function calling a COM method
91 prototype((ordinal number, dll object)[, paramflags]) -> foreign function exported by ordinal
92 prototype((function name, dll object)[, paramflags]) -> foreign function exported by name
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
__init__.py 80 use_errno=False, use_last_error=False) -> function prototype.
85 The function prototype can be called in different ways to create a
88 prototype(integer address) -> foreign function
89 prototype(callable) -> create and return a C callable function from callable
90 prototype(integer index, method name[, paramflags]) -> foreign function calling a COM method
91 prototype((ordinal number, dll object)[, paramflags]) -> foreign function exported by ordinal
92 prototype((function name, dll object)[, paramflags]) -> foreign function exported by name
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
__init__.py 80 use_errno=False, use_last_error=False) -> function prototype.
85 The function prototype can be called in different ways to create a
88 prototype(integer address) -> foreign function
89 prototype(callable) -> create and return a C callable function from callable
90 prototype(integer index, method name[, paramflags]) -> foreign function calling a COM method
91 prototype((ordinal number, dll object)[, paramflags]) -> foreign function exported by ordinal
92 prototype((function name, dll object)[, paramflags]) -> foreign function exported by name
  /external/clang/include/clang/CodeGen/
CGFunctionInfo.h 393 /// Compute the arguments required by the given formal prototype,
398 static RequiredArgs forPrototypePlus(const FunctionProtoType *prototype,
401 if (!prototype->isVariadic()) return All;
407 return RequiredArgs(prototype->getNumParams() + additional);
410 static RequiredArgs forPrototype(const FunctionProtoType *prototype,
412 return forPrototypePlus(prototype, 0, FD);
415 static RequiredArgs forPrototype(CanQual<FunctionProtoType> prototype,
417 return forPrototype(prototype.getTypePtr(), FD);
420 static RequiredArgs forPrototypePlus(CanQual<FunctionProtoType> prototype,
423 return forPrototypePlus(prototype.getTypePtr(), additional, FD)
    [all...]

Completed in 662 milliseconds

<<11121314151617181920>>