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

1 2 3 4

  /external/compiler-rt/test/ubsan/TestCases/TypeCheck/
misaligned.cpp 17 // RUN: not %run %t w1 2>&1 | FileCheck %s --check-prefix=CHECK-WILD
39 void *wild = reinterpret_cast<void *>(0x123L); local
103 // CHECK-WILD: misaligned.cpp:[[@LINE+3]]{{(:35)?}}: runtime error: member access within misaligned address 0x{{0+}}123 for type 'S', which requires 4 byte alignment
104 // CHECK-WILD-NEXT: 0x{{0+}}123: note: pointer points here
105 // CHECK-WILD-NEXT: <memory cannot be printed>
106 return static_cast<S*>(wild)->k;
  /bionic/libc/upstream-openbsd/lib/libc/gen/
fnmatch.c 290 int wild; local
291 /* For '*' wild processing only; surpress 'used before initialization'
356 for (wild = 0; ((*pattern == '*') || (*pattern == '?')); ++pattern)
359 wild = 1;
370 if (wild)
393 wild = 0;
406 /* Begin first wild comparison at the current position */
431 /* Success; begin a new wild pattern search
451 if (wild) {
  /external/turbine/java/com/google/turbine/binder/lookup/
ImportIndex.java 64 if (i.stat() || i.wild()) {
80 if (!i.stat() || i.wild()) {
MemberImportIndex.java 49 if (i.wild()) {
WildImportIndex.java 49 if (i.wild()) {
  /frameworks/base/core/proto/android/content/
intent.proto 87 optional bool wild = 2;
  /frameworks/base/core/java/android/hardware/camera2/utils/
TypeReference.java 227 throw new UnsupportedOperationException("TODO: support wild card components");
330 WildcardType wild = (WildcardType) type; local
349 return containsTypeVariable(wild.getLowerBounds()) ||
350 containsTypeVariable(wild.getUpperBounds());
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
TemplateList.java 156 System.out.print("wild card list: ");
190 TemplateSubPatternAssociation wild = m_wildCardPatterns; local
192 while (null != wild)
197 head, (TemplateSubPatternAssociation) wild.clone(), true);
201 wild = wild.getNext();
219 * @param isWildCardInsert <code>true</code> if we are inserting a wild card
  /external/turbine/java/com/google/turbine/tree/
Tree.java 575 private final boolean wild; field in class:Tree.ImportDecl
577 public ImportDecl(int position, ImmutableList<String> type, boolean stat, boolean wild) {
581 this.wild = wild;
604 public boolean wild() { method in class:Tree.ImportDecl
605 return wild;
Pretty.java 254 if (importDecl.wild()) {
  /build/blueprint/pathtools/
glob_test.go 112 // no-wild tests
340 // non-existant non-wild path tests
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lauxlib.c 904 const char *wild; local
908 while ((wild = strstr(s, p)) != NULL) {
909 luaL_addlstring(&b, s, wild - s); /* push prefix */
911 s = wild + l; /* continue after `p' */
  /external/syslinux/com32/lua/src/
lauxlib.c 906 const char *wild; local
910 while ((wild = strstr(s, p)) != NULL) {
911 luaL_addlstring(&b, s, wild - s); /* push prefix */
913 s = wild + l; /* continue after `p' */
  /external/icu/icu4c/source/tools/toolutil/
package.cpp 937 const char *wild; local
948 wild=strchr(pattern, '*');
949 if(wild==NULL) {
954 findPrefixLength=(int32_t)(wild-pattern);
955 findSuffix=wild+1;
    [all...]
  /external/libxml2/
xmlschemastypes.c 418 xmlSchemaWildcardPtr wild; local
442 wild = (xmlSchemaWildcardPtr) xmlMalloc(sizeof(xmlSchemaWildcard));
443 if (wild == NULL) {
447 memset(wild, 0, sizeof(xmlSchemaWildcard));
448 wild->type = XML_SCHEMA_TYPE_ANY;
449 wild->any = 1;
450 wild->processContents = XML_SCHEMAS_ANY_LAX;
451 particle->children = (xmlSchemaTreeItemPtr) wild;
455 wild = (xmlSchemaWildcardPtr) xmlMalloc(sizeof(xmlSchemaWildcard));
456 if (wild == NULL)
    [all...]
xmlschemas.c 6937 xmlSchemaWildcardPtr wild; local
12796 xmlSchemaWildcardPtr wild; local
25846 xmlSchemaWildcardPtr wild = (xmlSchemaWildcardPtr) vctxt->inode->decl; local
    [all...]
  /external/turbine/java/com/google/turbine/parse/
Parser.java 1100 boolean wild = false;
1109 wild = true;
1116 return new ImportDecl(pos, type.build(), stat, wild);
    [all...]
  /external/turbine/java/com/google/turbine/bytecode/
ClassFile.java 694 public TypePath wild() { method in class:ClassFile.TypeAnnotationInfo.TypePath
  /prebuilts/go/darwin-x86/src/net/http/
cookie_test.go 69 // are disallowed by RFC 6265 but are common in the wild.
280 // wild, but do browsers handle it? RFC 6265 just says "don't
  /prebuilts/go/linux-x86/src/net/http/
cookie_test.go 69 // are disallowed by RFC 6265 but are common in the wild.
280 // wild, but do browsers handle it? RFC 6265 just says "don't
  /prebuilts/go/darwin-x86/src/compress/bzip2/
huffman.go 203 // the wild so we handle it.
  /prebuilts/go/darwin-x86/src/crypto/x509/
root_windows.go 162 // in the wild require them.
  /prebuilts/go/linux-x86/src/compress/bzip2/
huffman.go 203 // the wild so we handle it.
  /prebuilts/go/linux-x86/src/crypto/x509/
root_windows.go 162 // in the wild require them.
  /prebuilts/go/darwin-x86/src/net/textproto/
reader_test.go 191 // Test that we read slightly-bogus MIME headers seen in the wild,

Completed in 2519 milliseconds

1 2 3 4