HomeSort by relevance Sort by last modified time
    Searched full:methods (Results 51 - 75 of 15977) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/content/common/
content_message_generator.cc 17 // Generate param traits write methods.
23 // Generate param traits read methods.
29 // Generate param traits log methods.
  /external/chromium_org/content/shell/common/
shell_messages.cc 17 // Generate param traits write methods.
23 // Generate param traits read methods.
29 // Generate param traits log methods.
  /external/chromium_org/ppapi/proxy/
ppapi_messages.cc 17 // Generate param traits write methods.
23 // Generate param traits read methods.
29 // Generate param traits log methods.
  /external/chromium_org/remoting/host/
chromoting_messages.cc 17 // Generate param traits write methods.
23 // Generate param traits read methods.
29 // Generate param traits log methods.
  /external/chromium_org/ui/metro_viewer/
metro_viewer_message_generator.cc 17 // Generate param traits write methods.
23 // Generate param traits read methods.
29 // Generate param traits log methods.
  /external/clang/test/SemaObjC/
protocol-implementation-inherited.m 20 // protocol is inherited, and extended methods are implemented.
33 // Interface conforms to a protocol whose methods are provided by an
46 // Interface conforms to a protocol whose methods are provided by a base class.
  /frameworks/webview/chromium/
proguard.flags 12 # Keep the native methods bound to plat_support.
14 native <methods>;
22 @**.CalledByNative <methods>;
25 @**.CalledByNativeUnchecked <methods>;
28 native <methods>;
34 @**.CalledByNative <methods>;
37 @**.CalledByNativeUnchecked <methods>;
40 native <methods>;
43 # Keep methods which get bound to JS interfaces via reflection.
45 @**.JavascriptInterface <methods>;
    [all...]
  /external/jdiff/src/jdiff/
MemberDiff.java 18 * The old member type. For methods, this is the return type.
22 * The new member type. For methods, this is the return type.
26 /** The old signature. Null except for methods. */
28 /** The new signature. Null except for methods. */
32 * The old list of exceptions. Null except for methods and constructors.
36 * The new list of exceptions. Null except for methods and constructors.
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
BlurMaskFilter_Delegate.java 23 * Delegate implementing the native methods of android.graphics.BlurMaskFilter
25 * Through the layoutlib_create tool, the original native methods of BlurMaskFilter have
26 * been replaced by calls to methods of the same name in this delegate class.
43 // ---- Public Helper methods ----
55 // ---- native methods ----
63 // ---- Private delegate/helper methods ----
ColorFilter_Delegate.java 23 * Delegate implementing the native methods of android.graphics.ColorFilter
25 * Through the layoutlib_create tool, the original native methods of ColorFilter have been replaced
26 * by calls to methods of the same name in this delegate class.
47 // ---- Public Helper methods ----
56 // ---- native methods ----
63 // ---- Private delegate/helper methods ----
DrawFilter_Delegate.java 23 * Delegate implementing the native methods of android.graphics.DrawFilter
25 * Through the layoutlib_create tool, the original native methods of DrawFilter have been replaced
26 * by calls to methods of the same name in this delegate class.
47 // ---- Public Helper methods ----
56 // ---- native methods ----
63 // ---- Private delegate/helper methods ----
EmbossMaskFilter_Delegate.java 23 * Delegate implementing the native methods of android.graphics.EmbossMaskFilter
25 * Through the layoutlib_create tool, the original native methods of EmbossMaskFilter have
26 * been replaced by calls to methods of the same name in this delegate class.
43 // ---- Public Helper methods ----
55 // ---- native methods ----
64 // ---- Private delegate/helper methods ----
MaskFilter_Delegate.java 23 * Delegate implementing the native methods of android.graphics.MaskFilter
25 * Through the layoutlib_create tool, the original native methods of MaskFilter have been replaced
26 * by calls to methods of the same name in this delegate class.
47 // ---- Public Helper methods ----
56 // ---- native methods ----
63 // ---- Private delegate/helper methods ----
PaintFlagsDrawFilter_Delegate.java 23 * Delegate implementing the native methods of android.graphics.PaintFlagsDrawFilter
25 * Through the layoutlib_create tool, the original native methods of PaintFlagsDrawFilter have been
26 * replaced by calls to methods of the same name in this delegate class.
43 // ---- Public Helper methods ----
55 // ---- native methods ----
63 // ---- Private delegate/helper methods ----
Rasterizer_Delegate.java 23 * Delegate implementing the native methods of android.graphics.Rasterizer
25 * Through the layoutlib_create tool, the original native methods of Rasterizer have been replaced
26 * by calls to methods of the same name in this delegate class.
47 // ---- Public Helper methods ----
56 // ---- native methods ----
63 // ---- Private delegate/helper methods ----
  /external/chromium_org/ui/events/keycodes/
