/external/webkit/LayoutTests/http/tests/appcache/ |
whitelist-wildcard-expected.txt | 1 Test that online whitelist wildcard flag is implemented.
|
whitelist-wildcard.html | 1 <html manifest="resources/whitelist-wildcard.manifest"> 3 <p>Test that online whitelist wildcard flag is implemented.</p>
|
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/ |
wildcard | 3 $description = "The following test creates a makefile to test wildcard 10 executes the print1 target which tests the '*' wildcard by 14 the '*' wildcard as in the first test"; 22 print1: ;\@echo \$(sort \$(wildcard example.*)) 24 \t\@echo \$(sort \$(wildcard example.?)) 25 \t\@echo \$(sort \$(wildcard example.[a-z0-9])) 26 \t\@echo \$(sort \$(wildcard example.[!A-Za-z_\\!])) 28 \t$delete_command \$(sort \$(wildcard example.*))
|
/packages/apps/Email/emailcommon/src/org/apache/commons/io/filefilter/ |
WildcardFileFilter.java | 32 * The wildcard matcher uses the characters '?' and '*' to represent a
33 * single or multiple wildcard characters.
60 * Construct a new case-sensitive wildcard filter for a single wildcard.
62 * @param wildcard the wildcard to match
65 public WildcardFileFilter(String wildcard) {
66 this(wildcard, null);
70 * Construct a new wildcard filter for a single wildcard specifying case-sensitivity. [all...] |
/external/icu4c/stubdata/ |
root.mk | 3 root_dat_path := $(wildcard $(stubdata_path)/*-all.dat)
|
/external/wpa_supplicant_8/hostapd/ |
hostapd.vlan | 6 # Optional wildcard entry matching all VLAN IDs. The first # in the interface
|
/hardware/ti/omap3/omx/system/src/openmax_il/common/inc/ |
Makefile | 1 HSRC=$(wildcard *.h)
|
/external/valgrind/tsan/ |
common_util.cc | 31 bool StringMatch(const string& wildcard, const string& text) { 33 const char* c_wildcard = wildcard.c_str(); 39 char last_wc_char = wildcard[wildcard.size() - 1]; 41 if (last_wc_char == '*' && wildcard.size() == 1) { 47 // short cut for the case when the wildcard does not end with '*' or '?' 48 // and the last characters of wildcard and text do not match. 76 // Skip all '*' at the end of the wildcard.
|
/hardware/ti/omap3/omx/system/src/openmax_il/lcml/inc/ |
Makefile | 2 HSRC=$(wildcard *.h)
|
/frameworks/compile/libbcc/runtime/lib/arm/ |
Makefile.mk | 13 AsmSources := $(foreach file,$(wildcard $(Dir)/*.S),$(notdir $(file))) 14 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file))) 19 Dependencies := $(wildcard lib/*.h $(Dir)/*.h)
|
/frameworks/compile/libbcc/runtime/lib/i386/ |
Makefile.mk | 13 AsmSources := $(foreach file,$(wildcard $(Dir)/*.S),$(notdir $(file))) 14 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file))) 19 Dependencies := $(wildcard lib/*.h $(Dir)/*.h)
|
/frameworks/compile/libbcc/runtime/lib/ppc/ |
Makefile.mk | 13 AsmSources := $(foreach file,$(wildcard $(Dir)/*.S),$(notdir $(file))) 14 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file))) 19 Dependencies := $(wildcard lib/*.h $(Dir)/*.h)
|
/frameworks/compile/libbcc/runtime/lib/x86_64/ |
Makefile.mk | 13 AsmSources := $(foreach file,$(wildcard $(Dir)/*.S),$(notdir $(file))) 14 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file))) 19 Dependencies := $(wildcard lib/*.h $(Dir)/*.h)
|
/external/proguard/src/proguard/util/ |
ClassNameParser.java | 68 // Is there an 'L///;' wildcard? 84 // Is there an 'L***;' wildcard? 87 // Create a matcher for the wildcard and, recursively, for the 94 // Is there a '**' wildcard? 97 // Create a matcher for the wildcard and, recursively, for the 108 // Is there a '*' wildcard? 111 // Create a matcher for the wildcard and, recursively, for the 122 // Is there a '?' wildcard? 125 // Create a matcher for the wildcard and, recursively, for the 136 // Is there a '%' wildcard [all...] |
FileNameParser.java | 48 // Is there a '**' wildcard? 51 // Create a matcher for the wildcard and, recursively, for the 62 // Is there a '*' wildcard? 65 // Create a matcher for the wildcard and, recursively, for the 76 // Is there a '?' wildcard? 79 // Create a matcher for the wildcard and, recursively, for the
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/ |
UnresolvedPrincipalTest.java | 60 assertTrue(new UnresolvedPrincipal(UnresolvedPrincipal.WILDCARD, name) 63 UnresolvedPrincipal.WILDCARD).equals(fp)); 89 assertTrue(new UnresolvedPrincipal(UnresolvedPrincipal.WILDCARD, name) 92 UnresolvedPrincipal.WILDCARD).implies(fp)); 93 assertTrue(new UnresolvedPrincipal(UnresolvedPrincipal.WILDCARD, 94 UnresolvedPrincipal.WILDCARD).implies(fp));
|
/cts/tools/signature-tools/src/signature/model/util/ |
ITypeFactory.java | 87 * Returns the existing wildcard type or creates a new one. Wildcard types 91 * Note: This does not mean that two values with equal wildcard type can be 98 * @return the wildcard type
|
/device/moto/wingray/ |
AndroidBoard.mk | 17 ifeq ($(wildcard $(COMMON_DIR)/TegraBoard.mk),$(COMMON_DIR)/TegraBoard.mk)
|
/external/chromium/net/base/ |
effective_tld_names_unittest2.gperf | 12 int type; // 1: exception, 2: wildcard
|
effective_tld_names_unittest1.gperf | 12 int type; // 1: exception, 2: wildcard
|
/external/valgrind/unittest/ |
wildcard_test.supp | 2 # wildcards. The wildcard here is just an asterisk ('*') 102 wildcard at the end is ignored
|
/frameworks/compile/libbcc/runtime/lib/ |
Makefile.mk | 12 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file))) 17 Dependencies := $(wildcard $(Dir)/*.h)
|
/libcore/luni/src/main/java/java/lang/reflect/ |
WildcardType.java | 21 * A pattern type, such as the upper bounded wildcard {@code 22 * ? extends Closeable} or the lower bounded wildcard {@code ? super String}. 25 * bounds, all wildcard types of Java language programs are in one of two forms:
|
/development/host/ |
Android.mk | 18 dir := $(wildcard $(LOCAL_PATH)/$(HOST_PREBUILT_TAG))
|
/external/llvm/ |
llvm-gen-intrinsics.mk | 3 INTRINSICTDS := $(wildcard $(dir $(INTRINSICTD))/Intrinsics*.td)
|