HomeSort by relevance Sort by last modified time
    Searched full:separator (Results 101 - 125 of 2854) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/proguard/src/proguard/gui/
FilterBuilder.java 32 private char separator; field in class:FilterBuilder
39 * @param separator the separator for the names in the check boxes.
41 public FilterBuilder(JCheckBox[] checkBoxes, char separator)
44 this.separator = separator;
108 prefix.charAt(prefix.length()-1) == separator)
126 prefix.charAt(prefix.length()-1) == separator)
151 name.indexOf(separator, prefix.length()+1);
  /external/skia/tests/
OSPathTest.cpp 34 // dir did not include the final path separator.
46 // basename will not contain a path separator
59 // Now make sure this works with a path separator at the end of dir.
73 // Basename of a directory with a path separator at the end is empty.
  /packages/apps/ContactsCommon/res/values/
colors.xml 19 <!-- Divider color for header separator -->
22 <!-- Divider color for header separator -->
25 <!-- Divider color for header separator -->
28 <!-- Divider color for header separator -->
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/messages/languages/
en.stg 40 <stackTrace; separator="\n">
46 <stackTrace; separator="\n">
55 <stackTrace; separator="\n">
60 <stackTrace; separator="\n">
70 <stackTrace; separator="\n">
238 <paths:{ it | alt <it.alt> via NFA path <it.states; separator=","><\n>}>
240 Decision can match input such as "<input>" using multiple alternatives: <conflictingAlts; separator=", ">
242 <if(disabled)><\n>As a result, alternative(s) <disabled; separator=","> were disabled for that input<endif><if(hasPredicateBlockedByAction)><\n>Semantic predicates were present but were hidden by actions.<endif>
246 the decision cannot distinguish between alternative(s) <danglingAlts; separator=","> for input such as "<input>"
250 The following alternatives can never be matched: <alts; separator=","><\n
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSBasicShapes.cpp 42 char separator[] = ", "; local
45 result.reserveCapacity((sizeof(opening) - 1) + (5 * (sizeof(separator) - 1)) + 1 + x.length() + y.length() + width.length() + height.length() + radiusX.length() + radiusY.length());
48 result.appendLiteral(separator);
50 result.appendLiteral(separator);
52 result.appendLiteral(separator);
55 result.appendLiteral(separator);
58 result.appendLiteral(separator);
198 // add length of two strings, plus one for the space separator.
264 char separator[] = ", "; local
267 result.reserveCapacity((sizeof(opening) - 1) + (5 * (sizeof(separator) - 1)) + 1 + top.length() + right.length() + bottom.length() + left.length() + radiusX.length() + (…)
    [all...]
  /external/open-vcdiff/gtest/include/gtest/internal/
gtest-filepath.h 49 // handles platform-specific conventions (like the pathname separator).
53 // A FilePath with a value ending in a path separator ("like/this/") represents
90 // On Windows platform, uses \ as the separator rather than /.
98 // On Windows, uses \ as the separator rather than /.
117 // If input name has a trailing separator character, removes it and returns
119 // On Windows platform, uses \ as the separator, other platforms use /.
127 // On Windows platform, '\' is the path separator, otherwise it is '/'.
135 // On Windows platform, '\' is the path separator, otherwise it is '/'.
147 // not represent a directory (that is, it doesn't end with a path separator).
164 // Returns true if FilePath ends with a path separator, which indicates tha
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-filepath.h 49 // handles platform-specific conventions (like the pathname separator).
53 // A FilePath with a value ending in a path separator ("like/this/") represents
90 // On Windows platform, uses \ as the separator rather than /.
98 // On Windows, uses \ as the separator rather than /.
117 // If input name has a trailing separator character, removes it and returns
119 // On Windows platform, uses \ as the separator, other platforms use /.
127 // On Windows platform, '\' is the path separator, otherwise it is '/'.
135 // On Windows platform, '\' is the path separator, otherwise it is '/'.
147 // not represent a directory (that is, it doesn't end with a path separator).
164 // Returns true if FilePath ends with a path separator, which indicates tha
    [all...]
  /frameworks/opt/timezonepicker/src/com/android/timezonepicker/
TimeZoneInfo.java 39 private static final char SEPARATOR = ',';
235 sb.append(SEPARATOR);
237 sb.append(SEPARATOR);
239 sb.append(SEPARATOR);
242 sb.append(SEPARATOR);
245 sb.append(SEPARATOR);
247 sb.append(SEPARATOR);
249 sb.append(SEPARATOR);
251 sb.append(SEPARATOR);
253 sb.append(SEPARATOR);
    [all...]
  /external/nist-sip/java/gov/nist/core/
NameValue.java 55 private String separator; field in class:NameValue
66 separator = Separators.EQUALS;
84 separator = Separators.EQUALS;
100 * Set the separator for the encoding method below.
103 separator = sep;
166 buffer.append(name).append(separator).append(quotes);
172 buffer.append(name).append(separator).append(gvlist.encode());
177 return name + separator + quotes + quotes;
181 buffer.append(name).append(separator).append(quotes).append(quotes);
184 buffer.append(name).append(separator); // JvB: fix, case: "sip:host?subject=
    [all...]
  /external/openfst/src/include/fst/
pair-weight.h 116 istream &strm, PairWeight<W1, W2>& w, char separator) {
123 while (c != separator) {
146 char separator, char open_paren, char close_paren) {
161 while (c != separator || !parens.empty()) {
167 // if parens encountered before separator, they must be matched
240 char separator = FLAGS_fst_weight_separator[0]; local
242 return strm << w.Value1() << separator << w.Value2();
251 return strm << open_paren << w.Value1() << separator
262 char separator = FLAGS_fst_weight_separator[0]; local
271 strm, w, separator, FLAGS_fst_weight_parentheses[0]
    [all...]
  /frameworks/compile/mclinker/lib/Support/Windows/
PathV3.inc 50 if (separator == pathname[handler]) { // handler = 1st '/'
55 case separator: { // '//'
56 while (next < pathname.size() && separator == pathname[next])
69 case separator: { // '/./'
78 case separator: { // '/../'
84 handler = pathname.find_first_of(separator, handler);
94 handler = pathname.find_first_of(separator, handler+3);
102 handler = pathname.find_first_of(separator, handler+2);
110 handler = pathname.find_first_of(separator, handler+1);
116 handler = pathname.find_first_of(separator, handler)
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
FastScrollingIndexCache.java 58 * Separator used for in-memory structure.
60 private static final String SEPARATOR = "\u0001";
61 private static final Pattern SEPARATOR_PATTERN = Pattern.compile(SEPARATOR);
64 * Separator used for serializing values for preferences.
83 * We store those strings joined with {@link #SAVE_SEPARATOR} as the separator when saving
126 appendIfNotNull(sb, SEPARATOR);
128 appendIfNotNull(sb, SEPARATOR);
130 appendIfNotNull(sb, SEPARATOR);
135 appendIfNotNull(sb, SEPARATOR);
148 appendIfNotNull(sb, SEPARATOR);
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
AST.stg 181 // elements: <referencedElementsDeep; separator=", ">
182 // token labels: <referencedTokenLabels; separator=", ">
183 // rule labels: <referencedRuleLabels; separator=", ">
184 // token list labels: <referencedTokenListLabels; separator=", ">
185 // rule list labels: <referencedRuleListLabels; separator=", ">
186 // wildcard labels: <[referencedWildcardLabels,referencedWildcardListLabels]; separator=", ">
193 <alts:rewriteAlt(); separator="else ">
216 separator="\n"
220 separator="\n"
224 separator="\n
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
encoding_menu_controller_delegate_mac.mm 18 NSMenuItem* separator = [NSMenuItem separatorItem];
19 [parent_menu addItem:separator];
  /external/chromium_org/chrome/browser/ui/cocoa/
encoding_menu_controller_delegate_mac.mm 18 NSMenuItem* separator = [NSMenuItem separatorItem];
19 [parent_menu addItem:separator];
  /external/chromium_org/content/public/common/
menu_item.h 23 SEPARATOR = blink::WebMenuItemInfo::Separator,
  /external/chromium_org/content/shell/browser/
shell_web_contents_view_delegate_mac.mm 136 NSMenuItem* separator = [NSMenuItem separatorItem];
137 [menu addItem:separator];
147 NSMenuItem* separator = [NSMenuItem separatorItem];
148 [menu addItem:separator];
184 NSMenuItem* separator = [NSMenuItem separatorItem];
185 [menu addItem:separator];
193 NSMenuItem* separator = [NSMenuItem separatorItem];
194 [menu addItem:separator];
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
DOMFilePath.cpp 39 const char DOMFilePath::separator = '/'; member in class:WebCore::DOMFilePath
51 newPath.append(DOMFilePath::separator);
59 int index = path.reverseFind(DOMFilePath::separator);
67 int index = path.reverseFind(DOMFilePath::separator);
83 if (mayBeChild[parent.length()] != DOMFilePath::separator)
93 path.split(DOMFilePath::separator, components);
108 result.append(DOMFilePath::separator);
129 path.split(DOMFilePath::separator, components);
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldZipFileTest.java 154 String separator = System.getProperty("file.separator"); local
155 if (tempFileName.charAt(tempFileName.length() - 1) == separator.charAt(0)) {
159 tempFileName + separator, "gabba.zip");
183 String separator = System.getProperty("file.separator"); local
184 if (tempFileName.charAt(tempFileName.length() - 1) == separator
190 tempFileName + separator, "gabba.zip");
  /external/chromium_org/third_party/sqlite/src/tool/
shell5.test 51 # Test cases shell5-1.*: Basic handling of the .import and .separator commands.
69 # .separator STRING Change separator used by output mode and .import
71 catchcmd "test.db" ".separator"
72 } {1 {Error: unknown command or invalid arguments: "separator". Enter ".help" for help}}
74 catchcmd "test.db" ".separator FOO"
78 catchcmd "test.db" ".separator FOO BAD"
79 } {1 {Error: unknown command or invalid arguments: "separator". Enter ".help" for help}}
81 # separator should default to "|"
84 list [regexp {separator: \"\|\"} $res
    [all...]
  /external/ceres-solver/internal/ceres/
file.cc 80 static const char separator = '\\'; local
82 static const char separator = '/';
85 if ((!basename.empty() && basename[0] == separator) || dirname.empty()) {
87 } else if (dirname[dirname.size() - 1] == separator) {
90 return dirname + string(&separator, 1) + basename;
  /external/proguard/src/proguard/wtk/
ProGuardObfuscator.java 116 String separator = System.getProperty("path.separator"); local
121 // Find the next separator, or the end of the String.
122 int next_index = classPathString.indexOf(separator, index);
135 // Continue after the separator.
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/
unit_test_parameters.ipp 253 - (cla::prefix = "--|-",cla::separator = "=| ",cla::guess_name,cla::optional,
256 - (cla::prefix = "--",cla::separator = "=",cla::guess_name,cla::optional,
259 - (cla::prefix = "--|-",cla::separator = "=| ",cla::guess_name,cla::optional,
262 - (cla::prefix = "--|-",cla::separator = "=| ",cla::guess_name,cla::optional,
265 - (cla::prefix = "--",cla::separator = "=",cla::guess_name,cla::optional,
268 - (cla::prefix = "--",cla::separator = "=",cla::guess_name,cla::optional,
271 - (cla::prefix = "--|-",cla::separator = "=| ",cla::guess_name,cla::optional,
274 - (cla::prefix = "--|-",cla::separator = "=| ",cla::guess_name,cla::optional,
277 - (cla::prefix = "--|-",cla::separator = "=| ",cla::guess_name,cla::optional,
280 - (cla::prefix = "--|-",cla::separator = "=| ",cla::guess_name,cla::optional
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
EventLogView.java 27 import org.eclipse.jface.action.Separator;
93 menuManager.add(new Separator());
97 menuManager.add(new Separator());
103 toolBarManager.add(new Separator());
107 toolBarManager.add(new Separator());
  /sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/
TreeViewView.java 32 import org.eclipse.jface.action.Separator;
74 mm.add(new Separator());
77 mm.add(new Separator());
87 tm.add(new Separator());
90 tm.add(new Separator());

Completed in 1758 milliseconds

1 2 3 45 6 7 8 91011>>