Searched defs:prototype (Results 1 - 25 of 106) sorted by relevance

12345

/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
H A DRungeKuttaIntegrator.java67 private final RungeKuttaStepInterpolator prototype; field in class:RungeKuttaIntegrator
79 * @param prototype prototype of the step interpolator to use
84 final RungeKuttaStepInterpolator prototype,
90 this.prototype = prototype;
120 final RungeKuttaStepInterpolator rki = (RungeKuttaStepInterpolator) prototype.copy();
82 RungeKuttaIntegrator(final String name, final double[] c, final double[][] a, final double[] b, final RungeKuttaStepInterpolator prototype, final double step) argument
H A DEmbeddedRungeKuttaIntegrator.java81 private final RungeKuttaStepInterpolator prototype; field in class:EmbeddedRungeKuttaIntegrator
101 * @param prototype prototype of the step interpolator to use
111 final RungeKuttaStepInterpolator prototype,
122 this.prototype = prototype;
139 * @param prototype prototype of the step interpolator to use
149 final RungeKuttaStepInterpolator prototype,
160 this.prototype
109 EmbeddedRungeKuttaIntegrator(final String name, final boolean fsal, final double[] c, final double[][] a, final double[] b, final RungeKuttaStepInterpolator prototype, final double minStep, final double maxStep, final double scalAbsoluteTolerance, final double scalRelativeTolerance) argument
147 EmbeddedRungeKuttaIntegrator(final String name, final boolean fsal, final double[] c, final double[][] a, final double[] b, final RungeKuttaStepInterpolator prototype, final double minStep, final double maxStep, final double[] vecAbsoluteTolerance, final double[] vecRelativeTolerance) argument
[all...]
/external/v8/src/ic/
H A Dcall-optimization.cc39 Handle<JSObject> prototype(JSObject::cast(object_map->prototype()));
40 object_map = handle(prototype->map());
46 return prototype;
74 // Check if holder is in prototype chain of api_holder.
78 Object* prototype = object->map()->prototype(); local
79 if (!prototype->IsJSObject()) return false;
80 if (prototype == *holder) return true;
81 object = JSObject::cast(prototype);
[all...]
H A Dkeyed-store-generic.cc101 Node* prototype = LoadMapPrototype(map); local
102 GotoIf(WordEqual(prototype, NullConstant()), only_fast_elements);
103 Node* prototype_map = LoadMap(prototype);
259 // only if there can be no setters on the prototype chain.
362 // only if there can be no setters on the prototype chain.
/external/v8/src/runtime/
H A Druntime-forin.cc62 // Continue lookup on the proxy's prototype.
64 Handle<Object> prototype; local
65 ASSIGN_RETURN_ON_EXCEPTION(isolate, prototype,
67 if (prototype->IsNull(isolate)) {
72 isolate, Handle<JSReceiver>::cast(prototype), key);
H A Druntime-classes.cc143 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, isolat
[all...]
H A Druntime-object.cc49 // 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),
938 CONVERT_ARG_HANDLE_CHECKED(Object, prototype,
[all...]
/external/webrtc/webrtc/common_audio/
H A Dswap_queue.h93 // Creates a queue of size size and fills it with copies of prototype.
94 SwapQueue(size_t size, const T& prototype) : queue_(size, prototype) { argument
100 const T& prototype,
102 : queue_item_verifier_(queue_item_verifier), queue_(size, prototype) {
99 SwapQueue(size_t size, const T& prototype, const QueueItemVerifier& queue_item_verifier) argument
/external/dexmaker/dexmaker/src/main/java/com/android/dx/
H A DMethodId.java96 Prototype prototype(boolean includeThis) { method in class:MethodId
/external/guava/guava/src/com/google/common/hash/
H A DMessageDigestHashFunction.java34 private final MessageDigest prototype; field in class:MessageDigestHashFunction
40 this.prototype = getMessageDigest(algorithmName);
41 this.bytes = prototype.getDigestLength();
48 this.prototype = getMessageDigest(algorithmName);
49 int maxLength = prototype.getDigestLength();
58 prototype.clone();
84 return new MessageDigestHasher((MessageDigest) prototype.clone(), bytes);
89 return new MessageDigestHasher(getMessageDigest(prototype.getAlgorithm()), bytes);
111 return new SerializedForm(prototype.getAlgorithm(), bytes, toString);
/external/v8/src/
H A Dcompilation-dependencies.cc128 Handle<Map> map, MaybeHandle<JSReceiver> prototype) {
134 if (prototype.ToHandle(&last) && last.is_identical_to(current)) {
127 AssumePrototypeMapsStable( Handle<Map> map, MaybeHandle<JSReceiver> prototype) argument
H A Dprototype.h15 * A class to uniformly access the prototype of any Object and walk its
16 * prototype chain.
18 * The PrototypeIterator can either start at the prototype (default), or
20 * Map, it will always start at the prototype.
23 * non-hidden prototype, or a given object.
59 object_(receiver_map->GetPrototypeChainRootMap(isolate_)->prototype()),
74 handle_(receiver_map->GetPrototypeChainRootMap(isolate_)->prototype(),
129 Object* prototype = map->prototype(); local
132 : prototype
[all...]
H A Dtransitions.cc278 // There was no prototype transitions array before, so the size
296 Handle<Object> prototype,
298 DCHECK(HeapObject::cast(*prototype)->map()->IsMap());
299 // Don't cache prototype transition if this map is either shared, or a map of
300 // a prototype.
333 Handle<Object> prototype) {
341 Map::cast(target_cell->value())->prototype() == *prototype) {
295 PutPrototypeTransition(Handle<Map> map, Handle<Object> prototype, Handle<Map> target_map) argument
332 GetPrototypeTransition(Handle<Map> map, Handle<Object> prototype) argument
/external/guava/guava/src/com/google/common/base/
H A DJoiner.java87 private Joiner(Joiner prototype) { argument
88 this.separator = prototype.separator;
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
H A DULocaleCollationTest.java45 public Object register(ULocale loc, Object prototype) {
46 return Collator.registerInstance((Collator) prototype, loc);
73 * and unregister a service object prototype.
76 Object register(ULocale loc, Object prototype); argument
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/util/
H A DULocaleCollationTest.java44 public Object register(ULocale loc, Object prototype) {
45 return Collator.registerInstance((Collator) prototype, loc);
72 * and unregister a service object prototype.
75 Object register(ULocale loc, Object prototype); argument
/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DDynamicMessage.java150 * {@code prototype}, and initialize it with {@code prototype}'s contents.
152 public static Builder newBuilder(Message prototype) { argument
153 return new Builder(prototype.getDescriptorForType()).mergeFrom(prototype);
/external/protobuf/src/google/protobuf/
H A Dmessage_lite.cc356 const MessageLite* prototype, google::protobuf::Arena* arena) {
357 return prototype->New(arena);
355 NewFromPrototype( const MessageLite* prototype, google::protobuf::Arena* arena) argument
H A Ddynamic_message.cc54 // 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 i
752 DynamicMessage* prototype = new(base) DynamicMessage(type_info); local
[all...]
H A Dextension_set_heavy.cc170 const MessageLite* prototype = local
173 extension->message_value = prototype->New(arena_);
239 const MessageLite* prototype; local
241 prototype = factory->GetPrototype(descriptor->message_type());
242 GOOGLE_CHECK(prototype != NULL);
244 prototype = &extension->repeated_message_value->Get(0);
246 result = prototype->New(arena_);
H A Dextension_set_unittest.cc772 unittest::ForeignMessage prototype; local
773 prototype.set_c(2);
776 CopyFrom(prototype);
779 (16 - kMinRepeatedFieldAllocationSize) * prototype.SpaceUsed();
1198 const Message* prototype = local
1200 EXPECT_EQ(prototype, &sub_message);
/external/python/cpython2/Parser/
H A Dasdl_c.py550 def prototype(self, sum, name): member in class:MarshalPrototypeVisitor
555 visitProduct = visitSum = prototype
/external/v8/src/builtins/
H A Dbuiltins-function.cc272 // ES6 section 19.2.3.2 Function.prototype.bind ( thisArg, ...args )
374 Node* prototype = assembler.LoadMapPrototype(receiver_map); local
377 assembler.GotoIf(assembler.WordNotEqual(prototype, expected_prototype),
464 // ES6 section 19.2.3.5 Function.prototype.toString ( )
476 "Function.prototype.toString")));
479 // ES6 section 19.2.3.6 Function.prototype [ @@hasInstance ] ( V )
/external/guice/core/src/com/google/inject/spi/
H A DElements.java191 /** Creates a recording binder that's backed by {@code prototype}. */
193 RecordingBinder prototype, Object source, SourceProvider sourceProvider) {
196 this.stage = prototype.stage;
197 this.modules = prototype.modules;
198 this.elements = prototype.elements;
199 this.scanners = prototype.scanners;
201 this.moduleSource = prototype.moduleSource;
203 this.parent = prototype.parent;
204 this.privateElements = prototype.privateElements;
205 this.privateBinders = prototype
192 RecordingBinder( RecordingBinder prototype, Object source, SourceProvider sourceProvider) argument
[all...]
/external/icu/icu4c/source/tools/makeconv/
H A Dmakeconv.cpp430 const UConverterStaticData *prototype; local
506 prototype=ucnv_converterStaticData[staticData->conversionType];
507 if(prototype!=NULL) {
509 uprv_strcpy((char *)staticData->name, prototype->name);
513 staticData->codepage=prototype->codepage;
517 staticData->platform=prototype->platform;
521 staticData->minBytesPerChar=prototype->minBytesPerChar;
525 staticData->maxBytesPerChar=prototype->maxBytesPerChar;
529 staticData->subCharLen=prototype->subCharLen;
530 if(prototype
[all...]

Completed in 1000 milliseconds

12345