HomeSort by relevance Sort by last modified time
    Searched defs:split (Results 151 - 175 of 1282) sorted by null

1 2 3 4 5 67 8 91011>>

  /cts/tests/tests/permission2/src/android/permission2/cts/
PrivappPermissionsTest.java 135 String[] split = output.substring(1, output.length() - 1).split("\\s*,\\s*"); local
136 return new LinkedHashSet<>(Arrays.asList(split));
146 String[] split = output.substring(1, output.length() - 1).split("\\s*,\\s*"); local
147 return new LinkedHashSet<>(Arrays.asList(split));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/
ntpath.py 16 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
111 # but b is empty; since, e.g., split('a/') produces
119 # Split a path in a drive specification (a drive letter followed by a
123 """Split a pathname into drive and path specifiers. Returns a 2-tuple
125 pparts = p.split(':', 2)
137 """Split a pathname into UNC mount point and relative path specifiers.
144 if len(p.split(':', 2)) > 1:
164 # Split a path in head (everything up to the last '/') and tail (the
169 def split(p): function
170 """Split a pathname.
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
re.py 82 split Split a string by the occurrences of a pattern.
113 __all__ = [ "match", "search", "sub", "subn", "split", "findall",
168 def split(pattern, string, maxsplit=0, flags=0): function
169 """Split the source string by the occurrences of the pattern,
171 return _compile(pattern, flags).split(string, maxsplit)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/
ntpath.py 30 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
106 # Split a path in a drive specification (a drive letter followed by a
113 """Split a pathname into drive/UNC sharepoint and relative path specifiers.
157 """Split a pathname into UNC mount point and relative path specifiers.
187 # Split a path in head (everything up to the last '/') and tail (the
192 def split(p): function
193 """Split a pathname.
212 # Split a path in root and extension.
226 return split(p)[1]
233 return split(p)[0]
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
ntpath.py 16 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
111 # but b is empty; since, e.g., split('a/') produces
119 # Split a path in a drive specification (a drive letter followed by a
123 """Split a pathname into drive and path specifiers. Returns a 2-tuple
132 """Split a pathname into UNC mount point and relative path specifiers.
159 # Split a path in head (everything up to the last '/') and tail (the
164 def split(p): function
165 """Split a pathname.
184 # Split a path in root and extension.
198 return split(p)[1]
    [all...]
posixpath.py 20 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
75 # Split a path in head (everything up to the last '/') and tail (the
80 def split(p): function
81 """Split a pathname. Returns tuple "(head, tail)" where "tail" is
90 # Split a path in root and extension.
99 # Split a pathname into a drive specification and the rest of the
103 """Split a pathname into drive and path. On Posix, drive is always
108 # Return the tail (basename) part of a path, same as split(path)[1].
116 # Return the head (dirname) part of a path, same as split(path)[0].
324 comps = path.split('/')
    [all...]
