HomeSort by relevance Sort by last modified time
    Searched refs:Methods (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/lzma/CPP/7zip/Common/
MethodProps.h 26 CObjectVector<CMethod> Methods;
36 bool IsEmpty() const { return Methods.IsEmpty() ; }
  /external/lzma/CPP/7zip/Archive/7z/
7zCompressionMode.h 32 CObjectVector<CMethodFull> Methods;
40 bool IsEmpty() const { return (Methods.IsEmpty() && !PasswordIsDefined); }
7zEncode.cpp 59 for (int i = 0; i < _options.Methods.Size(); i++)
61 const CMethodFull &methodFull = _options.Methods[i];
292 if (_options.Methods.IsEmpty())
308 _options.Methods.Add(method);
319 for (i = 0; i < _options.Methods.Size(); i++)
321 const CMethodFull &methodFull = _options.Methods[i];
327 if (i < _options.Methods.Size() - 1)
419 _options.Methods.Add(method);
427 for (int i = _options.Methods.Size() - 1; i >= 0; i--)
429 const CMethodFull &methodFull = _options.Methods[i];
    [all...]
7zUpdate.cpp 359 exeMethod.Methods.Insert(0, methodFull);
392 exeMethod.Methods.Add(methodFull);
393 exeMethod.Methods.Add(methodFull);
415 exeMethod.Methods.Insert(0, methodFull);
821 if (method.Methods.Size() != 1 || method.Binds.Size() != 0)
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
srpc_client.h 59 typedef std::map<std::string, MethodInfo*> Methods;
60 Methods methods_;
srpc_client.cc 28 // index is set to UINT_MAX for methods implemented by the plugin,
29 // All methods implemented by nacl modules have indexes
99 for (Methods::iterator iter = methods_.begin();
114 // Intern the methods into a mapping from identifiers to MethodInfo.
  /external/smali/
README.md 16 - [Types, Methods and Fields wiki page](https://code.google.com/p/smali/wiki/TypesMethodsAndFields)
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
prototype-1.6.0.3.js 54 Object.extend(klass, Class.Methods);
77 Class.Methods = {
    [all...]
concat-jquery-mootools-prototype.js 629 // Since version 1.3, DOM methods and functions like alert
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRBitSet.h 43 #pragma mark Class Methods
ANTLRBufferedTreeNodeStream.h 109 // protected methods. DO NOT USE
110 #pragma mark Protected Methods
119 #pragma mark General Methods
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRBitSet.h 43 #pragma mark Class Methods
ANTLRBufferedTreeNodeStream.h 109 // protected methods. DO NOT USE
110 #pragma mark Protected Methods
119 #pragma mark General Methods
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRBitSet.h 43 #pragma mark Class Methods
ANTLRBufferedTreeNodeStream.h 109 // protected methods. DO NOT USE
110 #pragma mark Protected Methods
119 #pragma mark General Methods
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRBitSet.h 44 #pragma mark Class Methods
ANTLRBufferedTreeNodeStream.h 111 // protected methods. DO NOT USE
112 #pragma mark Protected Methods
121 #pragma mark General Methods
  /external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/
prototype-1.7.js 104 Object.extend(klass, Class.Methods);
155 Methods: {
    [all...]
  /external/clang/lib/AST/
DeclObjC.cpp 71 // methods there.
78 // Since instance & class methods can have the same name, the loop below
410 llvm::SmallVectorImpl<const ObjCMethodDecl *> &Methods) const {
423 Methods.push_back(MD);
427 Methods.push_back(MD);
831 // instance methods, but they require an object return.
840 // These selectors have a conventional meaning only for instance methods.
908 // in init methods (or methods labeled ns_consumes_self), though.
921 // 'self' is always const in class methods
    [all...]
  /external/clang/lib/Sema/
SemaDeclObjC.cpp 45 // This castAs is safe: methods that don't return an object
367 // Warn on deprecated methods under -Wdeprecated-implementations,
839 for (auto *MD : ID->methods())
844 for (const auto *Method : CAT->methods()) {
    [all...]
  /external/clang/lib/CodeGen/
CGObjCGNU.cpp 125 /// Objective-C methods. Due to differences between variadic / non-variadic
138 /// call Objective-C methods.
412 /// a class defined in the runtime, declaring no methods, but adopting the
425 llvm::Constant *Methods,
433 /// and optional methods.
    [all...]
CGObjCMac.cpp     [all...]
  /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/chromium_org/tools/stats_viewer/
stats_table.cs 158 // The internal methods are accessible to the enumerators
220 #region Public Methods
292 #region Private Methods
364 #region Private Methods
  /build/tools/droiddoc/templates-ds/
class.cs 20 <?cs if:subcount(cl.methods) ?>
78 <?cs if:subcount(class.methods.public) ?>
79 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#pubmethods">Methods</a>
82 <?cs if:subcount(class.methods.protected) ?>
83 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#promethods">Protected Methods</a>
87 <?cs if:linkcount ?>&#124; <?cs /if ?><a href="#inhmethods">Inherited Methods</a>
180 <?cs def:write_method_summary(methods, included) ?>
182 <?cs each:method = methods ?>
241 <td class="jd-linkcol"><?cs each:m=attr.methods ?>
282 || subcount(class.methods.public
    [all...]

Completed in 419 milliseconds

1 2 3