HomeSort by relevance Sort by last modified time
    Searched refs:prefix (Results 126 - 150 of 8720) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/tensorflow/tensorflow/contrib/slim/python/slim/
summaries.py 42 def _get_summary_name(tensor, name=None, prefix=None, postfix=None):
48 prefix: An optional prefix for the summary name.
56 if prefix:
57 name = prefix + '/' + name
63 def add_histogram_summary(tensor, name=None, prefix=None):
69 prefix: An optional prefix for the summary names.
76 _get_summary_name(tensor, name, prefix), tensor)
79 def add_image_summary(tensor, name=None, prefix=None, print_summary=False)
    [all...]
  /test/suite_harness/common/util/src/com/android/compatibility/common/util/
DevicePropertyInfo.java 85 * Return a {@code Map} with property keys prepended with a given prefix
89 public Map<String, String> getPropertytMapWithPrefix(String prefix) {
92 propertyMap.put(prefix + "abi", mAbi);
93 propertyMap.put(prefix + "abi2", mAbi2);
94 propertyMap.put(prefix + "abis", mAbis);
95 propertyMap.put(prefix + "abis_32", mAbis32);
96 propertyMap.put(prefix + "abis_64", mAbis64);
97 propertyMap.put(prefix + "board", mBoard);
98 propertyMap.put(prefix + "brand", mBrand);
99 propertyMap.put(prefix + "device", mDevice)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemElement.java 163 * Resolve the namespace into a prefix. Meant to be
167 * @param prefix The probable prefix if already known.
170 * @return The prefix to be used.
173 String prefix, String nodeNamespace)
177 // if (null != prefix && prefix.length() == 0)
185 return prefix;
212 String prefix = null; local
227 prefix = QName.getPrefixPart(nodeName)
    [all...]
  /external/python/cpython2/Lib/idlelib/
