HomeSort by relevance Sort by last modified time
    Searched refs:Method (Results 576 - 600 of 680) sorted by null

<<2122232425262728

  /libcore/luni/src/main/java/java/io/
ObjectOutputStream.java 22 import java.lang.reflect.Method;
232 * @deprecated This method is unsafe and may corrupt the target stream.
354 * Default method to write objects to this stream. Serializable fields
361 * if this method is not called from {@code writeObject()}.
416 * method does nothing). The handle if {@code obj} is an
453 * method of the target stream.
468 * type as the method return value.
473 * private fields, except by the use of a native method like this one.
500 * if this method is not called from {@code writeObject()}.
1051 final Method method = osc.getMethodWriteObject(); local
    [all...]
  /dalvik/vm/
Thread.cpp 684 Method* init;
    [all...]
Misc.cpp 297 std::string dvmHumanReadableMethod(const Method* method, bool withSignature)
299 if (method == NULL) {
302 std::string result(dvmHumanReadableDescriptor(method->clazz->descriptor));
304 result += method->name;
307 char* signature = dexProtoCopyMethodDescriptor(&method->prototype);
Sync.cpp 270 const Method *meth;
280 meth = saveArea->method;
314 relativePc = saveArea->xtra.currentPc - saveArea->method->insns;
386 const Method *meth;
393 } else if ((meth = saveArea->method) == NULL) {
396 u4 relativePc = saveArea->xtra.currentPc - saveArea->method->insns;
873 * determine the acquire method, ordered by cost.
    [all...]
  /dalvik/vm/alloc/
Copying.cpp 981 * been enqueued. The Reference.enqueue() method
    [all...]
MarkSweep.cpp 769 Method *meth = gDvm.methJavaLangRefFinalizerReferenceAdd;
834 Method *meth = gDvm.methJavaLangRefReferenceQueueAdd;
  /dalvik/vm/mterp/out/
InterpC-x86-atom.cpp 137 void dvmDumpRegs(const Method* method, const u4* framePtr, bool inOnly);
297 * the offset within the current method won't be shown correctly. See the
384 const Method* methodToCall; \
398 #define curMethod self->interpSave.method
516 GOTO_TARGET_DECL(invokeMethod, bool methodCallRange, const Method* methodToCall,
    [all...]
InterpC-x86.cpp 137 void dvmDumpRegs(const Method* method, const u4* framePtr, bool inOnly);
297 * the offset within the current method won't be shown correctly. See the
384 const Method* methodToCall; \
398 #define curMethod self->interpSave.method
516 GOTO_TARGET_DECL(invokeMethod, bool methodCallRange, const Method* methodToCall,
    [all...]
InterpC-portable.cpp 137 void dvmDumpRegs(const Method* method, const u4* framePtr, bool inOnly);
297 * the offset within the current method won't be shown correctly. See the
468 GOTO_TARGET_DECL(invokeMethod, bool methodCallRange, const Method* methodToCall,
    [all...]
  /dalvik/vm/compiler/codegen/arm/
CodegenDriver.cpp 1638 const Method *method = (mir->OptimizationFlags & MIR_CALLEE) ? local
1685 const Method *method = (mir->OptimizationFlags & MIR_CALLEE) ? local
1729 const Method *method = (mir->OptimizationFlags & MIR_CALLEE) ? local
1785 const Method *method = (mir->OptimizationFlags & MIR_CALLEE) ? local
2464 const Method *method = (mir->OptimizationFlags & MIR_CALLEE) ? local
    [all...]
  /external/clang/lib/Sema/
SemaDeclCXX.cpp 114 void Sema::ImplicitExceptionSpecification::CalledDecl(CXXMethodDecl *Method) {
117 if (!Method || ComputedEST == EST_MSAny || ComputedEST == EST_Delayed)
121 = Method->getType()->getAs<FunctionProtoType>();
    [all...]
SemaTemplate.cpp     [all...]
SemaDecl.cpp 234 /// isTagName() - This method is called *for error recovery purposes only*
415 // synthesized instance variables), if we're in an Objective-C method.
729 // A C++ inline method/friend is parsed *after* the topmost class
735 // Return the declaration context of the topmost class the inline method is
    [all...]
  /frameworks/base/core/java/android/widget/
RemoteViews.java 23 import java.lang.reflect.Method;
222 Log.e("RemoteViews", "The method setOnClickFillInIntent is available " +
601 Method method; local
603 method = klass.getMethod(this.methodName);
605 throw new ActionException("view: " + klass.getName() + " doesn't have method: "
609 if (!method.isAnnotationPresent(RemotableViewMethod.class)) {
611 + " can't use method with RemoteViews: "
618 Log.d("RemoteViews", "view: " + klass.getName() + " calling method: "
621 method.invoke(view)
822 Method method; local
    [all...]
  /dalvik/vm/native/
dalvik_system_VMDebug.cpp 56 features.push_back("method-trace-profiling");
57 features.push_back("method-trace-profiling-streaming");
229 * Start method trace profiling.
280 * Determine whether method tracing is currently active.
293 * Stop method tracing.
307 * Start sending method trace info to the emulator.
321 * Start sending method trace info to the emulator.
570 * If the specified class is loaded, and the named method exists, ensure
571 * that the method's register map is ready for use. If the class/method
628 Method* method; local
    [all...]
  /external/javasqlite/src/main/java/SQLite/
Database.java 167 * It the method fails, an SQLite.Exception is thrown and
169 * the last_error() method.
198 * It the method fails, an SQLite.Exception is thrown and
200 * the last_error() method.
255 * Establish a busy callback method which gets called when
258 * @param bh the object implementing the busy callback method
285 * Convenience method to retrieve an entire result
325 * Convenience method to retrieve an entire result
337 * Convenience method to retrieve an entire result
378 * Convenience method to retrieve an entire resul
    [all...]
  /external/webkit/Source/WebCore/bridge/qt/
qt_pixmapruntime.cpp 72 class QtPixmapRuntimeMethod : public Method {
190 QtPixmapRuntimeMethod* method = static_cast<QtPixmapRuntimeMethod*>(methods[0]); local
191 return method->invoke(exec, this);
  /external/webkit/Source/WebCore/platform/chromium/
ThemeChromiumMac.mm 65 // returning method on that view to obtain a clipping rect. However, if there is
67 // returned from the method invocation on nil is garbage.
137 Method m1 = class_getClassMethod(nsview, @selector(focusView));
138 Method m2 = class_getClassMethod(nsview, @selector(TCMInterposing_focusView));
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
HashMapTest.java 21 import java.lang.reflect.Method;
76 public Object invoke(Object proxy, Method m, Object[] args)
116 // Test for method java.util.HashMap()
127 // Test for method java.util.HashMap(int)
148 // Test for method java.util.HashMap(int, float)
169 // Test for method java.util.HashMap(java.util.Map)
219 // Test for method java.lang.Object java.util.HashMap.clone()
265 // Test for method boolean
282 // Test for method boolean
294 // Test for method java.util.Set java.util.HashMap.entrySet(
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
XSLTAttributeDef.java 24 import java.lang.reflect.Method;
277 /** Method name that objects may implement if they wish to have forein attributes set. */
428 * String that should represent the setter method which which
434 * Return a string that should represent the setter method.
435 * The setter method name will be created algorithmically the
436 * first time this method is accessed, and then cached for return
437 * by subsequent invocations of this method.
439 * @return String that should represent the setter method which which
441 * of null if no setter method should be called.
    [all...]
  /external/clang/lib/AST/
MicrosoftMangle.cpp 390 else if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(DC))
391 mangleObjCMethodName(Method);
576 // ::= 8 # near method (pointers only)
577 // ::= 9 # far method (pointers only)
580 // ::= _C <basis> # based method (pointers only)
581 // ::= _D <basis> # based method (far?) (pointers only)
735 // method directly.
750 // If this is a C++ instance method, mangle the CVR qualifiers for the
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
TemplateTranslator.java 76 import java.lang.reflect.Method;
112 private static final Method RENDER_METHOD;
133 * Parser node for the definition. Stored for evaluation after main render method is output.
176 throw new Error("Cannot find CompiledTemplate.render() method! " + "Has signature changed?",
198 // Implement render() method.
207 // The macros have to be defined outside of the render method.
646 * This is a special tree walker that's called after the render() method has been generated to
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/Getopt/
Mixed.pm 425 There are two methods for using Getopt::Mixed: the simple method and
426 the flexible method. Both methods use the same format for option
508 =head2 The Simple Method
510 The simple method is
537 flexible method instead.
539 =head2 The Flexible Method
541 The flexible method is
553 is also the only method that lets you find out what order the options
592 If you are using the simple method, and you want to set these
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
ProxyInstance.mm 99 class ProxyMethod : public JSC::Bindings::Method {
209 return throwError(exec, createTypeError(exec, "Attempt to invoke non-plug-in method on plug-in object."));
215 ProxyMethod* method = static_cast<ProxyMethod*>(methodList[0]);
217 return invoke(exec, Invoke, method->serverIdentifier(), ArgList(exec));
  /external/webkit/Source/WebKit/mac/Plugins/
WebPluginController.mm 588 Method methodToPatch = class_getInstanceMethod(TSUpdateCheck, @selector(alertDidEnd:returnCode:contextInfo:));

Completed in 1156 milliseconds

<<2122232425262728