HomeSort by relevance Sort by last modified time
    Searched refs:separators (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/chromium_org/ui/views/controls/combobox/
combobox_unittest.cc 108 void SetSeparators(const std::set<int>& separators) {
109 separators_ = separators;
288 std::set<int> separators; local
289 separators.insert(2);
290 model_->SetSeparators(separators);
310 std::set<int> separators; local
311 separators.insert(0);
312 model_->SetSeparators(separators);
332 std::set<int> separators; local
333 separators.insert(model_->GetItemCount() - 1)
349 std::set<int> separators; local
374 std::set<int> separators; local
391 std::set<int> separators; local
413 std::set<int> separators; local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
RecapitalizeStatus.java 40 private static final int getStringMode(final String string, final String separators) {
45 } else if (StringUtils.isIdenticalAfterCapitalizeEachWord(string, separators)) {
74 final Locale locale, final String separators) {
80 final int initialMode = getStringMode(mStringBefore, separators);
82 mSeparators = separators;
StringUtils.java 268 final String separators) {
280 needCapsNext = (-1 != separators.indexOf(codePoint));
287 public static String capitalizeEachWord(final String text, final String separators,
300 needCapsNext = (-1 != separators.indexOf(nextChar.codePointAt(0)));
  /packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
ContactEntryAdapter.java 78 ContactEntryAdapter(Context context, ArrayList<ArrayList<E>> sections, boolean separators) {
82 mSeparators = separators;
90 public final void setSections(ArrayList<ArrayList<E>> sections, boolean separators) {
92 mSeparators = separators;
180 int position, boolean separators) {
185 if (separators && sectionSize == 1) {
204 boolean separators) {
210 if (separators && sectionSize == 1) {
  /external/chromium_org/third_party/WebKit/Source/platform/text/
BidiTestHarness.h 97 static const std::string separators(" \t");
98 s.erase(0, s.find_first_not_of(separators));
103 static const std::string separators(" \t");
104 size_t lastNonSpace = s.find_last_not_of(separators);
124 static const std::string separators(" \t");
125 size_t lastPos = str.find_first_not_of(separators); // skip leading spaces
126 size_t pos = str.find_first_of(separators, lastPos); // find next space
130 lastPos = str.find_first_not_of(separators, pos);
131 pos = str.find_first_of(separators, lastPos);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
test_separators.py 33 d2 = self.dumps(h, indent=2, sort_keys=True, separators=(' ,', ' : '))
test_indent.py 34 d2 = self.dumps(h, indent=2, sort_keys=True, separators=(',', ': '))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
tool.py 35 indent=4, separators=(',', ': '))
__init__.py 34 >>> json.dumps([1,2,3,{'4': 5, '6': 7}], sort_keys=True, separators=(',',':'))
41 ... indent=4, separators=(',', ': '))
117 separators=None, variable
123 allow_nan=True, cls=None, indent=None, separators=None,
155 You can use ``separators=(',', ': ')`` to avoid this.
157 If ``separators`` is an ``(item_separator, dict_separator)`` tuple
158 then it will be used instead of the default ``(', ', ': ')`` separators.
177 cls is None and indent is None and separators is None and
185 separators=separators, encoding=encoding
    [all...]
encoder.py 103 indent=None, separators=None, encoding='utf-8', default=None):
137 separators=(',', ': ') to avoid this.
139 If specified, separators should be a (item_separator, key_separator)
159 if separators is not None:
160 self.item_separator, self.key_separator = separators
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
test_separators.py 33 d2 = self.dumps(h, indent=2, sort_keys=True, separators=(' ,', ' : '))
test_indent.py 34 d2 = self.dumps(h, indent=2, sort_keys=True, separators=(',', ': '))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
tool.py 35 indent=4, separators=(',', ': '))
__init__.py 34 >>> json.dumps([1,2,3,{'4': 5, '6': 7}], sort_keys=True, separators=(',',':'))
41 ... indent=4, separators=(',', ': '))
117 separators=None, variable
123 allow_nan=True, cls=None, indent=None, separators=None,
155 You can use ``separators=(',', ': ')`` to avoid this.
157 If ``separators`` is an ``(item_separator, dict_separator)`` tuple
158 then it will be used instead of the default ``(', ', ': ')`` separators.
177 cls is None and indent is None and separators is None and
185 separators=separators, encoding=encoding
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_snprintf.c 905 int separators = (flags & PRINT_F_QUOTE); local
943 if (separators) /* Get the number of group separators we'll print. */
944 separators = getnumsep(pos);
946 zpadlen = precision - pos - separators;
948 - separators /* Number of separators. */
986 if (separators > 0 && pos > 0 && pos % 3 == 0)
1018 int separators = (flags & PRINT_F_QUOTE); local
1302 int separators = (digits - ((digits % 3 == 0) ? 1 : 0)) \/ 3; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_snprintf.c 905 int separators = (flags & PRINT_F_QUOTE); local
943 if (separators) /* Get the number of group separators we'll print. */
944 separators = getnumsep(pos);
946 zpadlen = precision - pos - separators;
948 - separators /* Number of separators. */
986 if (separators > 0 && pos > 0 && pos % 3 == 0)
1018 int separators = (flags & PRINT_F_QUOTE); local
1302 int separators = (digits - ((digits % 3 == 0) ? 1 : 0)) \/ 3; local
    [all...]
  /external/chromium_org/net/websockets/
websocket_extension_parser.cc 154 const char separators[] = "()<>@,;:\\\"/[]?={} \t"; local
155 return strchr(separators, c) != NULL;
  /external/chromium_org/ui/android/java/src/org/chromium/ui/autofill/
AutofillListAdapter.java 32 Set<Integer> separators) {
34 mSeparators = separators;
AutofillPopup.java 143 HashSet<Integer> separators = new HashSet<Integer>(); local
150 separators.add(cleanedData.size());
153 setAdapter(new AutofillListAdapter(mContext, cleanedData, separators));
  /external/emma/core/java12/com/vladium/emma/filter/
IInclExclFilter.java 38 public static IInclExclFilter create (final String specs1, final String separators, final String [] specs2)
54 for (StringTokenizer tokenizer = new StringTokenizer (specs1, separators);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
StringUtilsTests.java 202 private static void checkCapitalize(final String src, final String dst, final String separators,
204 assertEquals(dst, StringUtils.capitalizeEachWord(src, separators, locale));
206 == StringUtils.isIdenticalAfterCapitalizeEachWord(src, separators));
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/handlers/
buildershandler.py 109 return json.dumps(data, separators=(',', ':'), sort_keys=True)
  /external/llvm/lib/Support/
Path.cpp 34 const char *separators = "\\/"; member in namespace:__anon21920
37 const char separators = '/';
65 size_t end = path.find_first_of(separators, 2);
80 size_t end = path.find_first_of(separators, 2);
93 size_t pos = str.find_last_of(separators, str.size() - 1);
127 return str.find_first_of(separators, 2);
142 // Skip separators except for root dir.
200 // Both POSIX and Windows treat paths that begin with exactly two separators
207 // Handle separators.
220 // Skip extra separators
    [all...]
  /external/emma/core/java12/com/vladium/util/
Files.java 96 final String separators = ",".concat (File.pathSeparator); local
103 final StringTokenizer tokenizer = new StringTokenizer (segment, separators);
  /external/icu4c/samples/layout/
paragraph.cpp 81 static const LEUnicode separators[] = {CH_LF, CH_CR, CH_LSEP, CH_PSEP, 0x0000}; local
104 LEUnicode *pEnd = u_strpbrk(pStart, separators);

Completed in 2240 milliseconds

1 2 3