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

1 2 3 4 5 67 8 91011>>

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/cla/
dual_name_parameter.ipp 47 split( string_name_policy& snp, char_name_policy& cnp, cstring src, K const& k )
63 split( m_primary, m_secondary, src, prefix );
71 split( m_primary, m_secondary, src, name );
79 split( m_primary, m_secondary, src, separator );
  /packages/apps/Email/src/com/android/email/
StopWatch.java 30 * s.split();
32 * s.split();
53 public void split(String label) { method in class:StopWatch
56 LogUtils.w(Logging.LOG_TAG, "StopWatch(" + mName + ") split(" + label + ") " + elapse);
  /prebuilts/python/darwin-x86/2.7.5/bin/
python-config 43 flags.extend(getvar('CFLAGS').split())
47 libs = getvar('LIBS').split() + getvar('SYSLIBS').split()
55 libs.extend(getvar('LINKFORSHARED').split())
python2-config 43 flags.extend(getvar('CFLAGS').split())
47 libs = getvar('LIBS').split() + getvar('SYSLIBS').split()
55 libs.extend(getvar('LINKFORSHARED').split())
python2.7-config 43 flags.extend(getvar('CFLAGS').split())
47 libs = getvar('LIBS').split() + getvar('SYSLIBS').split()
55 libs.extend(getvar('LINKFORSHARED').split())
  /prebuilts/python/linux-x86/2.7.5/bin/
python-config 43 flags.extend(getvar('CFLAGS').split())
47 libs = getvar('LIBS').split() + getvar('SYSLIBS').split()
55 libs.extend(getvar('LINKFORSHARED').split())
python2-config 43 flags.extend(getvar('CFLAGS').split())
47 libs = getvar('LIBS').split() + getvar('SYSLIBS').split()
55 libs.extend(getvar('LINKFORSHARED').split())
python2.7-config 43 flags.extend(getvar('CFLAGS').split())
47 libs = getvar('LIBS').split() + getvar('SYSLIBS').split()
55 libs.extend(getvar('LINKFORSHARED').split())
  /external/libvpx/libvpx/vp9/common/
vp9_entropymode.c 58 { 158, 97, 94 } /* a/l both not split */,
59 { 93, 24, 99 } /* a split, l not split */,
60 { 85, 119, 44 } /* l split, a not split */,
61 { 62, 59, 67 } /* a/l both split */,
63 { 149, 53, 53 } /* a/l both not split */,
64 { 94, 20, 48 } /* a split, l not split */,
65 { 83, 53, 24 } /* l split, a not split */
    [all...]
  /external/oprofile/opjitconv/
jitsymbol.c 229 * the overlapping entry we split or truncate it to not overlap any more.
233 * split: |------------|
236 * The split entry may be splitted in a left part and a right part. E.g.:
243 static void split_entry(struct jitentry * split, struct jitentry const * keep)
247 unsigned long long end_addr_split = split->vma + split->code_size;
248 unsigned long long start_addr_split = split->vma;
257 if (strlen(split->symbol_name) > SIZE_MAX - 3) {
261 s = xmalloc(strlen(split->symbol_name) + 3);
262 strcpy(s, split->symbol_name)
    [all...]
  /build/tools/
check_radio_versions.py 33 key, value = line.split()[1].split("=", 1)
40 key, fn = item.split(":", 1)
45 values = values.split("|")
62 h, v = line.split()
  /external/libvpx/libvpx/vp8/encoder/
boolhuff.h 64 unsigned int split; local
81 split = 1 + (((range - 1) * probability) >> 8);
83 range = split;
87 lowvalue += split;
88 range = br->range - split;
  /external/libvpx/libvpx/vp9/encoder/
vp9_boolhuff.h 45 unsigned int split; local
62 split = 1 + (((range - 1) * probability) >> 8);
64 range = split;
67 lowvalue += split;
68 range = br->range - split;
  /cts/libs/vogar-expect/src/vogar/
Outcome.java 95 return Arrays.asList(output.split("\n"));
102 return Arrays.asList(writer.toString().split("\\n"));
110 int split = split(outcomeName); local
111 return split == -1 ? "defaultpackage" : outcomeName.substring(0, split);
118 int split = split(outcomeName); local
119 return split == -1 ? outcomeName : outcomeName.substring(split + 1)
122 private static int split(String name) { method in class:Outcome
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
cssNamedFlows.css 30 .css-named-flow-collections-view .split-view-sidebar {
48 .css-named-flow-collections-view .split-view-sidebar .sidebar-content {
57 .css-named-flow-collections-view .split-view-sidebar .selection {
62 .css-named-flow-collections-view .split-view-contents .title {
66 .css-named-flow-collections-view .split-view-sidebar .named-flow-overflow::before,
80 .css-named-flow-collections-view .split-view-sidebar .named-flow-overflow::before {
97 .css-named-flow-collections-view .split-view-contents .named-flow-element {
  /external/chromium_org/third_party/mesa/src/src/glsl/
opt_array_splitting.cpp 28 * split it apart into its elements, making it more amenable to other
52 this->split = true;
65 /** Whether this array should be split or not. */
66 bool split; member in class:opt_array_splitting::variable_entry
85 * variables that could be split by looking to see if they are arrays
128 /* If the array hasn't been sized yet, we can't split it. After
164 * (see the visit_continue_with_parent below), so we can't split
168 entry->split = false;
183 * know which split variable this dereference should go to.
186 entry->split = false
    [all...]
  /external/mesa3d/src/glsl/
opt_array_splitting.cpp 28 * split it apart into its elements, making it more amenable to other
52 this->split = true;
65 /** Whether this array should be split or not. */
66 bool split; member in class:opt_array_splitting::variable_entry
85 * variables that could be split by looking to see if they are arrays
128 /* If the array hasn't been sized yet, we can't split it. After
164 * (see the visit_continue_with_parent below), so we can't split
168 entry->split = false;
183 * know which split variable this dereference should go to.
186 entry->split = false
    [all...]
  /external/opencv/ml/src/
mltree.cpp 269 // now calculate the maximum size of split,
810 node->split = 0;
847 CvDTreeSplit* split = (CvDTreeSplit*)cvSetNew( split_heap ); local
848 split->var_idx = vi;
849 split->ord.c = cmp_val;
850 split->ord.split_point = split_point;
851 split->inversed = inversed;
852 split->quality = quality;
853 split->next = 0;
855 return split;
861 CvDTreeSplit* split = (CvDTreeSplit*)cvSetNew( split_heap ); local
877 CvDTreeSplit* split = node->split; local
1385 CvDTreeSplit* split; local
1530 CvDTreeSplit *best_split = 0, *split = 0, *t; local
2171 CvDTreeSplit* split = data->new_split_cat( vi, 0 ); local
2445 CvDTreeSplit* split = node->split->next; local
2939 CvDTreeSplit* split = node->split; local
3025 CvDTreeSplit* split = node->split; local
3090 CvDTreeSplit* split; local
3194 CvDTreeSplit* split = 0; local
3323 CvDTreeSplit* split; local
    [all...]
  /external/clang/www/
make_cxx_dr_status 25 col.split('>', 1)[1].split('</TD>')[0]
26 for col in dr.split('</TR>', 1)[0].split('<TD')[1:]
28 _, url, issue = issue_link.split('"', 2)
30 issue = int(issue.split('>', 1)[1].split('<', 1)[0])
47 drs = sorted((parse(dr) for dr in file(index, 'r').read().split('<TR>')[2:]),
119 dup = status.split(' ', 1)[1]
127 dup = int(status.split(' ', 1)[1]
    [all...]
  /frameworks/base/core/java/com/android/internal/net/
VpnConfig.java 78 String[] routes = routesStr.trim().split(" ");
81 String[] split = route.split("/"); local
83 (InetAddress.parseNumericAddress(split[0]), Integer.parseInt(split[1])), null);
92 String[] addresses = addressesStr.trim().split(" ");
95 String[] split = address.split("/"); local
96 LinkAddress addr = new LinkAddress(InetAddress.parseNumericAddress(split[0]),
97 Integer.parseInt(split[1]))
    [all...]
  /external/chromium_org/chrome/tools/convert_dict/
dic_reader.cc 23 // We split the line on a slash not preceded by a backslash. A slash at the
72 std::vector<std::string> split; local
73 SplitDicLine(line, &split);
74 if (split.empty() || split.size() > 2) {
85 utf8word = split[0];
86 } else if (!aff_reader->EncodingToUTF8(split[0], &utf8word)) {
94 if (split.size() == 2) {
99 size_t split1_tab_offset = split[1].find('\t');
101 split[1] = split[1].substr(0, split1_tab_offset)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_strop.py 82 split = strop.split
83 self.assertTrue(split("this is the split function")
84 == ['this', 'is', 'the', 'split', 'function'])
85 self.assertTrue(split("a|b|c|d", '|') == ['a', 'b', 'c', 'd'])
86 self.assertTrue(split("a|b|c|d", '|', 2) == ['a', 'b', 'c|d'])
87 self.assertTrue(split("a b c d", None, 1) == ['a', 'b c d'])
88 self.assertTrue(split("a b c d", None, 2) == ['a', 'b', 'c d'])
89 self.assertTrue(split("a b c d", None, 3) == ['a', 'b', 'c', 'd']
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_strop.py 82 split = strop.split
83 self.assertTrue(split("this is the split function")
84 == ['this', 'is', 'the', 'split', 'function'])
85 self.assertTrue(split("a|b|c|d", '|') == ['a', 'b', 'c', 'd'])
86 self.assertTrue(split("a|b|c|d", '|', 2) == ['a', 'b', 'c|d'])
87 self.assertTrue(split("a b c d", None, 1) == ['a', 'b c d'])
88 self.assertTrue(split("a b c d", None, 2) == ['a', 'b', 'c d'])
89 self.assertTrue(split("a b c d", None, 3) == ['a', 'b', 'c', 'd']
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
Splitter.java 41 * Splitter.on(',').split("foo,bar")}</pre>
48 * Splitter.on(',').split("foo,,bar, quux")}</pre>
59 * Now {@code MY_SPLITTER.split("foo, ,bar, quux,")} returns an iterable
75 * return splitter.split("wrong / wrong / wrong");}</pre>
84 * separators, as does {@link String#split(String)}, nor does it have a default
115 * example, {@code Splitter.on(',').split("foo,,bar")} returns an iterable
128 * Splitter.on(CharMatcher.anyOf(";,")).split("foo,;bar,quux")} returns an
156 * example, {@code Splitter.on(", ").split("foo, bar, baz,qux")} returns an
196 * For example, {@code Splitter.fixedLength(2).split("abcde")} returns an
201 * @return a splitter, with default settings, that can split into fixed size
    [all...]
  /external/chromium_org/ui/views/controls/
single_split_view.h 66 // Sets whether the leading component is resized when the split views size
74 // split view |bounds|, current divider offset and children visiblity.
96 // Calculates the new |divider_offset| based on the changes of split view
102 // Returns divider offset within primary axis size range for given split
106 // Returns width in case of horizontal split and height otherwise.
125 // Orientation of the split view.

Completed in 1234 milliseconds

1 2 3 4 5 67 8 91011>>