HomeSort by relevance Sort by last modified time
    Searched full:alias (Results 351 - 375 of 4726) sorted by null

<<11121314151617181920>>

  /external/c-ares/
ares__get_hostent.c 38 char *line = NULL, *p, *q, **alias; local
108 /* Pointer to start of first alias. */
199 alias = hostent->h_aliases;
201 *(alias + naliases--) = NULL;
202 *alias = NULL;
212 if ((*alias = strdup(txtalias)) == NULL)
214 alias++;
218 /* Alias memory allocation failure. */
247 for (alias = hostent->h_aliases; *alias; alias++
    [all...]
  /external/clang/test/CodeGen/
asm-label.c 4 char *strerror(int) asm("alias");
15 // LINUX: declare i8* @alias(i32)
19 // DARWIN: declare i8* @"\01alias"(i32)
  /external/clang/test/Index/
comment-cplus11-specific.cpp 18 //! This is documentation for the alias (which shows up).
19 using Alias = inner::Opaque;
20 // CHECK: (CXComment_Text Text=[ This is documentation for the alias (which shows up).])))]
  /external/guice/extensions/grapher/src/com/google/inject/grapher/
Alias.java 20 * Alias between two nodes. Causes the 'from' node to be aliased with the 'to' node, which means
26 public final class Alias {
30 public Alias(NodeId fromId, NodeId toId) {
AliasCreator.java 31 * resolved, i.e. it is valid to return an alias (X to Y) and an alias (Y to Z). It is the
37 Iterable<Alias> createAliases(Iterable<Binding<?>> bindings);
  /external/icu/icu4c/source/test/testdata/
root.txt 97 rootAliasClient:alias {"/LOCALE/rootAliasDestination"}
99 nestedRootAliasClient:alias {"/LOCALE/rootAliasTable/destination"}
111 b7996:alias {"/LOCALE/tableT7996/c7996"}
  /external/libvpx/libvpx/third_party/libyuv/source/
video_common.cc 22 uint32 alias; member in struct:libyuv::FourCCAliasEntry
52 if (kFourCCAliases[i].alias == fourcc) {
56 // Not an alias, so return it as-is.
  /external/libyuv/files/include/libyuv/
video_common.h 79 FOURCC_IYUV = FOURCC('I', 'Y', 'U', 'V'), // Alias for I420.
80 FOURCC_YU16 = FOURCC('Y', 'U', '1', '6'), // Alias for I422.
81 FOURCC_YU24 = FOURCC('Y', 'U', '2', '4'), // Alias for I444.
82 FOURCC_YUYV = FOURCC('Y', 'U', 'Y', 'V'), // Alias for YUY2.
83 FOURCC_YUVS = FOURCC('y', 'u', 'v', 's'), // Alias for YUY2 on Mac.
84 FOURCC_HDYC = FOURCC('H', 'D', 'Y', 'C'), // Alias for UYVY.
85 FOURCC_2VUY = FOURCC('2', 'v', 'u', 'y'), // Alias for UYVY.
86 FOURCC_JPEG = FOURCC('J', 'P', 'E', 'G'), // Alias for MJPG.
87 FOURCC_DMB1 = FOURCC('d', 'm', 'b', '1'), // Alias for MJPG on Mac.
88 FOURCC_BA81 = FOURCC('B', 'A', '8', '1'), // Alias for BGGR
    [all...]
  /external/libyuv/files/source/
video_common.cc 22 uint32 alias; member in struct:libyuv::FourCCAliasEntry
43 if (kFourCCAliases[i].alias == fourcc) {
47 // Not an alias, so return it as-is.
  /external/llvm/test/Analysis/BasicAA/
2007-08-01-NoAliasAndGEP.ll 1 ; RUN: opt < %s -basicaa -aa-eval -print-all-alias-modref-info -disable-output 2>&1 | FileCheck %s
7 ; CHECK: 9 no alias responses
8 ; CHECK: 6 partial alias responses
2009-10-13-GEP-BaseNoAlias.ll 1 ; RUN: opt < %s -basicaa -aa-eval -print-all-alias-modref-info -disable-output 2>&1 | FileCheck %s
2 ; If GEP base doesn't alias Z, then GEP doesn't alias Z.
  /external/llvm/test/Transforms/GlobalOpt/
alias-used-address-space.ll 10 @ia = internal alias i8, i8 addrspace(1)* @i
21 @ca = internal alias i8, i8 addrspace(1)* @c
22 ; CHECK: @ca = internal alias i8, i8 addrspace(1)* @c
  /external/mesa3d/src/mapi/mapi/
mapi_glapi.c 121 const struct mapi_stub *alias = NULL; local
126 /* find the missing stubs, and decide the alias */
142 if (alias && stub_get_slot(alias) != slot)
144 /* use the first existing stub as the alias */
145 if (!alias)
146 alias = stub;
164 stub_fix_dynamic(stub, alias);
165 if (!alias)
166 alias = stub
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
XSLTSchema.java 238 // xsl:namespace-alias
326 null /*alias */, null /* elements */, null, /* attributes */
333 null /*alias */, null /* elements */,
354 null /*alias */,
367 new XSLTElementDef(this, "*", "unknown", null /*alias */,
379 null /*alias */, null /* elements */,
386 null /*alias */, null /* elements */,
392 null /*alias */, null /* elements */,
409 "sort", null /*alias */,
421 "with-param", null /*alias */,
    [all...]
  /external/libxml2/os400/iconv/bldcsndfa/
ccsid_mibenum.xml 13 <alias>EBCDIC</alias>
27 <alias>ASCII</alias>
62 <alias>EUC-TH></alias>
63 <alias>eucTH</alias>
64 <alias>csEUCTH</alias>
    [all...]
  /external/mesa3d/src/mesa/main/
APIspecutil.py 60 alias, need_conv = impl.match(func, conversions)
61 if not alias:
65 alias = func
69 __aliases[func.name] = (alias, need_conv)
141 alias, need_conv = __aliases[func.name]
143 dst_param = alias.get_param(src_param.name)
252 """Return the prefix of the function the named function is an alias of."""
253 alias = __aliases[funcname][0]
254 return alias.prefix
257 def Alias(funcname)
    [all...]
  /packages/apps/KeyChain/src/com/android/keychain/
KeyChainActivity.java 147 // alias, having aliases loading already will save some time waiting for UI to start.
152 @Override public void alias(String alias) {
153 // Use policy-suggested alias if provided
154 if (alias != null) {
155 finish(alias);
159 // No suggested alias - instead finish loading and show UI to pick one
182 String alias = getIntent().getStringExtra(KeyChain.EXTRA_ALIAS); local
184 devicePolicyManager.choosePrivateKeyAlias(mSenderUid, uri, alias, callback);
186 Log.e(TAG, "Unable to request alias from DevicePolicyManager", e)
242 String alias = getIntent().getStringExtra(KeyChain.EXTRA_ALIAS); local
351 String alias = mAliases.get(adapterPosition); local
377 String alias = mAliases.get(mAdapterPosition); local
    [all...]
  /bionic/libc/tools/
genserv.py 24 def add_alias(self,alias):
25 self.aliases.append(alias)
36 for alias in self.aliases:
37 result += "\\%0o%s" % (len(alias), alias)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/
DH.java 23 provider.addAlgorithm("Alg.Alias.KeyPairGenerator.DIFFIEHELLMAN", "DH");
26 provider.addAlgorithm("Alg.Alias.KeyAgreement.DIFFIEHELLMAN", "DH");
33 provider.addAlgorithm("Alg.Alias.KeyFactory.DIFFIEHELLMAN", "DH");
36 provider.addAlgorithm("Alg.Alias.AlgorithmParameters.DIFFIEHELLMAN", "DH");
38 provider.addAlgorithm("Alg.Alias.AlgorithmParameterGenerator.DIFFIEHELLMAN", "DH");
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
mixins.py 29 alias = CriteriaDescriptor("alias_regex") variable in class:MatchAlias
34 Match the alias criteria
37 obj An object with an alias generator method named "aliases"
40 if not self.alias:
44 return self._match_in_set(obj.aliases(), self.alias, self.alias_regex)
sensitivityquery.py 38 alias The alias name to match.
40 will be used on the alias names.
56 self.log.debug("Alias: {0.alias}, regex: {0.alias_regex}".format(self))
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/aarch64/
bitfield-alias.s 1 /* bitfield-alias.s Test file for AArch64 bitfield instructions
2 alias mnemonics.
23 /* This file tests the GAS's ability in assembling the alias mnemonics
24 of sbfm, bfm and ubfm. Disassembler should prefer to use alias
26 bitfield-bfm.s and bitfield-alias.s will be assembled into idential
  /libcore/ojluni/src/main/java/java/security/
KeyStore.java 72 * <p> Each entry in a keystore is identified by an "alias" string. In the
799 * Returns the key associated with the given alias, using the given
801 * the alias by a call to <code>setKeyEntry</code>,
805 * @param alias the alias name
808 * @return the requested key, or null if the given alias does not exist
818 public final Key getKey(String alias, char[] password)
825 return keyStoreSpi.engineGetKey(alias, password);
829 * Returns the certificate chain associated with the given alias.
830 * The certificate chain must have been associated with the alias
    [all...]
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_testlib.cc 137 void cfree(void *p) ALIAS("free");
138 void *pvalloc(size_t size) ALIAS("valloc");
139 void *__libc_memalign(size_t alignment, size_t size) ALIAS("memalign");
155 void *operator new(size_t size) ALIAS("malloc");
156 void *operator new[](size_t size) ALIAS("malloc");
157 void *operator new(size_t size, std::nothrow_t const&) ALIAS("malloc");
158 void *operator new[](size_t size, std::nothrow_t const&) ALIAS("malloc");
159 void operator delete(void *ptr) throw() ALIAS("free");
160 void operator delete[](void *ptr) throw() ALIAS("free");
161 void operator delete(void *ptr, std::nothrow_t const&) ALIAS("free")
    [all...]
  /external/llvm/lib/Analysis/
ObjCARCAliasAnalysis.cpp 11 /// of Objective C to enhance other optimization passes which rely on the Alias
40 AliasResult ObjCARCAAResult::alias(const MemoryLocation &LocA, function in class:ObjCARCAAResult
43 return AAResultBase::alias(LocA, LocB);
46 // precise alias query.
50 AAResultBase::alias(MemoryLocation(SA, LocA.Size, LocA.AATags),
56 // ObjC-specific no-ops, and try making an imprecise alias query.
60 Result = AAResultBase::alias(MemoryLocation(UA), MemoryLocation(UB));
78 // a precise alias query.
85 // ObjC-specific no-ops, and try making an imprecise alias query.
143 "ObjC-ARC-Based Alias Analysis", false, true
    [all...]

Completed in 635 milliseconds

<<11121314151617181920>>