HomeSort by relevance Sort by last modified time
    Searched refs:AccessorSignature (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
DownloadInfoTest.java 24 * without prefix, so "int getFoo()" and "void setFoo(int)" both have same AccessorSignature
27 static class AccessorSignature {
31 AccessorSignature(String methodNameWithoutPrefix, Class<?> returnTypeOrParam) {
47 if (obj instanceof AccessorSignature) {
48 AccessorSignature other = (AccessorSignature) obj;
70 AccessorSignature getGetterInfo(Method method) {
80 return new AccessorSignature(methodName.replaceFirst("is|has", ""),
85 return new AccessorSignature(methodName.substring(3), returnType);
99 AccessorSignature getSetterInfo(Method method)
    [all...]
  /external/chromium_org/v8/src/
api.h 166 V(AccessorSignature, FunctionTemplateInfo) \
266 static inline Local<AccessorSignature> AccessorSignatureToLocal(
374 MAKE_TO_LOCAL(AccessorSignatureToLocal, FunctionTemplateInfo, AccessorSignature)
api.cc     [all...]
  /external/chromium_org/v8/include/
v8.h 86 class AccessorSignature;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestInterface.cpp     [all...]
V8SupportTestInterface.cpp 434 functionTemplate->SetNativeDataProperty(v8::String::NewFromUtf8(isolate, "supplementalStaticReadOnlyAttr", v8::String::kInternalizedString), SupportTestInterfaceV8Internal::supplementalStaticReadOnlyAttrAttributeGetterCallback, 0, v8::External::New(isolate, 0), static_cast<v8::PropertyAttribute>(v8::None), v8::Handle<v8::AccessorSignature>(), static_cast<v8::AccessControl>(v8::DEFAULT));
437 functionTemplate->SetNativeDataProperty(v8::String::NewFromUtf8(isolate, "supplementalStaticAttr", v8::String::kInternalizedString), SupportTestInterfaceV8Internal::supplementalStaticAttrAttributeGetterCallback, SupportTestInterfaceV8Internal::supplementalStaticAttrAttributeSetterCallback, v8::External::New(isolate, 0), static_cast<v8::PropertyAttribute>(v8::None), v8::Handle<v8::AccessorSignature>(), static_cast<v8::AccessControl>(v8::DEFAULT));
V8TestTypedefs.cpp 503 functionTemplate->SetNativeDataProperty(v8::String::NewFromUtf8(isolate, "TestSubObj", v8::String::kInternalizedString), TestTypedefsV8Internal::TestTypedefsConstructorGetter, 0, v8::External::New(isolate, const_cast<WrapperTypeInfo*>(&V8TestSubObj::wrapperTypeInfo)), static_cast<v8::PropertyAttribute>(v8::DontEnum), v8::Handle<v8::AccessorSignature>(), static_cast<v8::AccessControl>(v8::DEFAULT));
V8TestObject.cpp     [all...]
V8TestObjectPython.cpp     [all...]
  /external/chromium_org/v8/test/cctest/
test-api.cc     [all...]

Completed in 286 milliseconds