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

<<2122232425262728

  /external/webkit/Source/WebCore/platform/graphics/mac/
MediaPlayerPrivateQTKit.mm 68 static IMP method_setImplementation(Method m, IMP imp)
458 Method mainThreadSetNeedsDisplayMethod = class_getInstanceMethod(QTMovieContentViewClass, @selector(_mainThreadSetNeedsDisplay));
872 // In spite of the name of this method, return QTMovieNaturalSizeAttribute transformed by the
    [all...]
  /external/webkit/Tools/DumpRenderTree/mac/
DumpRenderTree.mm 154 Method* imposterMethods = class_copyMethodList(imposter, &imposterMethodCount);
157 Method* originalMethods = class_copyMethodList(original, &originalMethodCount);
162 // Attempt to add the method to the original class. If it fails, the method already exists and we should
174 // If class_addMethod failed above then the method must exist on the original class.
    [all...]
  /dalvik/vm/interp/
Jit.cpp 65 * method
73 unsigned preBytes = self->interpSave.method->outsSize*4 +
75 unsigned postBytes = self->interpSave.method->registersSize*4;
103 * Store the original method here in case the trace ends with a
104 * return/invoke, the last method.
106 shadowSpace->method = self->interpSave.method;
166 self->interpSave.method = shadowSpace->method;
195 localRegs = (stackSave->method->registersSize
    [all...]
  /external/chromium/chrome/browser/resources/picasaweb_uploader/js/
picasa_client.js 227 * @param {string} method Method to use (GET or POST).
233 sendRequest: function(method, url, headers, body, callback) {
240 xhr.open(method, url, true);
  /external/clang/include/clang/Parse/
Parser.h 232 /// ParseTranslationUnit - All in one method that initializes parses, and
294 /// ConsumeAnyToken - Dispatch to the right Consume* method based on the
310 /// ConsumeParen - This consume method keeps the paren count up-to-date.
313 assert(isTokenParen() && "wrong consume method");
323 /// ConsumeBracket - This consume method keeps the bracket count up-to-date.
326 assert(isTokenBracket() && "wrong consume method");
337 /// ConsumeBrace - This consume method keeps the brace count up-to-date.
340 assert(isTokenBrace() && "wrong consume method");
352 /// and returning the token kind. This method is specific to strings, as it
357 "Should only consume string literals with this method");
    [all...]
  /external/doclava/src/com/google/doclava/
Doclava.java 35 import java.lang.reflect.Method;
    [all...]
  /external/clang/lib/Frontend/
CompilerInvocation.cpp 200 Res.push_back("-fobjc-dispatch-method=mixed");
203 Res.push_back("-fobjc-dispatch-method=non-legacy");
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
SerializationStressTest4.java 24 import java.lang.reflect.Method;
56 // Test for method void
88 // Test for method void
121 // Test for method void
154 // Test for method void
183 // Test for method void
222 // Test for method void
273 // Test for method void
301 // Test for method void
343 // Test for method voi
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
CollectionsTest.java 22 import java.lang.reflect.Method;
286 // Test for method int
309 // Test for method int
336 // Test for method void java.util.Collections.copy(java.util.List,
394 // Test for method java.util.Enumeration
412 // Test for method void java.util.Collections.fill(java.util.List,
438 // Test for method java.lang.Object
450 // Test for method java.lang.Object
465 // Test for method java.lang.Object
477 // Test for method java.lang.Objec
    [all...]
  /external/apache-harmony/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
AbstractPreferencesTest.java 26 import java.lang.reflect.Method;
1240 Method method = obj.getClass().getMethod(name, params); local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TransformerImpl.java 52 import org.apache.xml.serializer.Method;
170 private OutputProperties m_textformat = new OutputProperties(Method.TEXT);
176 // * postExceptionFromThread method. This is needed if the transform is
274 * which is set by the TransformerFactory.setAttribut() method before a
282 * which is set by the TransformerFactory.setAttribut() method before a
290 * which is set by the TransformerFactory.setAttribut() method before a
311 * method to obtain the root of the source tree to be transformed.
506 * Return true if the transform was initiated from the transform method,
769 * This method is used to set or override the value
780 * <li>method
878 String method = (String) oformat.get(OutputKeys.METHOD); local
1012 String method = format.getProperty(OutputKeys.METHOD); local
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
util.js 161 * Prebinds "this" within the given method to an object, but ignores all
163 * I.e. var_args are all the arguments that method is invoked with when
166 * @param {Object|null} object The object that the method call targets.
167 * @param {Function} method The target method.
168 * @return {Function} Method with the target object bound to it and curried by
171 function bindFully(object, method, var_args) {
174 return method.apply(object, args);
212 * node and invokes the given callback as a method on every element
273 // encounter DIV elements that don't implement the method
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/
util.js 161 * Prebinds "this" within the given method to an object, but ignores all
163 * I.e. var_args are all the arguments that method is invoked with when
166 * @param {Object|null} object The object that the method call targets.
167 * @param {Function} method The target method.
168 * @return {Function} Method with the target object bound to it and curried by
171 function bindFully(object, method, var_args) {
174 return method.apply(object, args);
212 * node and invokes the given callback as a method on every element
273 // encounter DIV elements that don't implement the method
    [all...]
  /external/clang/lib/AST/
ASTContext.cpp 590 ASTContext::overridden_methods_begin(const CXXMethodDecl *Method) const {
592 = OverriddenMethods.find(Method);
600 ASTContext::overridden_methods_end(const CXXMethodDecl *Method) const {
602 = OverriddenMethods.find(Method);
610 ASTContext::overridden_methods_size(const CXXMethodDecl *Method) const {
612 = OverriddenMethods.find(Method);
619 void ASTContext::addOverriddenMethod(const CXXMethodDecl *Method,
621 OverriddenMethods[Method].push_back(Overridden);
643 /// this method will assert on them.
743 /// getTypeSize - Return the size of the specified type, in bits. This method
    [all...]
Decl.cpp 544 // If this is a method template specialization, use the linkage for
562 // -finline-visibility-hidden if this is an inline method.
579 // *do* apply -fvisibility to method declarations.
    [all...]
  /cts/tools/dx-tests/lib/
jasmin.jar 
  /dalvik/dx/etc/
jasmin.jar 
  /dalvik/vm/mterp/c/
opcommon.cpp 10 GOTO_TARGET_DECL(invokeMethod, bool methodCallRange, const Method* methodToCall,
    [all...]
  /dalvik/vm/mterp/x86-atom/
footer.S 135 * Common code for method invocation with range.
138 * %ecx is "Method* methodToCall", the method we're trying to call
175 * %ecx is "Method* methodToCall", the method we're trying to call
232 * %ecx is "Method* methodToCall", the method we're trying to call
266 movl %ecx, offStackSaveArea_method(%eax) # newSaveArea->method<- method to call
270 * Update "glue" values for the new method
    [all...]
  /external/jdiff/src/jdiff/
RootDocToXML.java 126 xsdFile.println(" <xsd:element name=\"method\" type=\"methodType\" minOccurs='0' maxOccurs='unbounded'/>");
430 // Could cache the method for improved performance
432 Method m = c.getMethod("position", (Class[]) null);
439 System.err.println("Error: method \"position\" not found");
445 System.err.println("Error: method \"position\" could not be invoked");
508 * Process all exceptions thrown by a constructor or method.
532 if (trace) System.out.println("PROCESSING METHOD: " + methodName);
539 outputFile.print(" <method name=\"" + methodName + "\"");
568 outputFile.println(" </method>");
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
VertexDataManager.cpp 524 element->Method = D3DDECLMETHOD_DEFAULT;
  /dalvik/vm/mterp/out/
InterpAsm-x86-atom.S 954 * recent method invocation into the indicated register. This
956 * method invocation whose (single-word, non-object) result
997 * recent method invocation into the indicated register. This
999 * method invocation whose (single-word, non-object) result
    [all...]
  /external/chromium/testing/gmock/scripts/generator/cpp/
ast.py 398 class Method(Function):
741 method = getattr(self, 'handle_' + token.name)
742 return method()
751 # Fall through--handle like any other method.
760 # this is an expression, not a method.
769 # Handle array, this isn't a method, unless it's an operator.
781 # Handle data, this isn't a method.
798 method = getattr(self, 'handle_' + method_name, None)
799 if not method:
803 return method()
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToHTMLStream.java 59 CharInfo.getCharInfo(CharInfo.HTML_ENTITIES_RESOURCE, Method.HTML);
553 * it will switch to the new format. This method should not be
557 * This method can be called multiple times before starting
560 * of method="html" (it must be method="html" otherwise we
628 /* this method used to return m_dummy when name was null
641 * method Trie.get2(name)
645 * Calls to this method could be replaced with calls to
695 * This method should only get called once.
698 * the call to this method has no effect
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
LSSerializerImpl.java 61 * one of its derived classes depending on the serialization method, while walking
248 * default DOMConfiguration parameters. This method must be called before a
429 * This method returns the value of a parameter if known.
498 * This method returns a of the parameters supported by this DOMConfiguration object
511 * This method sets the value of the named parameter.
    [all...]

Completed in 1511 milliseconds

<<2122232425262728