re.py 82 split Split a string by the occurrences of a pattern.
109 __all__ = [ "match", "search", "sub", "subn", "split", "findall",
164 def split(pattern, string, maxsplit=0, flags=0): function
165 """Split the source string by the occurrences of the pattern,
167 return _compile(pattern, flags).split(string, maxsplit)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Strings.java 320 public static String[] split(String input, char delimiter) method in class:Strings
  /external/brotli/c/enc/
metablock_inc.h 48 BlockSplit* split, HistogramType** histograms, size_t* histograms_size) {
58 self->split_ = split;
65 split->types, split->types_alloc_size, max_num_blocks);
67 split->lengths, split->lengths_alloc_size, max_num_blocks);
86 BlockSplit* split = self->split_; variable
93 split->lengths[0] = (uint32_t)self->block_size_;
94 split->types[0] = 0;
99 ++split->num_types
    [all...]
  /external/deqp/framework/delibs/decpp/
deFilePath.cpp 60 void FilePath::split (std::vector<std::string>& components) const function in class:de::FilePath
99 split(components);
142 split(components);
149 split(components);
  /external/dexmaker/dexmaker/src/main/java/com/android/dx/
AppDataDirGuesser.java 104 String split[] = trimmed.split(","); local
108 for (int i = 0; i < split.length; i++) {
109 int quoteStart = split[i].indexOf('"');
110 int quoteEnd = split[i].lastIndexOf('"');
112 split[i] = split[i].substring(quoteStart + 1, quoteEnd);
118 for (String s : split) {
172 return trimmed.split(":");
  /external/eigen/bench/btl/generic_bench/
btl.hh 81 std::vector<BtlString> split( const BtlString& delims = "\t\n ") const function in class:BtlString
152 std::vector<BtlString> elements = this->split("/\\");
173 std::vector<BtlString> config = BtlString(_config).split(" \t\n");
183 Instance.m_selectedActionNames = config[i+1].split(":");
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/
ASTHelper.java 89 String[] split = qualifiedName.split("\\."); local
90 NameExpr ret = new NameExpr(split[0]);
91 for (int i = 1; i < split.length; i++) {
92 ret = new QualifiedNameExpr(ret, split[i]);
  /external/libchrome/base/trace_event/
trace_config_category_filter.cc 48 std::vector<StringPiece> split = SplitStringPiece( local
50 for (const StringPiece& category : split) {
  /external/libmojo/third_party/markupsafe/
__init__.py 111 def split(self, *args, **kwargs): member in class:Markup
112 return list(map(self.__class__, text_type.split(self, *args, **kwargs)))
113 split.__doc__ = text_type.split.__doc__
153 stripped = u' '.join(_striptags_re.sub('', self).split())
  /external/libvpx/libvpx/vp8/decoder/
detokenize.c 56 int split = (br->range + 1) >> 1; local
57 VP8_BD_VALUE bigsplit = (VP8_BD_VALUE)split << (VP8_BD_VALUE_SIZE - 8);
63 br->range = split;
66 br->range = br->range - split;
  /external/llvm/lib/IR/
DataLayout.cpp 196 /// Checked version of split, to ensure mandatory subparts.
197 static std::pair<StringRef, StringRef> split(StringRef Str, char Separator) { function
199 std::pair<StringRef, StringRef> Split = Str.split(Separator);
200 if (Split.second.empty() && Split.first != Str)
202 if (!Split.second.empty() && Split.first.empty())
204 return Split;
226 // Split at '-'
    [all...]
  /external/mesa3d/src/mesa/vbo/
vbo_split_inplace.c 63 static void flush_vertex( struct split_context *split )
65 struct gl_context *ctx = split->ctx;
70 if (!split->dstprim_nr)
73 if (split->ib) {
74 ib = *split->ib;
76 ib.count = split->max_index - split->min_index + 1;
78 split->min_index * _mesa_sizeof_type(ib.type));
81 for (i = 0; i < split->dstprim_nr; i++)
82 split->dstprim[i].start -= split->min_index
274 struct split_context split; local
    [all...]
  /external/parameter-framework/upstream/parameter/
ParameterMgrFullConnector.cpp 216 bool CParameterMgrFullConnector::split(const string &strDomain, function in class:CParameterMgrFullConnector
219 return _pParameterMgr->split(strDomain, strConfigurableElementPath, strError);
  /external/python/cpython2/Lib/
ntpath.py 17 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
93 # Split a path in a drive specification (a drive letter followed by a
97 """Split a pathname into drive/UNC sharepoint and relative path specifiers.
139 """Split a pathname into UNC mount point and relative path specifiers.
169 # Split a path in head (everything up to the last '/') and tail (the
174 def split(p): function
175 """Split a pathname.
194 # Split a path in root and extension.
208 return split(p)[1]
215 return split(p)[0
    [all...]
posixpath.py 21 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
77 # Split a path in head (everything up to the last '/') and tail (the
82 def split(p): function
83 """Split a pathname. Returns tuple "(head, tail)" where "tail" is
92 # Split a path in root and extension.
101 # Split a pathname into a drive specification and the rest of the
105 """Split a pathname into drive and path. On Posix, drive is always
110 # Return the tail (basename) part of a path, same as split(path)[1].
118 # Return the head (dirname) part of a path, same as split(path)[0].
341 comps = path.split('/')
    [all...]
re.py 82 split Split a string by the occurrences of a pattern.
113 __all__ = [ "match", "search", "sub", "subn", "split", "findall",
168 def split(pattern, string, maxsplit=0, flags=0): function
169 """Split the source string by the occurrences of the pattern,
171 return _compile(pattern, flags).split(string, maxsplit)
  /external/python/cpython2/Lib/plat-riscos/
riscospath.py 57 split filing system name (including special field) and drive specifier from rest
123 def split(p): function
125 Split a path in head (everything up to the last '.') and tail (the rest). FS
137 Split a path in root and extension. This assumes the 'using slash for dot and
140 (tail, head)= split(p)
149 Split a pathname into a drive specification (including FS name) and the rest of
161 return split(p)[1]
168 return split(p)[0]
294 fsname= string.split(fsname, '#', 1)[0] # remove special field from fs
335 (path, el)= split(path
    [all...]
  /external/python/cpython3/Lib/
ntpath.py 14 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
118 # Split a path in a drive specification (a drive letter followed by a
122 """Split a pathname into drive/UNC sharepoint and relative path specifiers.
177 Split a pathname into UNC mount point and relative path specifiers.
194 # Split a path in head (everything up to the last '/') and tail (the
199 def split(p): function
200 """Split a pathname.
217 # Split a path in root and extension.
235 return split(p)[1]
242 return split(p)[0
    [all...]
posixpath.py 19 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
97 # Split a path in head (everything up to the last '/') and tail (the
102 def split(p): function
103 """Split a pathname. Returns tuple "(head, tail)" where "tail" is
114 # Split a path in root and extension.
130 # Split a pathname into a drive specification and the rest of the
134 """Split a pathname into drive and path. On Posix, drive is always
140 # Return the tail (basename) part of a path, same as split(path)[1].
150 # Return the head (dirname) part of a path, same as split(path)[0].
350 comps = path.split(sep
    [all...]

Completed in 1142 milliseconds

1 2 3 4 5 67 8 91011>>