HomeSort by relevance Sort by last modified time
    Searched defs:Method (Results 26 - 50 of 282) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/test/fixedbugs/
issue4909a.go 21 func (t T) Method() {}
34 const N5 = unsafe.Offsetof(t.Method) // ERROR "method value"
35 const N6 = unsafe.Offsetof(p.Method) // ERROR "method value"
issue9370.go 13 Method()
18 func (C) Method() {}
22 func (G) Method() {}
  /prebuilts/go/linux-x86/test/fixedbugs/
issue4909a.go 21 func (t T) Method() {}
34 const N5 = unsafe.Offsetof(t.Method) // ERROR "method value"
35 const N6 = unsafe.Offsetof(p.Method) // ERROR "method value"
issue9370.go 13 Method()
18 func (C) Method() {}
22 func (G) Method() {}
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Method/
BytecodesTest.java 26 package org.apache.harmony.jpda.tests.jdwp.Method;
38 * JDWP Unit test for Method.Bytecodes command.
42 * This testcase exercises Method.Bytecodes command.
44 * prints it's bytecodes received with Method.Bytecodes command.
66 checkReplyPacket(reply, "Method::Bytecodes command");
IsObsoleteTest.java 26 package org.apache.harmony.jpda.tests.jdwp.Method;
36 * JDWP Unit test for Method.IsObsolete command.
40 * This testcase exercises Method.IsObsolete command.
41 * <BR>It runs MethodDebuggee, receives checked method,
42 * which is not obsolete, and checks it with Method.IsObsolete command.
64 checkReplyPacket(reply, "Method::IsObsolete command");
LineTableTest.java 26 package org.apache.harmony.jpda.tests.jdwp.Method;
34 * JDWP Unit test for Method.LineTable command.
38 * This testcase exercises Method.LineTable command.
40 * For each received method sends Method.LineTable command
JDWPMethodTestCase.java 26 package org.apache.harmony.jpda.tests.jdwp.Method;
  /external/caliper/examples/src/main/java/examples/