keyboard_code_conversion_win.h 13 // Methods to convert ui::KeyboardCode/Windows virtual key type methods.
  /external/clang/test/SemaObjCXX/
warn-strict-selector-match.mm 16 [r meth1:r]; // expected-warning {{multiple methods named 'meth1:' found}}
17 [r window]; // expected-warning {{multiple methods named 'window' found}}
  /external/lzma/CPP/7zip/Archive/7z/
7zCompressionMode.h 32 CObjectVector<CMethodFull> Methods;
40 bool IsEmpty() const { return (Methods.IsEmpty() && !PasswordIsDefined); }
  /external/lzma/CPP/7zip/Common/
MethodProps.h 26 CObjectVector<CMethod> Methods;
36 bool IsEmpty() const { return Methods.IsEmpty() ; }
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/internal/
Implements.java 6 * searches classes with this annotation for methods with the {@link Implementation} annotation and calls them in
7 * place of the methods on the Android class.
  /external/proguard/src/proguard/classfile/editor/
ClassEditor.java 193 Method[] methods = targetClass.methods; local
196 if (methods.length <= methodsCount)
198 targetClass.methods = new ProgramMethod[methodsCount+1];
199 System.arraycopy(methods, 0,
200 targetClass.methods, 0,
202 methods = targetClass.methods;
211 methods[targetClass.u2methodsCount++] = method;
222 Method[] methods = targetClass.methods local
243 Method[] methods = targetClass.methods; local
    [all...]
  /libcore/libart/src/main/java/java/lang/reflect/
Proxy.java 32 * {@code Proxy} defines methods for creating dynamic proxy classes and instances.
46 * Orders methods by their name, parameters, return type and inheritance relationship.
160 List<Method> methods = getMethods(interfaces); local
161 Collections.sort(methods, ORDER_BY_SIGNATURE_AND_SUBTYPE);
162 validateReturnTypes(methods);
163 List<Class<?>[]> exceptions = deduplicateAndGetExceptions(methods);
165 ArtMethod[] methodsArray = new ArtMethod[methods.size()];
167 methodsArray[i] = methods.get(i).getArtMethod();
279 * Fills {@code proxiedMethods} with the methods of {@code interfaces} and
282 private static void getMethodsRecursive(Class<?>[] interfaces, List<Method> methods) {
284 getMethodsRecursive(i.getInterfaces(), methods); local
    [all...]
  /external/chromium_org/dbus/
property_unittest.cc 34 Property<std::vector<std::string> > methods; member in struct:dbus::PropertyTest::Properties
44 RegisterProperty("Methods", &methods);
124 // Name, Version, Methods, Objects
159 std::vector<std::string> methods = properties_->methods.value(); local
160 ASSERT_EQ(4U, methods.size());
161 EXPECT_EQ("Echo", methods[0]);
162 EXPECT_EQ("SlowEcho", methods[1]);
163 EXPECT_EQ("AsyncEcho", methods[2])
200 std::vector<std::string> methods = properties_->methods.value(); local
    [all...]
  /art/test/003-omnibus-opcodes/src/
UnresStuff.java 2 * Unresolved classes / fields / methods in a resolved class.
  /bionic/libstdc++/src/
pure_virtual.cpp 6 assert(!"Pure virtual function called. Are you calling virtual methods from a destructor?");

Completed in 517 milliseconds

1 23 4 5 6 7 8 91011>>