HomeSort by relevance Sort by last modified time
    Searched refs:separator (Results 51 - 75 of 266) sorted by null

1 23 4 5 6 7 8 91011

  /cts/tools/signature-tools/test/signature/converter/doclet/
DocletTestConverter.java 46 static String separator; field in class:DocletTestConverter
49 separator = System.getProperty("file.separator");
52 sourcepath = sourcepath + separator + "cts" + separator;
83 directory = directory + filename.substring(0, pos) + separator;
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
product-weight.h 127 char separator = FLAGS_fst_product_separator[0]; local
128 return strm << w.Value1() << separator << w.Value2();
134 char separator = FLAGS_fst_product_separator[0]; local
140 if (c == EOF || c == separator) {
157 } while (c != separator);
  /packages/apps/Email/src/com/android/exchange/provider/
GalEmailAddressAdapter.java 142 // 2. gal cursor is null or empty - remove separator and exit
143 // 3. gal cursor has results - update separator and add results to matrix cursor
182 // Replace the separator text with "totals"
197 * The following series of overrides insert the separator between contacts & GAL contacts
202 * Get the separator position, which is tucked into the cursor to deal with threading.
215 * Prevents the separator view from recycling into the other views
226 * Injects the separator view when required
234 // Handle the separator here - create & bind
236 View separator; local
237 separator = mInflater.inflate(R.layout.recipient_dropdown_separator, parent, false)
    [all...]
  /cts/tools/signature-tools/src/signature/io/html/
HtmlDeltaExternalizer.java 44 private static final String DELTA_FOLDER = "changes" + File.separator;
48 if (!location.endsWith(File.separator)) {
49 location += File.separator;
  /external/webkit/WebKit/gtk/WebCoreSupport/
ContextMenuClientGtk.cpp 141 GtkWidget* separator = gtk_separator_menu_item_new(); local
142 gtk_menu_shell_append(GTK_MENU_SHELL(gtkmenu), separator); local
143 gtk_widget_show(separator);
  /libcore/luni/src/main/java/java/io/
FilePermission.java 115 if (path.equals("*") || path.endsWith(File.separator + "*")) {
118 if (path.equals("-") || path.endsWith(File.separator + "-")) {
278 && !fp.canonPath.equals(File.separator)) {
320 * If we have * for this and find a separator it is invalid. IE:
322 * separator after the b. Except for root, canonical paths do
323 * not end in a separator.
  /libcore/luni/src/main/java/java/util/prefs/
FilePreferencesImpl.java 114 path = ((FilePreferencesImpl) parent).path + File.separator + name;
125 prefsFile = new File(path + File.separator + PREFS_FILE_NAME);
136 return new File(path + File.separator + name).isDirectory();
  /cts/tools/signature-tools/src/signature/model/util/
ModelUtil.java 149 String separator) {
154 s.append(separator);
  /external/proguard/src/proguard/
GPL.java 123 * separator.
125 private static String trimSuffix(String string, char separator)
127 int index = string.lastIndexOf(separator);
  /external/qemu/
json-parser.c 325 parse_error(ctxt, token, "expected separator in dict");
387 parse_error(ctxt, token, "expected separator in list");
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/src/
perf_print.c 66 char const * const * domains, *missing, *separator; local
75 missing = separator = ",";
83 separator = ", ";
92 "%s" /* info separator start */
94 "%s" /* separator */
96 "%s" /* separator */
99 "%s" /* separator */
104 "%s" /* info separator end */
106 me->csv ? separator : "> {",
108 me->csv ? separator : "-"
    [all...]
  /libcore/luni/src/main/java/javax/xml/parsers/
FilePathToURI.java 60 char separator = java.io.File.separatorChar; local
61 path = path.replace(separator, '/');
  /libcore/luni/src/main/java/javax/xml/transform/stream/
FilePathToURI.java 60 char separator = java.io.File.separatorChar; local
61 path = path.replace(separator, '/');
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/
AdbWrapper.java 50 if (!osSdkPath.endsWith(File.separator)) {
51 osSdkPath += File.separator;
  /external/bison/src/
muscle_tab.h 87 associated value. VALUE and SEPARATOR are copied. */
89 void muscle_grow (const char *key, const char *value, const char *separator);
muscle_tab.c 123 | associated value. Copy VALUE and SEPARATOR. |
127 muscle_grow (const char *key, const char *val, const char *separator)
149 obstack_sgrow (&muscle_obstack, separator);
  /external/chromium/third_party/icu/public/i18n/unicode/
ulocdata.h 224 * Returns locale separator associated with a locale.
228 * @param separator locale separator for locale.
230 * separator with.
234 * than separatorCapacity, the returned separator will be truncated.
240 UChar *separator,
  /frameworks/base/core/tests/hosttests/src/android/content/pm/
PackageManagerStressHostTests.java 111 // Make sure path ends with a separator
112 if (!AppRepositoryPath.endsWith(File.separator)) {
113 AppRepositoryPath += File.separator;
124 File.separator, fileName);
133 return String.format("%s%s%s", getTestAppPath(), File.separator, fileName);
  /frameworks/base/core/tests/coretests/src/android/os/storage/
StorageManagerBaseTest.java 631 doValidateZeroLongFile(path + File.separator + "subdir1", "FiftyLongs", 50, true);
634 doValidateIntContents(path + File.separator + "subdir2", "OneToOneThousandInts", 0, 1000);
637 doValidateZeroLongFile(path + File.separator + "subdir2" + File.separator + "subdir2a",
641 doValidateIntContents(path + File.separator + "subdir2" + File.separator + "subdir2a"
642 + File.separator + "subdir2a1", "OneToOneThousandInts", 0, 1000);
  /external/iptables/extensions/
libip6t_hashlimit.c 275 static void print_mode(const struct xt_hashlimit_info *r, char separator)
281 putchar(separator);
287 putchar(separator);
293 putchar(separator);
299 putchar(separator);
libipt_hashlimit.c 275 static void print_mode(const struct ipt_hashlimit_info *r, char separator)
281 putchar(separator);
287 putchar(separator);
293 putchar(separator);
299 putchar(separator);
  /external/webkit/WebCore/html/
HTMLAnchorElement.cpp 402 int separator = value.find(':'); local
403 if (!separator)
406 if (separator == -1)
410 unsigned port = parsePortFromStringPosition(value, separator + 1, portEnd);
415 url.setHostAndPort(value.substring(0, separator + 1) + "0");
418 url.setHostAndPort(value.substring(0, separator));
  /libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
ZipFileTest.java 453 String separator = System.getProperty("file.separator"); local
454 if (tempFileName.charAt(tempFileName.length() - 1) == separator
460 tempFileName + separator, "gabba.zip");
490 String separator = System.getProperty("file.separator"); local
491 if (tempFileName.charAt(tempFileName.length() - 1) == separator
497 tempFileName + separator, "gabba.zip");
  /external/emma/core/java12/com/vladium/util/
Descriptors.java 27 public static String combine (final String packageName, final String name, final char separator)
35 return new StringBuffer (packageName).append (separator).append (name).toString ();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
AdtPrefs.java 115 // make sure it ends with a separator. Normally this is done when the preference
117 if (mOsSdkLocation.length() > 0 && mOsSdkLocation.endsWith(File.separator) == false) {
118 mOsSdkLocation = mOsSdkLocation + File.separator;
140 * Guaranteed to be terminated by a platform-specific path separator.

Completed in 821 milliseconds

1 23 4 5 6 7 8 91011