DoubleToStringBenchmark.java 26 @Param Method method; field in class:DoubleToStringBenchmark
28 public enum Method {
86 dummy += method.convert(d).length();
95 dummy += method.convert(d).length();
  /external/clang/test/SemaCXX/
vtable-instantiation.cpp 58 static GMG* Method() { return &singleton; } // expected-note{{in instantiation of}}
66 GMG<int>::Method(); // expected-note{{in instantiation of}}
  /dalvik/dx/src/com/android/dex/
ClassData.java 22 private final Method[] directMethods;
23 private final Method[] virtualMethods;
26 Method[] directMethods, Method[] virtualMethods) {
41 public Method[] getDirectMethods() {
45 public Method[] getVirtualMethods() {
56 public Method[] allMethods() {
57 Method[] result = new Method[directMethods.length + virtualMethods.length];
81 public static class Method {
    [all...]
  /external/libmojo/base/android/jni_generator/
sample_for_tests.cc 46 jint CPPClass::Method(JNIEnv* env, const JavaParamRef<jobject>& caller) {
111 // This is how you call a java static method from C++.
114 // This is how you call a java method from C++. Note that you must have
  /external/v8/tools/clang/rewrite_to_chrome_style/tests/
template-expected.cc 11 void method() {} function in class:not_blink::Class
63 void Method() {}
72 // method should be rewritten.
73 H<Class, &Class::Method>(Class());
75 H<not_blink::Class, &not_blink::Class::method>(not_blink::Class());
137 c2.method(x);
  /system/tools/hidl/
Method.h 42 IMPL_STUB_IMPL, // use this->method() instead of mImpl->method()
48 struct Method {
49 Method(const char *name,
69 Method *copySignature() const;
110 DISALLOW_COPY_AND_ASSIGN(Method);
Method.cpp 17 #include "Method.h"
28 Method::Method(const char *name,
40 void Method::fillImplementation(
56 std::string Method::name() const {
60 const std::vector<TypedVar *> &Method::args() const {
64 const std::vector<TypedVar *> &Method::results() const {
68 const std::vector<Annotation *> &Method::annotations() const {
72 void Method::cppImpl(MethodImplType type, Formatter &out) const {
82 void Method::javaImpl(MethodImplType type, Formatter &out) const
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/framer/framer/
function.py 101 def ArgumentList(func, method):
104 if method:
126 method = False variable in class:Function
157 self.args = ArgumentList(self._func, self.method)
171 class Method(Function):
173 method = True variable in class:Method
  /external/clang/include/clang/Basic/
ABI.h 186 /// \brief Holds a pointer to the overridden method this thunk is for,
191 const CXXMethodDecl *Method;
193 ThunkInfo() : Method(nullptr) { }
196 const CXXMethodDecl *Method = nullptr)
197 : This(This), Return(Return), Method(Method) {}
201 LHS.Method == RHS.Method;
205 return This.isEmpty() && Return.isEmpty() && Method == nullptr;
  /external/libmojo/mojo/public/tools/bindings/pylib/mojom/parse/
ast.py 212 class Method(Definition):
213 """Represents a method definition."""
222 super(Method, self).__init__(name, **kwargs)
229 return super(Method, self).__eq__(other) and \
236 # This needs to be declared after |Method|.
240 _list_item_type = (Const, Enum, Method)
297 """Represents a method request or response parameter."""
319 """Represents a list of (method request or response) parameters."""
  /external/llvm/lib/DebugInfo/CodeView/
TypeRecord.cpp 274 OneMethodRecord Method(L->Type, MethKind, Options, Access, VFTableOffset,
277 if (Method.isIntroducingVirtual() && Method.getVFTableOffset() < 0)
279 return Method;
300 auto &Method = Methods.back();
301 if (Method.isIntroducingVirtual() && Method.getVFTableOffset() < 0)
  /external/lzma/CPP/7zip/Archive/7z/
7zUpdate.h 88 const CCompressionMethodMode *Method;
  /external/webrtc/talk/app/webrtc/
proxy.h 138 typedef R (C::*Method)();
139 MethodCall0(C* c, Method m) : c_(c), m_(m) {}
150 Method m_;
158 typedef R (C::*Method)() const;
159 ConstMethodCall0(C* c, Method m) : c_(c), m_(m) {}
170 Method m_;
178 typedef R (C::*Method)(T1 a1);
179 MethodCall1(C* c, Method m, T1 a1) : c_(c), m_(m), a1_(a1) {}
190 Method m_;
199 typedef R (C::*Method)(T1 a1) const
    [all...]
  /frameworks/base/packages/Osu/src/com/android/hotspot2/utils/
HTTPMessage.java 27 public enum Method {GET, PUT, POST}
  /libcore/ojluni/src/main/java/java/lang/reflect/
Method.java 36 * A {@code Method} provides information about, and access to, a single method
37 * on a class or interface. The reflected method may be a class method
38 * or an instance method (including an abstract method).
40 * <p>A {@code Method} permits widening conversions to occur when matching the
41 * actual parameters to invoke with the underlying method's formal
55 public final class Method extends Executable {
61 public static final Comparator<Method> ORDER_BY_SIGNATURE = new Comparator<Method>()
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
bdasup.h 41 KSMETHOD Method;
48 KSMETHOD Method;
  /art/test/031-class-attributes/src/
ClassAttrs.java 9 import java.lang.reflect.Method;
126 Method meth;
128 System.out.println("method signature: "
164 assertTrue(AccessibleObject.class.isAssignableFrom(Method.class));
165 assertFalse(Method.class.isAssignableFrom(AccessibleObject.class));
195 assertTrue(AccessibleObject.class.isInstance(Method.class.getDeclaredMethods()[0]));
196 assertFalse(Method.class.isInstance(Method.class.getDeclaredFields()[0]));
222 Method method; local
    [all...]

Completed in 1364 milliseconds

12 3 4 5 6 7 8 91011>>