HomeSort by relevance Sort by last modified time
    Searched full:overload (Results 1 - 25 of 565) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/libs/rs/scriptc/
rs_object.rsh 36 * \overload
41 * \overload
46 * \overload
51 * \overload
56 * \overload
61 * \overload
66 * \overload
71 * \overload
76 * \overload
81 * \overload
    [all...]
rs_matrix.rsh 39 * \overload
44 * \overload
61 * \overload
66 * \overload
78 * \overload
82 * \overload
93 * \overload
97 * \overload
101 * \overload
105 * \overload
    [all...]
rs_math.rsh 34 * \overload
39 * \overload
44 * \overload
70 * \overload
74 * \overload
78 * \overload
82 * \overload
86 * \overload
rs_core.rsh 50 * \overload
61 * \overload
122 * \overload
151 * \overload
157 * \overload
  /prebuilt/sdk/14/renderscript/include/
rs_object.rsh 36 * \overload
41 * \overload
46 * \overload
51 * \overload
56 * \overload
61 * \overload
66 * \overload
71 * \overload
76 * \overload
81 * \overload
    [all...]
rs_matrix.rsh 39 * \overload
44 * \overload
61 * \overload
66 * \overload
78 * \overload
82 * \overload
93 * \overload
97 * \overload
101 * \overload
105 * \overload
    [all...]
rs_math.rsh 34 * \overload
39 * \overload
44 * \overload
70 * \overload
74 * \overload
78 * \overload
82 * \overload
86 * \overload
rs_core.rsh 50 * \overload
61 * \overload
122 * \overload
151 * \overload
157 * \overload
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p6.cpp 5 // expected-note {{no overload of 'temp2' matching 'void (*)(int)'}}
9 // okay: deduce T=int from first argument, A=int during overload
35 // pick correct overload of 'over' during overload resolution for 'apply'
41 // deduce T=int from first arg, A=int B=void during overload resolution
46 // overload failure
57 // deduction failure: overload has template => undeduced context
69 // okay: only one overload matches
76 // deduction failure: overload has multiple matches => undeduced context
82 // deduction failure: overload has template => undeduced contex
    [all...]
  /external/clang/test/Index/
code-completion.cpp 32 // RUN: c-index-test -code-completion-at=%s:33:18 %s | FileCheck -check-prefix=CHECK-OVERLOAD %s
58 // CHECK-OVERLOAD: NotImplemented:{ResultType int &}{Text overloaded}{LeftParen (}{Text Z z}{Comma , }{CurrentParameter int second}{RightParen )}
59 // CHECK-OVERLOAD: NotImplemented:{ResultType float &}{Text overloaded}{LeftParen (}{Text int i}{Comma , }{CurrentParameter long second}{RightParen )}
60 // CHECK-OVERLOAD: NotImplemented:{ResultType double &}{Text overloaded}{LeftParen (}{Text float f}{Comma , }{CurrentParameter int second}{RightParen )}
61 // CHECK-OVERLOAD: Completion contexts:
62 // CHECK-OVERLOAD-NEXT: Any type
63 // CHECK-OVERLOAD-NEXT: Any value
64 // CHECK-OVERLOAD-NEXT: Enum tag
65 // CHECK-OVERLOAD-NEXT: Union tag
66 // CHECK-OVERLOAD-NEXT: Struct ta
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-overload-candidates.cpp 3 // This is the function actually selected during overload resolution, and the
15 // Provide a bad class and an overload that instantiates templates with it.
overload-uneval.cpp 3 // Tests that overload resolution is treated as an unevaluated context.
canonical-expr-type.cpp 15 // Test insane typeof(expr) overload set canonicalization
  /external/clang/test/PCH/
attrs.c 11 int f(int) __attribute__((visibility("default"), overloadable)); // expected-note{{previous overload}}
  /external/clang/test/CXX/over/over.load/
p2-0x.cpp 14 void i() const; // expected-error{{cannot overload a member function without a ref-qualifier with a member function with ref-qualifier '&'}}
20 template<typename T> void g(T*); // expected-error{{cannot overload a member function without a ref-qualifier with a member function with ref-qualifier '&'}}
23 void k() &&; // expected-error{{cannot overload a member function with ref-qualifier '&&' with a member function without a ref-qualifier}}
  /external/webkit/Source/WebKit/qt/docs/webkitsnippets/
qtwebkit_bridge_snippets.cpp 135 myQObject.myOverloadedSlot(10); // will call the int overload
136 myQObject.myOverloadedSlot("10"); // will call the QString overload
139 myQObject['myOverloadedSlot(int)']("10"); // call int overload; the argument is converted to an int
140 myQObject['myOverloadedSlot(QString)'](10); // call QString overload; the argument is converted to a string