IdleHistory.py 9 fetch - Fetch stored statement matching prefix already entered.
18 .prefix - source already entered at prompt; filters history list.
24 self.prefix = None
43 Set prefix and pointer as needed for successive fetches.
50 prefix = self.prefix
51 if pointer is not None and prefix is not None:
54 pointer = prefix = None
56 if pointer is None or prefix is None:
57 prefix = self.text.get("iomark", "end-1c"
    [all...]
  /external/python/cpython2/Lib/lib-tk/
FixTk.py 22 assert isinstance(s, str) # sys.prefix contains only bytes
49 prefix = os.path.join(sys.prefix,"tcl") variable
50 if not os.path.exists(prefix):
55 prefix = os.path.join(sys.prefix, "externals", tcltk, "lib") variable
56 prefix = os.path.abspath(prefix) variable
58 if os.path.exists(prefix):
59 prefix = convert_path(prefix variable
    [all...]
  /external/python/cpython3/Lib/idlelib/
history.py 10 fetch - Fetch stored statement matching prefix already entered.
19 .prefix - source already entered at prompt; filters history list.
25 self.prefix = None
44 Set prefix and pointer as needed for successive fetches.
51 prefix = self.prefix
52 if pointer is not None and prefix is not None:
55 pointer = prefix = None
57 if pointer is None or prefix is None:
58 prefix = self.text.get("iomark", "end-1c"
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
FixTk.py 22 assert isinstance(s, str) # sys.prefix contains only bytes
49 prefix = os.path.join(sys.prefix,"tcl") variable
50 if not os.path.exists(prefix):
52 prefix = os.path.join(sys.prefix, os.path.pardir, "tcltk", "lib") variable
53 prefix = os.path.abspath(prefix) variable
55 if os.path.exists(prefix):
56 prefix = convert_path(prefix variable
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
FixTk.py 22 assert isinstance(s, str) # sys.prefix contains only bytes
49 prefix = os.path.join(sys.prefix,"tcl") variable
50 if not os.path.exists(prefix):
52 prefix = os.path.join(sys.prefix, os.path.pardir, "tcltk", "lib") variable
53 prefix = os.path.abspath(prefix) variable
55 if os.path.exists(prefix):
56 prefix = convert_path(prefix variable
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
FixTk.py 22 assert isinstance(s, str) # sys.prefix contains only bytes
49 prefix = os.path.join(sys.prefix,"tcl") variable
50 if not os.path.exists(prefix):
52 prefix = os.path.join(sys.prefix, os.path.pardir, "tcltk", "lib") variable
53 prefix = os.path.abspath(prefix) variable
55 if os.path.exists(prefix):
56 prefix = convert_path(prefix variable
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
FixTk.py 22 assert isinstance(s, str) # sys.prefix contains only bytes
49 prefix = os.path.join(sys.prefix,"tcl") variable
50 if not os.path.exists(prefix):
52 prefix = os.path.join(sys.prefix, os.path.pardir, "tcltk", "lib") variable
53 prefix = os.path.abspath(prefix) variable
55 if os.path.exists(prefix):
56 prefix = convert_path(prefix variable
    [all...]
  /packages/apps/Dialer/java/com/android/contacts/common/format/
TextHighlighter.java 37 * Sets the text on the given text view, highlighting the word that matches the given prefix.
41 * @param prefix the prefix to look for
43 public void setPrefixText(TextView view, String text, String prefix) {
44 view.setText(applyPrefixHighlight(text, prefix));
64 * Returns a CharSequence which highlights the given prefix if found in the given text.
67 * @param prefix the prefix to look for
69 public CharSequence applyPrefixHighlight(CharSequence text, String prefix) {
70 if (prefix == null)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
fix_apply.py 37 prefix = node.prefix
44 func.prefix = ""
46 args.prefix = ""
49 kwds.prefix = ""
55 l_newargs[-2].prefix = u" " # that's the ** token
59 return Call(func, l_newargs, prefix=prefix)
fix_basestring.py 14 return Name(u"str", prefix=node.prefix)
fix_buffer.py 22 name.replace(Name(u"memoryview", prefix=name.prefix))
fix_funcattrs.py 21 prefix=attr.prefix))
fix_future.py 21 new.prefix = node.prefix
fix_getcwdu.py 19 name.replace(Name(u"getcwd", prefix=name.prefix))
fix_nonzero.py 20 new = Name(u"__bool__", prefix=name.prefix)
fix_raw_input.py 17 name.replace(Name(u"input", prefix=name.prefix))
fix_standarderror.py 18 return Name(u"Exception", prefix=node.prefix)
  /external/apache-xml/src/main/java/org/apache/xml/utils/
NameSpace.java 39 /** Prefix of this NameSpace element.
51 * @param prefix Prefix of this element
54 public NameSpace(String prefix, String uri)
56 m_prefix = prefix;
PrefixResolver.java 26 * prefix at a particular point in a document, or mapping the prefixes
34 * Given a namespace, get the corrisponding prefix. This assumes that
38 * @param prefix The prefix to look up, which may be an empty string ("") for the default Namespace.
40 * @return The associated Namespace URI, or null if the prefix
43 String getNamespaceForPrefix(String prefix);
46 * Given a namespace, get the corresponding prefix, based on the context node.
48 * @param prefix The prefix to look up, which may be an empty string ("") for the default Namespace.
51 * @return The associated Namespace URI as a string, or null if the prefix
    [all...]
  /external/doclava/src/com/google/doclava/
ContainerInfo.java 22 public default boolean qualifiedNameMatches(String prefix, String suffix) {
24 return (qualifiedName.startsWith(prefix) && qualifiedName.endsWith(suffix));
  /external/elfutils/libebl/
eblreginfo.c 39 const char **prefix, const char **setname,
43 prefix, setname, bits, type);
  /external/harfbuzz_ng/src/
check-symbols.sh 25 prefix=`basename "$so" | sed 's/libharfbuzz/hb/; s/-/_/g; s/[.].*//'`
28 if test $suffix = dylib; then prefix="_$prefix"; fi
31 if echo "$EXPORTED_SYMBOLS" | grep -v "^${prefix}_"; then

Completed in 285 milliseconds

1 2 3 4 56 7 8 91011>>