HomeSort by relevance Sort by last modified time
    Searched refs:Methods (Results 51 - 75 of 217) sorted by null

1 23 4 5 6 7 8 9

  /external/llvm/lib/DebugInfo/CodeView/
TypeRecord.cpp 285 std::vector<OneMethodRecord> Methods;
296 Methods.emplace_back(L->Type, MethKind, Options, Access, VFTableOffset,
300 auto &Method = Methods.back();
304 return MethodOverloadListRecord(Methods);
533 for (OneMethodRecord &Meth : Methods)
  /external/clang/tools/libclang/
CIndexHigh.cpp 25 SmallVectorImpl<const Decl *> &Methods) {
35 Methods.push_back(D->getCanonicalDecl());
41 getTopOverriddenMethods(TU, cxcursor::getCursorDecl(*I), Methods);
117 TopMethodsTy methods;
118 getTopOverriddenMethods(TU, D, methods);
120 I = methods.begin(), E = methods.end(); I != E; ++I) {
162 // We are looking for identifiers to highlight so for objc methods (and
  /external/clang/lib/CodeGen/
CGObjCMac.cpp 845 /// MethodDefinitions - map of methods which have been defined in
    [all...]
  /build/make/tools/droiddoc/templates-ndk/
class.cs 23 <?cs if:subcount(cl.methods) ?>
81 <?cs if:subcount(class.methods.public) ?>
82 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#pubmethods">Methods</a>
85 <?cs if:subcount(class.methods.protected) ?>
86 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#promethods">Protected Methods</a>
90 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#inhmethods">Inherited Methods</a>
184 <?cs def:write_method_summary(methods, included) ?>
186 <?cs each:method = methods ?>
254 <td class="jd-linkcol"><?cs each:m=attr.methods ?>
301 || subcount(class.methods.public
    [all...]
  /external/doclava/res/assets/templates/
class.cs 14 <?cs if:subcount(cl.methods) ?>
72 <?cs if:subcount(class.methods.public) ?>
73 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#pubmethods">Methods</a>
76 <?cs if:subcount(class.methods.protected) ?>
77 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#promethods">Protected Methods</a>
81 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#inhmethods">Inherited Methods</a>
173 <?cs def:write_method_summary(methods, included) ?>
175 <?cs each:method = methods ?>
234 <td class="jd-linkcol"><?cs each:m=attr.methods ?>
275 || subcount(class.methods.public
    [all...]
  /external/flatbuffers/tests/MyGame/Example/
MonsterStorage_grpc.go 113 Methods: []grpc.MethodDesc{
  /external/protobuf/csharp/src/Google.Protobuf/Reflection/
ServiceDescriptor.cs 44 private readonly IList<MethodDescriptor> methods; field in class:Google.Protobuf.Reflection.ServiceDescriptor
50 methods = DescriptorUtil.ConvertAndMakeReadOnly(proto.Method,
64 /// An unmodifiable list of methods in this service.
66 public IList<MethodDescriptor> Methods
68 get { return methods; }
83 foreach (MethodDescriptor method in methods)
  /external/protobuf/python/google/protobuf/pyext/
descriptor_pool.cc 467 static PyMethodDef Methods[] = {
530 cdescriptor_pool::Methods, // tp_methods
repeated_composite_container.cc 553 static PyMethodDef Methods[] = {
599 repeated_composite_container::Methods, // tp_methods
  /prebuilts/go/darwin-x86/src/cmd/doc/
pkg.go 301 if n.Methods == nil || len(n.Methods.List) == 0 {
483 // Exported functions only. The go/doc package does not include methods here.
578 // If symbol matches a type, output includes its methods factories and associated constants.
579 // If there is no top-level symbol, symbolDoc looks for methods that match.
660 // Show associated methods, constants, etc.
661 if len(typ.Consts) > 0 || len(typ.Vars) > 0 || len(typ.Funcs) > 0 || len(typ.Methods) > 0 {
667 pkg.funcSummary(typ.Methods, true)
671 // See if there are methods.
680 // structs and methods from interfaces (unless the unexported flag is set)
    [all...]
  /prebuilts/go/darwin-x86/src/go/doc/
doc.go 52 Methods []*Func // sorted list of methods (including embedded ones) of this type
61 // methods
86 // show all embedded methods, not just the ones of
  /prebuilts/go/darwin-x86/src/go/types/
ordering.go 34 for _, f := range ityp.Methods.List {
exprstring.go 146 writeFieldList(buf, x.Methods, "; ", true)
209 // types of interface methods consist of signatures only
  /prebuilts/go/darwin-x86/test/
alias2.go 37 // Methods can be declared on the original named type and the alias.
95 func (A1) m() {} // ERROR "cannot define new methods on non-local type int|may not define methods on non-local type"
97 func (A3) m() {} // ERROR "cannot define new methods on non-local type reflect.Value|may not define methods on non-local type"
98 func (A4) m() {} // ERROR "reflect.Value.m redeclared in this block" "cannot define new methods on non-local type reflect.Value|may not define methods on non-local type"
  /prebuilts/go/linux-x86/src/cmd/doc/
pkg.go 301 if n.Methods == nil || len(n.Methods.List) == 0 {
483 // Exported functions only. The go/doc package does not include methods here.
578 // If symbol matches a type, output includes its methods factories and associated constants.
579 // If there is no top-level symbol, symbolDoc looks for methods that match.
660 // Show associated methods, constants, etc.
661 if len(typ.Consts) > 0 || len(typ.Vars) > 0 || len(typ.Funcs) > 0 || len(typ.Methods) > 0 {
667 pkg.funcSummary(typ.Methods, true)
671 // See if there are methods.
680 // structs and methods from interfaces (unless the unexported flag is set)
    [all...]
  /prebuilts/go/linux-x86/src/go/doc/
doc.go 52 Methods []*Func // sorted list of methods (including embedded ones) of this type
61 // methods
86 // show all embedded methods, not just the ones of
  /prebuilts/go/linux-x86/src/go/types/
ordering.go 34 for _, f := range ityp.Methods.List {
exprstring.go 146 writeFieldList(buf, x.Methods, "; ", true)
209 // types of interface methods consist of signatures only
  /prebuilts/go/linux-x86/test/
alias2.go 37 // Methods can be declared on the original named type and the alias.
95 func (A1) m() {} // ERROR "cannot define new methods on non-local type int|may not define methods on non-local type"
97 func (A3) m() {} // ERROR "cannot define new methods on non-local type reflect.Value|may not define methods on non-local type"
98 func (A4) m() {} // ERROR "reflect.Value.m redeclared in this block" "cannot define new methods on non-local type reflect.Value|may not define methods on non-local type"
  /external/clang/lib/Sema/
SemaExprObjC.cpp     [all...]
  /external/autotest/client/cros/
ec.py 205 Public Methods:
216 Private methods:
440 Public Methods:
  /external/tensorflow/tensorflow/contrib/bayesflow/python/ops/
mcmc_diagnostics_impl.py 91 MCMC methods generate chains where `R_k > 0`, a reasonable critera is to
275 [2] "General Methods for Monitoring Convergence of Iterative Simulations"
  /external/llvm/lib/CodeGen/AsmPrinter/
CodeViewDebug.cpp     [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zHandlerOut.cpp 63 CMethodFull &methodFull = headerMethod.Methods.AddNew();
76 CObjectVector<COneMethodInfo> methods = _methods; local
79 FOR_VECTOR (i, methods)
81 AString &methodName = methods[i].MethodName;
85 if (methods.IsEmpty())
87 COneMethodInfo &m = methods.AddNew();
103 methods.Insert(0, _filterMethod);
113 FOR_VECTOR (i, methods)
115 COneMethodInfo &oneMethodInfo = methods[i];
122 CMethodFull &methodFull = methodMode.Methods.AddNew();
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_pydoc.py 36 | Methods defined here:
113 <td width="100%%">Methods defined here:<br>

Completed in 604 milliseconds

1 23 4 5 6 7 8 9