Home
last modified time | relevance | path

Searched full:aliases (Results 1 – 25 of 2531) sorted by relevance

12345678910>>...102

/external/bcc/snapcraft/
Dsnapcraft.yaml32 aliases: [argdist]
35 aliases: [bashreadline]
38 aliases: [biolatency]
41 aliases: [biosnoop]
44 aliases: [biotop]
47 aliases: [bitesize]
50 aliases: [bpflist]
53 aliases: [btrfsdist]
56 aliases: [btrfsslower]
59 aliases: [cachestat]
[all …]
/external/swiftshader/third_party/subzero/pydir/
Dgen_arm32_reg_tables.py6 self.Aliases = list(Alias.strip() for Alias in AliasesStr.split(','))
9 return 'REGLIST{AliasCount}(RegARM32, {Aliases})'.format(
10 AliasCount=len(self.Aliases), Aliases=', '.join(self.Aliases))
20 IsFP32=0, IsFP64=0, IsVec128=0, Aliases=None): argument
33 # The argument Aliases is a string with the register aliasing information.
35 Aliases = RegAliases(Aliases)
44 def Aliases(self): member in RegFeatures
45 return self.FeaturesDict['Aliases']
73 return Other.Name in self.Features.Aliases().Aliases
82 Reg( 'r0', 0, IsScratch=1, CCArg=1, IsGPR = 1, IsInt=1, Aliases= 'r0, r0r1'),
[all …]
/external/python/google-api-python-client/docs/dyn/
Dadmin_directory_v1.groups.html78 <code><a href="admin_directory_v1.groups.aliases.html">aliases()</a></code>
80 <p class="firstline">Returns the aliases Resource.</p>
124 "nonEditableAliases": [ # List of non editable aliases (Read-only)
135 "aliases": [ # List of aliases (Read-only)
150 "nonEditableAliases": [ # List of non editable aliases (Read-only)
161 "aliases": [ # List of aliases (Read-only)
171 "nonEditableAliases": [ # List of non editable aliases (Read-only)
182 "aliases": [ # List of aliases (Read-only)
208 "nonEditableAliases": [ # List of non editable aliases (Read-only)
219 "aliases": [ # List of aliases (Read-only)
[all …]
Dgmail_v1.users.settings.sendAs.html93 …as aliases for the specified account. The result includes the primary send-as address associated w…
115 … address associated with the account or a custom "from" address. Send-as aliases correspond to the…
116 …mail's servers to the destination SMTP service. This setting only applies to custom "from" aliases.
126 … an alias for the user's primary email address. This setting only applies to custom "from" aliases.
128 …primary address, and it cannot be deleted from the collection of send-as aliases. This field is re…
129 …verified for use as a send-as alias. Read-only. This setting only applies to custom "from" aliases.
137 … address associated with the account or a custom "from" address. Send-as aliases correspond to the…
138 …mail's servers to the destination SMTP service. This setting only applies to custom "from" aliases.
148 … an alias for the user's primary email address. This setting only applies to custom "from" aliases.
150 …primary address, and it cannot be deleted from the collection of send-as aliases. This field is re…
[all …]
Dadmin_directory_v1.users.aliases.html75 …rectory_v1.users.html">users</a> . <a href="admin_directory_v1.users.aliases.html">aliases</a></h1>
85 <p class="firstline">List all aliases for a user</p>
88 <p class="firstline">Watch for changes in user aliases list</p>
132 <pre>List all aliases for a user
144 { # JSON response template to list aliases in Directory API.
145 "kind": "admin#directory#aliases", # Kind of resource this is.
147 "aliases": [ # List of alias objects.
155 <pre>Watch for changes in user aliases list
Dadmin_directory_v1.groups.aliases.html75 …tory_v1.groups.html">groups</a> . <a href="admin_directory_v1.groups.aliases.html">aliases</a></h1>
85 <p class="firstline">List all aliases for a group</p>
129 <pre>List all aliases for a group
137 { # JSON response template to list aliases in Directory API.
138 "kind": "admin#directory#aliases", # Kind of resource this is.
140 "aliases": [ # List of alias objects.
/external/tensorflow/tensorflow/contrib/layers/python/layers/
Dutils.py48 assert 'inception_v3/logits' in logits.aliases
52 alias: String to append to the list of aliases of outputs, for example,
66 """Append an alias to the list of aliases of the tensor.
70 alias: String, to add to the list of aliases of the tensor.
73 The tensor with a new alias appended to its list of aliases.
78 if hasattr(tensor, 'aliases'):
79 tensor.aliases.append(alias)
81 tensor.aliases = [alias]
86 """Given a list of tensors, gather their aliases.
92 A list of strings with the aliases of all tensors.
[all …]
/external/python/setuptools/setuptools/command/
Dalias.py44 aliases = self.distribution.get_option_dict('aliases')
47 print("Command Aliases")
49 for alias in aliases:
50 print("setup.py alias", format_alias(alias, aliases))
57 elif alias in aliases:
58 print("setup.py alias", format_alias(alias, aliases))
67 edit_config(self.filename, {'aliases': {alias: command}}, self.dry_run)
70 def format_alias(name, aliases): argument
71 source, command = aliases[name]
/external/guice/extensions/grapher/src/com/google/inject/grapher/
DAbstractInjectorGrapher.java112 Map<NodeId, NodeId> aliases = resolveAliases(aliasCreator.createAliases(bindings)); in graph() local
113 createNodes(nodeCreator.getNodes(bindings), aliases); in graph() local
114 createEdges(edgeCreator.getEdges(bindings), aliases); in graph() local
139 private void createNodes(Iterable<Node> nodes, Map<NodeId, NodeId> aliases) throws IOException { in createNodes() argument
142 NodeId resolvedId = resolveAlias(aliases, originalId); in createNodes()
158 private void createEdges(Iterable<Edge> edges, Map<NodeId, NodeId> aliases) throws IOException { in createEdges() argument
161 edge.copy(resolveAlias(aliases, edge.getFromId()), resolveAlias(aliases, edge.getToId())); in createEdges()
172 private NodeId resolveAlias(Map<NodeId, NodeId> aliases, NodeId nodeId) { in resolveAlias() argument
173 return aliases.containsKey(nodeId) ? aliases.get(nodeId) : nodeId; in resolveAlias()
177 * Transitively resolves aliases. Given aliases (X to Y) and (Y to Z), it will return mappings (X
[all …]
/external/python/cpython3/Tools/pynche/
DColorDB.py46 # key is (red, green, blue) tuple, value is (name, [aliases])
50 # all unique names (non-aliases). built-on demand
67 foundname, aliases = self.__byrgb.get(key, (name, []))
68 if foundname != name and foundname not in aliases:
69 aliases.append(name)
70 self.__byrgb[key] = (foundname, aliases)
107 for name, aliases in self.__byrgb.values():
122 for name, aliases in self.__byrgb.values():
129 name, aliases = self.__byrgb[(red, green, blue)]
132 return [name] + aliases
[all …]
DListViewer.py6 aliases -- more than one name for the same r/g/b value. These aliases are
62 self.__alabel = Label(root, text='Aliases:')
149 # fill the aliases
152 aliases = self.__sb.colordb().aliases_of(red, green, blue)[1:]
156 if not aliases:
157 self.__aliases.insert(END, '<no aliases>')
159 for name in aliases:
/external/python/cpython2/Tools/pynche/
DColorDB.py47 # key is (red, green, blue) tuple, value is (name, [aliases])
51 # all unique names (non-aliases). built-on demand
68 foundname, aliases = self.__byrgb.get(key, (name, []))
69 if foundname <> name and foundname not in aliases:
70 aliases.append(name)
71 self.__byrgb[key] = (foundname, aliases)
108 for name, aliases in self.__byrgb.values():
123 for name, aliases in self.__byrgb.values():
133 name, aliases = self.__byrgb[(red, green, blue)]
136 return [name] + aliases
[all …]
DListViewer.py6 aliases -- more than one name for the same r/g/b value. These aliases are
62 self.__alabel = Label(root, text='Aliases:')
149 # fill the aliases
152 aliases = self.__sb.colordb().aliases_of(red, green, blue)[1:]
156 if not aliases:
157 self.__aliases.insert(END, '<no aliases>')
159 for name in aliases:
/external/u-boot/arch/arm/mach-tegra/tegra186/
Dnvtboot_board.c120 static void set_calculated_aliases(char *aliases, u64 address) in set_calculated_aliases() argument
125 aliases = strdup(aliases); in set_calculated_aliases()
126 if (!aliases) { in set_calculated_aliases()
127 pr_err("strdup(aliases) failed"); in set_calculated_aliases()
131 tmp = aliases; in set_calculated_aliases()
142 free(aliases); in set_calculated_aliases()
154 char *aliases; in set_calculated_env_var() local
181 aliases = env_get(var_aliases); in set_calculated_env_var()
185 if (aliases) in set_calculated_env_var()
186 debug("%s: Aliases: %s\n", __func__, aliases); in set_calculated_env_var()
[all …]
/external/icu/icu4c/source/tools/gencnval/
Dgencnval.c62 /* The maximum number of aliases that a standard tag/converter combination can have.
104 uint16_t *aliases; /* Index into stringStore */ member
109 uint16_t totalAliasCount; /* Total aliases in this column */
120 uint16_t totalAliasCount; /* Total aliases in this row */
128 /* Used for storing all aliases */
133 /* Used for storing the lists section that point to aliases */
137 /* Were the standard tags declared before the aliases. */
309 /* write the table of aliases based on a tag/converter name combination */ in main()
322 if (tags[i].aliasList[n].aliases!=NULL) { in main()
323 uprv_free(tags[i].aliasList[n].aliases); in main()
[all …]
Dgencnval.1.in15 \- compile the converters aliases file
38 converts the ICU aliases file
58 conflicting aliases and the converters the aliases resolve to.
86 Description of ICU's converters and their aliases. This data file is not
/external/u-boot/lib/
Dfdtdec_test.c62 /* maximum number of nodes / aliases to generate */
70 * @param aliases Specifies alias assignments. Format is a list of items
77 static int make_fdt(void *fdt, int size, const char *aliases, in make_fdt() argument
88 CHECK(fdt_begin_node(fdt, "aliases")); in make_fdt()
89 for (s = aliases; *s;) { in make_fdt()
122 static int run_test(const char *aliases, const char *nodes, const char *expect) in run_test() argument
135 printf("aliases=%s, nodes=%s, expect=%s: ", aliases, nodes, expect); in run_test()
136 CHECKVAL(make_fdt(blob, FDT_SIZE, aliases, nodes), 0); in run_test()
191 /* no aliases */ in do_test_fdtdec()
199 /* conflicting aliases - first one gets it */ in do_test_fdtdec()
/external/fonttools/MetaTools/
DbuildUCD.py159 default=None, is_set=False, aliases=None): argument
164 'aliases' is an optional mapping of property codes (short names) to long
165 name aliases (list of strings, with the first item being the preferred
167 short notation, and an additional 'NAMES' dict with the aliases is
188 if aliases:
189 reversed_aliases = {normalize(v[0]): k for k, v in aliases.items()}
216 if aliases:
225 if aliases:
228 for value, names in sorted(aliases.items()):
246 of name aliases (list of strings) keyed by short value codes (strings).
[all …]
/external/e2fsprogs/intl/
Dlocalcharset.c208 sources of many GNU packages, simply inline the aliases here. */ in get_charset_aliases()
234 runtime, simply inline the aliases here. */ in get_charset_aliases()
273 const char *aliases; in locale_charset() local
380 for (aliases = get_charset_aliases (); in locale_charset()
381 *aliases != '\0'; in locale_charset()
382 aliases += strlen (aliases) + 1, aliases += strlen (aliases) + 1) in locale_charset()
383 if (strcmp (codeset, aliases) == 0 in locale_charset()
384 || (aliases[0] == '*' && aliases[1] == '\0')) in locale_charset()
386 codeset = aliases + strlen (aliases) + 1; in locale_charset()
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DInterferenceCache.cpp67 for (unsigned i = 0, e = Aliases.size(); i != e; ++i) in revalidate()
68 Aliases[i].second = Aliases[i].first->getTag(); in revalidate()
80 Aliases.clear(); in reset()
83 Aliases.push_back(std::make_pair(LIU, LIU->getTag())); in reset()
88 unsigned e = Aliases.size(); in reset()
91 Iters[i].setMap(Aliases[i].first->getMap()); in reset()
96 unsigned i = 0, e = Aliases.size(); in valid()
99 if (i == e || Aliases[i].first != LIU) in valid()
101 if (LIU->changedSince(Aliases[i].second)) in valid()
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
DXMPSchemaRegistry.java17 * The schema registry keeps track of all namespaces and aliases used in the XMP
18 * metadata. At initialisation time, the default namespaces and default aliases
27 * <b>Aliases</b> in XMP serve the same purpose as Windows file shortcuts,
28 * Macintosh file aliases, or UNIX file symbolic links. The aliases are simply
29 * multiple names for the same property. One distinction of XMP aliases is that
153 * Collects all aliases that are contained in the provided namespace.
157 * @return Returns all alias infos from aliases that are contained in the provided namespace.
163 * Searches for registered aliases.
174 * @return Returns the registered aliases as map, where the key is the "qname" (prefix and name)
/external/python/cpython2/Lib/
Dpdb.doc38 The debugger supports aliases, which can save typing. And aliases can
49 debugger prompt. This is particularly useful for aliases. If both
50 files exist, the one in the home directory is read first and aliases
53 Aside from aliases, the debugger is not directly programmable; but it
180 aliases are listed.
182 Aliases may be nested and can contain anything that can be
184 internal pdb commands with aliases! Those internal commands
189 As an example, here are two useful aliases (especially when
/external/python/cpython2/Modules/
Dnismodule.c60 } aliases [] = { variable
67 {"aliases", "mail.aliases", 1}, /* created with 'makedbm -a' */
78 for (i=0; aliases[i].alias != 0L; i++) { in nis_mapname()
79 if (!strcmp (aliases[i].alias, map)) { in nis_mapname()
80 *pfix = aliases[i].fix; in nis_mapname()
81 return aliases[i].map; in nis_mapname()
83 if (!strcmp (aliases[i].map, map)) { in nis_mapname()
84 *pfix = aliases[i].fix; in nis_mapname()
85 return aliases[i].map; in nis_mapname()
355 while (!server && aliases[mapi].map != 0L) { in nis_maplist()
[all …]
/external/kmod/man/
Dmodprobe.d.xml55 required. They can also be used to create convenient aliases:
86 the same effect. You can't have aliases to other aliases (that way
87 lies madness), but aliases can have options, which will be added to
91 Note that modules can also contain their own aliases, which you can
92 see using <command>modinfo</command>. These aliases are used as a
104 Modules can contain their own aliases: usually these are aliases
106 "internal" aliases can be overridden by normal "alias" keywords,
110 all of that particular module's internal aliases are to be ignored.
193 pre-deps and post-deps modules are lists of names and/or aliases of other
/external/bcc/tests/python/
Dtest_debuginfo.py13 aliases = []
16 # Also, find all aliases of this symbol which are identifiable
29 aliases.append(name)
31 # Return all aliases of the first symbol.
32 return (address, aliases)
40 (addr, aliases) = self.grab_sym()
42 found = sym in aliases

12345678910>>...102