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

1 2 3 4

  /external/proguard/src/proguard/io/
DataEntryFilter.java 32 * Checks whether the filter accepts the given data entry.
34 * @return a boolean indicating whether the filter accepts the given data
37 public boolean accepts(DataEntry dataEntry); method in interface:DataEntryFilter
DataEntryParentFilter.java 47 public boolean accepts(DataEntry dataEntry) method in class:DataEntryParentFilter
49 return dataEntry != null && dataEntryFilter.accepts(dataEntry.getParent());
DataEntryDirectoryFilter.java 36 public boolean accepts(DataEntry dataEntry) method in class:DataEntryDirectoryFilter
DataEntryNameFilter.java 50 public boolean accepts(DataEntry dataEntry) method in class:DataEntryNameFilter
FilteredDataEntryReader.java 45 * will be delegated if the filter accepts
59 * will be delegated if the filter accepts
81 DataEntryReader dataEntryReader = dataEntryFilter.accepts(dataEntry) ?
FilteredDataEntryWriter.java 44 * will be delegated if the filter accepts
58 * will be delegated if the filter accepts
80 DataEntryWriter dataEntryWriter = dataEntryFilter.accepts(dataEntry) ?
100 DataEntryWriter dataEntryWriter = dataEntryFilter.accepts(dataEntry) ?
  /external/llvm/utils/TableGen/
X86ModRMFilters.h 42 /// accepts - Indicates whether the filter accepts a particular ModR/M
45 /// @result - True if the filter accepts the ModR/M byte; false if not.
46 virtual bool accepts(uint8_t modRM) const = 0;
49 /// DumbFilter - Accepts any ModR/M byte. Used for instructions that do not
59 bool accepts(uint8_t modRM) const override {
82 bool accepts(uint8_t modRM) const override {
105 bool accepts(uint8_t modRM) const override {
126 bool accepts(uint8_t modRM) const override {
  /external/proguard/src/proguard/classfile/util/
WarningPrinter.java 77 if (accepts(className))
87 public boolean accepts(String className) method in class:WarningPrinter
100 if (accepts(className1, className2))
110 public boolean accepts(String className1, String className2) method in class:WarningPrinter
DynamicMemberReferenceInitializer.java     [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
dfa.c 59 fprintf(o, " accepts %u", s->rule->d.RuleOp.accept);
  /external/proguard/src/proguard/
KeepClassMemberChecker.java 76 if (notePrinter.accepts(className))
FullyQualifiedClassNameChecker.java 154 notePrinter.accepts(className))
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
focus_util.js 22 * Maps whether an input element of specified type accepts text selection or
60 * Checks if the currently focused element is a field that accepts text input
63 * @return {boolean} True if the currently focused element accepts text input.
  /external/chromium_org/content/child/npapi/
webplugin.h 44 virtual void SetAcceptsInputEvents(bool accepts) = 0;
  /external/chromium_org/ui/file_manager/file_manager/foreground/css/
file_manager.css 259 #directory-tree .tree-item.accepts > .tree-row,
268 #directory-tree:focus .tree-item.accepts > .tree-row,
276 #directory-tree:focus .tree-item.accepts > .tree-row,
748 .thumbnail-grid .thumbnail-item.accepts .thumbnail-frame {
793 #list-container list > li.accepts[selected],
794 #list-container grid > li.accepts[selected] {
798 #list-container list:focus > li.accepts[selected],
799 #list-container grid:focus > li.accepts[selected] {
803 #list-container list > li.accepts,
804 #list-container grid > li.accepts {
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
regexec.c 3593 bitset_t accepts; \/* Characters a node can accept. *\/ local
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/file_system/
file_system_api.h 139 const AcceptOptions* accepts,
file_system_api.cc 724 const AcceptOptions* accepts,
733 if (accepts) {
736 accepts->begin(); iter != accepts->end(); ++iter) {
831 options->accepts.get(), options->accepts_all_types.get());
    [all...]
  /external/chromium_org/content/plugin/
webplugin_proxy.h 55 virtual void SetAcceptsInputEvents(bool accepts) OVERRIDE;
  /external/chromium_org/remoting/webapp/background/
it2me_helpee_channel.js 279 * whether the user accepts the remote assistance or not.
292 * whether the user accepts the remote assistance or not.
315 * whether the user accepts the remote assistance or not.
  /bionic/libc/upstream-netbsd/lib/libc/isc/
eventlib_p.h 223 LIST(evAccept) accepts; member in struct:__anon1039
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
gensuitemodule.py 382 (getdata, "accepts"),
712 [name, desc, code, subcode, returns, accepts, arguments] = event
727 has_arg = (not is_null(accepts))
728 opt_arg = (has_arg and is_optional(accepts))
745 fp.write(" Required argument: %s\n"%getdatadoc(accepts))
747 fp.write(" Optional argument: %s\n"%getdatadoc(accepts))
812 [name, desc, code, subcode, returns, accepts, arguments] = event
    [all...]
  /external/libpng/scripts/
makevms.com 6 $! This procedure accepts one parameter (contrib), which causes it to build
  /external/chromium_org/content/renderer/npapi/
webplugin_impl.h 98 virtual void SetAcceptsInputEvents(bool accepts) OVERRIDE;
  /external/chromium_org/v8/test/webkit/fast/js/
parser-syntax-check.js 73 // accepts: 'function f() { return 6 + }' (only inside a function declaration)
215 valid ("do ; while(0) i++"); // Is this REALLY valid? (Firefox also accepts this)

Completed in 406 milliseconds

1 2 3 4