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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/test/fixedbugs/
issue10925.go 11 func prototype(xyz []string) {} func
14 f := prototype
  /prebuilts/go/linux-x86/test/fixedbugs/
issue10925.go 11 func prototype(xyz []string) {} func
14 f := prototype
  /frameworks/compile/mclinker/lib/LD/
StubFactory.cpp 34 /// addPrototype - register a stub prototype
44 // find if there is a prototype stub for the input relocation
46 Stub* prototype = findPrototype(pReloc, pReloc.place(), pTargetSymValue); local
47 if (prototype != NULL) {
59 stub = islands.second->findStub(prototype, pReloc);
64 stub = islands.first->findStub(prototype, pReloc);
66 // create a stub from the prototype
67 stub = prototype->clone();
73 islands.first->addStub(prototype, pReloc, *stub);
83 Stub* prototype = findPrototype(pFragRef) local
    [all...]
  /prebuilts/go/darwin-x86/test/
escape_calls.go 46 // Test for bug where func var f used prototype's escape analysis results.
47 func prototype(xyz []string) {} // ERROR "prototype xyz does not escape" func
50 f := prototype
  /prebuilts/go/linux-x86/test/
escape_calls.go 46 // Test for bug where func var f used prototype's escape analysis results.
47 func prototype(xyz []string) {} // ERROR "prototype xyz does not escape" func
50 f := prototype
  /dalvik/dx/src/com/android/dx/dex/file/
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/v8/src/ic/
call-optimization.cc 39 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...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
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...]
  /external/autotest/frontend/client/src/autotest/tko/
ParameterizedField.java 52 for (ParameterizedField prototype : prototypes) {
53 prototypeNames.add(prototype.getTypeName());
64 ParameterizedField prototype = getPrototype(typeName); local
65 ParameterizedField newField = prototype.freshInstance();
75 for (ParameterizedField prototype : prototypes) {
76 if (name.startsWith(prototype.getTypeName())) {
77 return prototype;
81 throw new IllegalArgumentException("No prototype found for " + name);
  /external/guava/guava/src/com/google/common/hash/
MessageDigestHashFunction.java 34 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);
  /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...]
  /dalvik/dx/src/com/android/dx/rop/cst/
CstProtoRef.java 18 import com.android.dx.rop.type.Prototype;
22 * Prototype reference.
26 /** {@code non-null;} the prototype */
27 private final Prototype prototype; field in class:CstProtoRef
29 public CstProtoRef(Prototype prototype) {
30 this.prototype = prototype;
41 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...]
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...]
  /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/v8/src/runtime/
runtime-forin.cc 62 // 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);
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...]
  /external/dexmaker/dexmaker/src/main/java/com/android/dx/
MethodId.java 22 import com.android.dx.rop.type.Prototype;
104 Prototype prototype(boolean includeThis) { method in class:MethodId
105 return Prototype.intern(descriptor(includeThis));
  /external/v8/src/
prototype.h 15 * 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->IsNull(isolate_)
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
RungeKuttaIntegrator.java 66 /** Prototype of the step interpolator. */
67 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();
EmbeddedRungeKuttaIntegrator.java 80 /** Prototype of the step interpolator. */
81 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,
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
BranchIsland.h 89 /// findStub - return true if there is a stub built from the given prototype
113 const Stub* prototype() const { return m_pPrototype; } function in class:mcld::BranchIsland::Key
123 return (size_t((uintptr_t)KEY.prototype())) ^ str_hasher(sym_name) ^
131 if ((KEY1.prototype() == KEY2.prototype()) &&
  /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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
asdl_c.py 543 def prototype(self, sum, name): member in class:MarshalPrototypeVisitor
548 visitProduct = visitSum = prototype
    [all...]
  /external/icu/icu4c/source/tools/makeconv/
makeconv.cpp 430 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->subCharLen>0)
    [all...]

Completed in 818 milliseconds

1 2 3 4 5 6 7 8 91011>>