/build/kati/testcase/ |
escaped_wildcard.mk | 5 echo $(wildcard \f\o\o)
|
wildcard_multi.mk | 1 files = $(wildcard P* M*)
|
wildcard.mk | 5 files = $(wildcard M*) 8 files += $(wildcard tmp/../M*) 9 files += $(wildcard not_exist/../M*) 10 files += $(wildcard tmp/../M* not_exist/../M* tmp/../M*) 11 # GNU make 4 does not sort the result of $(wildcard) 13 files += $(wildcard [ABC] C B A)
|
wildcard_target.mk | 1 # TODO(c): Implement wildcard expansion in prerequisites.
|
wildcard_cache.mk | 1 # TODO(c): Fix this. Maybe $(wildcard) always runs at eval-phase. 9 files = $(wildcard *,*) 14 echo $(wildcard foo*) 24 $(info $(wildcard dir/not_exist)) 27 $(info $(wildcard dir/file))
|
wildcard_with_var.mk | 3 files = $(wildcard $(pattern))
|
/external/curl/tests/data/ |
test1397 | 6 wildcard 20 Check wildcard certificate matching function Curl_cert_hostcheck
|
/external/clang/test/Driver/ |
windows-wildcard-expansion.c | 1 // Clang does wildcard expansion on Windows. On other OSs, it's done by the shell. 4 // RUN: %clang -c -### %S/Inputs/wildcard*.c 2>&1 | FileCheck %s 5 // RUN: %clang -c -### %S/Inputs/wildcard?.c 2>&1 | FileCheck %s
|
/external/selinux/libsemanage/include/ |
Makefile | 9 install -m 644 $(wildcard semanage/*.h) $(INCDIR) 12 ../../scripts/Lindent $(wildcard semanage/*.h)
|
/external/jarjar/src/test/com/tonicsystems/jarjar/ |
WildcardTest.java | 25 wildcard("net/sf/cglib/**", "foo/@1", "net/sf/cglib/proxy/Mixin$Generator", 27 wildcard("net/sf/cglib/**", "foo/@1", "net/sf/cglib/Bar", "foo/Bar"); 28 wildcard("net/sf/cglib/**", "foo/@1", "net/sf/cglib/Bar/Baz", "foo/Bar/Baz"); 29 wildcard("net/sf/cglib/**", "foo/@1", "net/sf/cglib/", "foo/"); 30 wildcard("net/sf/cglib/**", "foo/@1", "net/sf/cglib/!", null); 31 wildcard("net/sf/cglib/*", "foo/@1", "net/sf/cglib/Bar", "foo/Bar"); 32 wildcard("net/sf/cglib/*/*", "foo/@2/@1", "net/sf/cglib/Bar/Baz", "foo/Baz/Bar"); 35 private void wildcard(String pattern, String result, String value, String expect) { method in class:WildcardTest 36 Wildcard wc = new Wildcard(pattern, result) [all...] |
/external/dhcpcd-6.8.2/test/ |
GNUmakefile | 5 ifneq ($(wildcard .depend), )
|
/external/iproute2/man/man3/ |
Makefile | 1 MAN3PAGES = $(wildcard *.3)
|
/external/iproute2/man/man7/ |
Makefile | 1 MAN7PAGES = $(wildcard *.7)
|
/external/selinux/libsepol/include/ |
Makefile | 12 install -m 644 $(wildcard sepol/*.h) $(INCDIR) 13 install -m 644 $(wildcard sepol/policydb/*.h) $(INCDIR)/policydb 14 install -m 644 $(wildcard $(CILDIR)/include/cil/*.h) $(INCDIR)/cil 17 ../../scripts/Lindent $(wildcard sepol/*.h)
|
/external/libxml2/test/schemas/ |
cos-ct-extends-1-3_0.xsd | 5 1.3 If it has an {attribute wildcard}, the complex type definition must 6 also have one, and the base type definition's {attribute wildcard}'s 8 {attribute wildcard}'s {namespace constraint}, as defined by Wildcard Subset (?3.10.6). 26 <!-- This is OK, since the complete wildcard 27 is the wildcard of the base type. --> 39 <!-- This is OK, since the complete wildcard is a union 41 wildcard is equal to that one in the base class. -->
|
/external/selinux/libselinux/include/ |
Makefile | 9 install -m 644 $(wildcard selinux/*.h) $(INCDIR) 14 ../../scripts/Lindent $(wildcard selinux/*.h)
|
/frameworks/base/data/keyboards/ |
common.mk | 18 framework_keylayouts := $(wildcard $(LOCAL_PATH)/*.kl) 20 framework_keycharmaps := $(wildcard $(LOCAL_PATH)/*.kcm) 22 framework_keyconfigs := $(wildcard $(LOCAL_PATH)/*.idc)
|
/external/curl/lib/ |
wildcard.h | 29 /* list of wildcard process states */ 39 CURLWC_DONE /* if is wildcard->state == CURLWC_DONE wildcard loop 45 /* struct keeping information about wildcard download process */ 48 char *path; /* path to the directory, where we trying wildcard-match */ 49 char *pattern; /* wildcard pattern */
|
/external/autotest/client/bin/ |
base_utils.py | 15 # pylint: disable=wildcard-import,unused-wildcard-import,redefined-builtin
|
site_utils.py | 15 # pylint: disable=wildcard-import,unused-wildcard-import,redefined-builtin
|
/external/autotest/client/common_lib/ |
base_utils.py | 15 # pylint: disable=wildcard-import,unused-wildcard-import,redefined-builtin
|
site_utils.py | 15 # pylint: disable=wildcard-import,unused-wildcard-import,redefined-builtin
|
/external/selinux/libsepol/utils/ |
Makefile | 10 TARGETS=$(patsubst %.c,%,$(sort $(wildcard *.c))) 22 ../../scripts/Lindent $(wildcard *.[ch])
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
api_def_MatchingFiles.pbtxt | 6 Shell wildcard pattern(s). Scalar or vector of type string. 17 Note that this routine only supports wildcard characters in the
|
/external/annotation-tools/scene-lib/src/type/ |
DeclaredType.java | 14 * A {@code DeclaredType} can represent a wildcard by using "?" as the 15 * {@code name}. If this type is a wildcard, it is illegal to call 27 * The {@code name} of a wildcard type. 29 public static final String WILDCARD = "?"; 32 * The raw, un-annotated name of this type. "?" for a wildcard. 49 * wildcard 145 * Determines if this type is a wildcard. 146 * @return {@code true} if this type is a wildcard, {@code false} otherwise. 149 return WILDCARD.equals(name); 153 * Throw an {@link IllegalStateException} if this type is a wildcard [all...] |