Searched defs:prefix (Results 126 - 150 of 866) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dsampstat96 prefix = "Mean: " if options.verbose else "" variable
97 print "%s%.2f %s +/- %.2f %s (%.1f%%)" % (prefix, mean, options.unit, confidenceInterval, options.unit, confidencePercent)
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DUtilsHLSL.cpp189 TString prefix = ""; local
196 prefix += "std_";
201 prefix += "rm_";
204 return prefix + StructNameString(structure);
/external/chromium_org/third_party/icu/source/common/
H A Dservlk.cpp74 LocaleKey::prefix(UnicodeString& result) const { function in class:LocaleKey
105 prefix(result).append(PREFIX_DELIMITER).append(_currentID);
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dreflection_ops.cc202 static string SubMessagePrefix(const string& prefix, argument
205 string result(prefix);
224 const string& prefix,
233 errors->push_back(prefix + descriptor->field(i)->name());
252 SubMessagePrefix(prefix, field, j),
258 SubMessagePrefix(prefix, field, -1),
222 FindInitializationErrors( const Message& message, const string& prefix, vector<string>* errors) argument
/external/chromium_org/third_party/webrtc/base/
H A Dfakenetwork.h94 IPAddress prefix = TruncateIP(it->ipaddr(), prefix_length); local
97 prefix,
/external/chromium_org/tools/gn/
H A Dstring_utils.cc168 std::string RemovePrefix(const std::string& str, const std::string& prefix) { argument
169 CHECK(str.size() >= prefix.size() &&
170 str.compare(0, prefix.size(), prefix) == 0);
171 return str.substr(prefix.size());
/external/chromium_org/url/
H A Durl_canon_icu.cc37 const static char prefix[prefix_len + 1] = "%26%23"; // "&#" percent-escaped local
38 ucnv_cbFromUWriteBytes(from_args, prefix, prefix_len, 0, err);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_suppressions.cc81 static const char *StripPrefix(const char *str, const char *prefix) { argument
82 while (str && *str == *prefix) {
84 prefix++;
86 if (!*prefix)
/external/deqp/framework/common/
H A DtcuResource.cpp93 ResourcePrefix::ResourcePrefix (const Archive& archive, const char* prefix) argument
95 , m_prefix (prefix)
H A DtcuTestContext.cpp89 ResultCollector::ResultCollector (TestLog& log, const std::string& prefix) argument
91 , m_prefix (prefix)
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DCatchHandlerList.java61 * @param prefix {@code non-null;} the prefix for every line
63 * first prefix)
66 public String toHuman(String prefix, String header) { argument
70 sb.append(prefix);
79 sb.append(prefix);
H A DDalvInsnList.java221 * @param prefix {@code non-null;} prefix to attach to each line of output
225 public void debugPrint(Writer out, String prefix, boolean verbose) { argument
226 IndentingWriter iw = new IndentingWriter(out, 0, prefix);
255 * @param prefix {@code non-null;} prefix to attach to each line of output
259 public void debugPrint(OutputStream out, String prefix, boolean verbose) { argument
261 debugPrint(w, prefix, verbose);
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DCatchStructs.java106 * @param prefix {@code non-null;} prefix to attach to each line of output
108 public void debugPrint(PrintWriter out, String prefix) { argument
109 annotateEntries(prefix, out, null);
226 * @param prefix {@code non-null;} prefix for each line
230 private void annotateEntries(String prefix, PrintWriter printTo, argument
238 String subPrefix = prefix + " ";
241 annotateTo.annotate(0, prefix + "tries:");
243 printTo.println(prefix
304 annotateAndConsumeHandlers(CatchHandlerList handlers, int offset, int size, String prefix, PrintWriter printTo, AnnotatedOutput annotateTo) argument
[all...]
H A DDebugInfoItem.java96 * @param prefix {@code null-ok;} prefix to attach to each line of output
98 public void annotateTo(DexFile file, AnnotatedOutput out, String prefix) { argument
99 encode(file, prefix, null, out, false);
106 * @param prefix {@code non-null;} prefix to attach to each line of output
108 public void debugPrint(PrintWriter out, String prefix) { argument
109 encode(null, prefix, out, null, false);
132 * @param prefix {@code null-ok;} prefix t
140 encode(DexFile file, String prefix, PrintWriter debugPrint, AnnotatedOutput out, boolean consume) argument
171 encode0(DexFile file, String prefix, PrintWriter debugPrint, AnnotatedOutput out, boolean consume) argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DFixedSizeList.java97 * @param prefix {@code null-ok;} prefix for the start of the result
102 public String toString(String prefix, String separator, String suffix) { argument
103 return toString0(prefix, separator, suffix, false);
111 * @param prefix {@code null-ok;} prefix for the start of the result
116 public String toHuman(String prefix, String separator, String suffix) { argument
117 return toString0(prefix, separator, suffix, true);
242 * @param prefix {@code null-ok;} prefix fo
248 toString0(String prefix, String separator, String suffix, boolean human) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/dropSiteRootFiles/
H A Dindex.php95 $prefix=$typeToPrefix[$value]; variable
96 $fileName = $latestFile[$prefix];
113 $prefix=$typeToPrefix[$value]; variable
128 $aBucket = $buckets[$prefix];
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/
H A DPluginFlyoutPreferences.java32 public PluginFlyoutPreferences(IPreferenceStore store, String prefix) { argument
34 m_dockLocationKey = prefix + ".flyout.dockLocation";
35 m_stateKey = prefix + ".flyout.state";
36 m_widthKey = prefix + ".flyout.width";
/external/emma/core/java12/com/vladium/util/
H A DFiles.java294 * This defers to File.createTempFile (prefix, extension, parentDir) after
305 * @param prefix prefix pattern for the temp file name [only the first 3
314 public static File createTempFile (final File parentDir, final String prefix, String extension) argument
319 if ((prefix == null) || (prefix.length () < 3))
320 throw new IllegalArgumentException ("null or less than 3 chars long: " + prefix);
325 return File.createTempFile (prefix, extension, parentDir);
/external/icu/icu4c/source/common/
H A Dservlk.cpp74 LocaleKey::prefix(UnicodeString& result) const { function in class:LocaleKey
105 prefix(result).append(PREFIX_DELIMITER).append(_currentID);
/external/iptables/extensions/
H A Dlibxt_NFLOG.c22 {.name = "nflog-prefix", .id = O_PREFIX, .type = XTTYPE_STRING,
23 .min = 1, .flags = XTOPT_PUT, XTOPT_POINTER(s, prefix)},
38 " --nflog-prefix STRING Prefix string for log messages\n");
55 "Newlines not allowed in --log-prefix");
60 static void nflog_print(const struct xt_nflog_info *info, char *prefix) argument
62 if (info->prefix[0] != '\0') {
63 printf(" %snflog-prefix ", prefix);
64 xtables_save_string(info->prefix);
67 printf(" %snflog-group %u", prefix, inf
[all...]
H A Dlibxt_connbytes.c115 static void print_from_to(const struct xt_connbytes_info *sinfo, const char *prefix) argument
127 printf(" %sconnbytes %llu", prefix, from);
H A Dlibxt_connlabel.c64 connlabel_mt_print_op(const struct xt_connlabel_mtinfo *info, const char *prefix) argument
67 printf(" %sset", prefix);
H A Dlibxt_statistic.c100 static void print_match(const struct xt_statistic_info *info, char *prefix) argument
104 printf(" %smode random%s %sprobability %.11f", prefix,
106 prefix,
110 printf(" %smode nth%s %severy %u", prefix,
112 prefix,
114 if (info->u.nth.packet || *prefix)
115 printf(" %spacket %u", prefix, info->u.nth.packet);
/external/iptables/include/linux/netfilter_ipv4/
H A Dipt_ULOG.h31 char prefix[ULOG_PREFIX_LEN]; member in struct:ipt_ulog_info
43 char prefix[ULOG_PREFIX_LEN]; member in struct:ulog_packet_msg
/external/junit/src/org/junit/internal/
H A DTextListener.java72 protected void printFailure(Failure each, String prefix) { argument
73 getWriter().println(prefix + ") " + each.getTestHeader());

Completed in 394 milliseconds

1234567891011>>