HomeSort by relevance Sort by last modified time
    Searched full:parts (Results 51 - 75 of 4773) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/staticDropFiles/
download.php 7 $parts = explode("-", $dropFile); variable
9 for ($i =0; $i<count($parts); $i++) {
11 $clickFile = $clickFile.$parts[$i];
12 if ($i < count($parts) - 1) {
  /external/chromium_org/remoting/webapp/
cs_oauth2_trampoline.js 17 var parts = query.split('&');
19 for (var i = 0; i < parts.length; i++) {
20 var pair = parts[i].split('=');
  /external/chromium_org/third_party/JSON/JSON-2.59/t/
21_evans_bugrep.t 25 my @parts = (substr($js, 0, int(length($js) / 2)),
28 my $object = $j->incr_parse($parts[0]);
38 $object = $j->incr_parse($parts[1]);
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/util/
OS.java 32 final String[] parts = version.split("\\."); typedefs
33 leopard = Integer.parseInt(parts[0]) >= 10 && Integer.parseInt(parts[1]) >= 5;
  /external/chromium_org/chrome/common/net/
url_fixer_upper.cc 52 url_parse::Parsed* parts) {
54 *parts = parts_utf8;
58 parts->scheme =
60 parts ->username =
62 parts->password =
64 parts->host =
66 parts->port =
68 parts->path =
70 parts->query =
72 parts->ref
    [all...]
  /external/oprofile/libpp/
parse_filename.cpp 3 * Split a sample filename into its constituent parts
34 parts_type parts = separate_token(event_spec, '.'); local
36 if (parts.size() != nr_parts) {
41 if (parts[i].empty()) {
49 result.event = parts[i++];
50 result.count = parts[i++];
51 result.unitmask = parts[i++];
52 result.tgid = parts[i++];
53 result.tid = parts[i++];
54 result.cpu = parts[i++]
94 vector<string> parts = separate_token(str, '.'); local
    [all...]
  /external/chromium/chrome/browser/ui/views/location_bar/
suggested_text_view.cc 71 ui::MultiAnimation::Parts parts; local
72 parts.push_back(ui::MultiAnimation::Part(
74 parts.push_back(ui::MultiAnimation::Part(
76 ui::MultiAnimation* animation = new ui::MultiAnimation(parts);
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/
bench_wsh.py 49 parts = line.split(' ')
50 if len(parts) != 3:
52 wait = float(parts[0])
53 count = int(parts[1])
54 message = parts[2]
  /build/tools/
event_log_tags.py 68 parts = re.split(r"\s+", line, 2)
70 if len(parts) < 2:
74 if parts[0] == "option":
75 self.options[parts[1]] = parts[2:]
78 if parts[0] == "?":
82 tag = int(parts[0])
84 self.AddError("\"%s\" isn't an integer tag or '?'" % (parts[0],))
87 tagname = parts[1]
88 if len(parts) == 3
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
code_generator.cc 61 vector<string> parts; local
62 SplitStringUsing(text, ",", &parts);
64 for (int i = 0; i < parts.size(); i++) {
65 string::size_type equals_pos = parts[i].find_first_of('=');
68 value.first = parts[i];
71 value.first = parts[i].substr(0, equals_pos);
72 value.second = parts[i].substr(equals_pos + 1);
  /external/chromium_org/ui/base/animation/
multi_animation.h 16 // To create a MultiAnimation pass in the parts, invoke Start() and the delegate
46 typedef std::vector<Part> Parts;
48 MultiAnimation(const Parts& parts, base::TimeDelta timer_interval);
76 // The parts that make up the animation.
77 const Parts parts_;
79 // Total time of all the parts.
  /external/chromium/chrome/browser/net/
url_fixer_upper.cc 52 url_parse::Parsed* parts) {
54 *parts = parts_utf8;
58 parts->scheme =
60 parts ->username =
62 parts->password =
64 parts->host =
66 parts->port =
68 parts->path =
70 parts->query =
72 parts->ref
    [all...]
  /external/chromium_org/chrome/browser/autocomplete/
autocomplete_input.cc 125 url_parse::Parsed* parts,
143 if (!parts)
144 parts = &local_parts;
145 const string16 parsed_scheme(URLFixerUpper::SegmentURL(text, parts));
156 // |parts->scheme| might be empty, e.g. if the user typed "C:\foo".
164 if (parts->inner_parsed() && parts->inner_parsed()->scheme.is_valid())
174 if (parts->scheme.is_nonempty() &&
224 // Manually re-jigger the parsed parts to match |text| (without the
241 *parts = http_parts
428 url_parse::Parsed parts; local
    [all...]
history_provider.cc 86 UTF16ToUTF8(input_text.substr(input->parts().host.begin,
87 input->parts().host.len));
88 const url_parse::Parsed& parts = local
90 // parts.host must not be empty when HostIsIPAddress() is true.
91 DCHECK(parts.host.is_nonempty());
92 canonical_gurl_str.replace(parts.host.begin, parts.host.len,
131 url_parse::Parsed parts; local
132 URLFixerUpper::SegmentURL(output, &parts);
133 input->UpdateText(output, string16::npos, parts);
    [all...]
  /external/chromium_org/chrome/browser/google_apis/
test_util.cc 162 std::vector<std::string> parts;
163 base::SplitString(remaining, '/', &parts);
164 if (parts.size() != 2U)
167 const std::string range = parts[0];
168 if (!base::StringToInt64(parts[1], length))
171 parts.clear();
172 base::SplitString(range, '-', &parts);
173 if (parts.size() != 2U)
176 return (base::StringToInt64(parts[0], start_position) &&
177 base::StringToInt64(parts[1], end_position))
    [all...]
  /external/protobuf/src/google/protobuf/compiler/javanano/
javanano_generator.cc 99 vector<string> parts; local
100 SplitStringUsing(options[i].second, "|", &parts);
101 if (parts.size() != 2) {
106 params.set_java_package(parts[0], parts[1]);
108 vector<string> parts; local
109 SplitStringUsing(options[i].second, "|", &parts);
110 if (parts.size() != 2) {
116 params.set_java_outer_classname(parts[0], parts[1])
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/
math_private.h 56 } parts; member in union:__anon26958
68 } parts; member in union:__anon26960
79 (ix0) = ew_u.parts.msw; \
80 (ix1) = ew_u.parts.lsw; \
89 (i) = gh_u.parts.msw; \
98 (i) = gl_u.parts.lsw; \
106 iw_u.parts.msw = (ix0); \
107 iw_u.parts.lsw = (ix1); \
117 sh_u.parts.msw = (v); \
127 sl_u.parts.lsw = (v);
    [all...]
  /external/chromium/net/ftp/
ftp_directory_listing_parser_vms.cc 66 std::vector<string16> parts; local
67 base::SplitString(input, '/', &parts);
68 if (parts.size() != 2)
72 if (!base::StringToInt64(parts[0], &blocks_used))
74 if (!base::StringToInt64(parts[1], &blocks_allocated))
105 // We expect four parts of the file protection listing: for System, Owner,
107 std::vector<string16> parts;
108 base::SplitString(input.substr(1, input.length() - 2), ',', &parts);
109 if (parts.size() != 4)
112 return LooksLikeVmsFileProtectionListingPart(parts[0]) &
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/dropSiteRootFiles/
index.php 66 $parts = explode("-", $anEntry); variable
67 if (count($parts) == 3) {
69 $buckets[$parts[0]][] = $anEntry;
71 $timePart = $parts[2];
81 if ($timeStamp > $latestTimeStamp[$parts[0]]) {
82 $latestTimeStamp[$parts[0]] = $timeStamp;
83 $latestFile[$parts[0]] = $anEntry;
100 $parts = explode("-", $fileName); variable
103 // echo "<td><a href=license.php?license=drops/$fileName>$parts[1]</a></td>";
106 echo "<td><a href=\"drops/$fileName/index.html\">$parts[1]</a></td>";
132 $parts = explode("-", $innerValue); variable
    [all...]
  /bionic/libc/upstream-netbsd/libc/inet/
inet_pton.c 106 u_int parts[4]; local
107 u_int *pp = parts;
156 if (pp >= parts + 3)
170 * the number of parts specified.
172 n = pp - parts + 1;
185 if (parts[0] > 0xff || val > 0xffffff)
187 val |= parts[0] << 24;
191 if ((parts[0] | parts[1]) > 0xff || val > 0xffff)
193 val |= (parts[0] << 24) | (parts[1] << 16)
    [all...]
  /bionic/libc/bionic/
ldexp.c 31 } parts; member in union:__anon56
45 } parts; member in union:__anon58
56 (ix0) = ew_u.parts.msw; \
57 (ix1) = ew_u.parts.lsw; \
66 (i) = gh_u.parts.msw; \
75 sh_u.parts.msw = (v); \
  /external/chromium-libpac/src/
net_util.cc 65 std::vector<std::string> parts; local
69 parts.push_back(cidr_literal.substr(0, split));
70 parts.push_back(cidr_literal.substr(split + 1));
71 if (parts[1].find('/') != std::string::npos)
75 if (!ParseIPLiteralToNumber(parts[0], ip_number))
79 int number_of_bits = atoi(parts[1].c_str());
  /external/chromium_org/content/common/
pepper_plugin_list.cc 40 std::vector<std::string> parts; local
41 base::SplitString(modules[i], ';', &parts);
42 if (parts.size() < 2) {
48 base::SplitString(parts[0], '#', &name_parts);
66 for (size_t j = 1; j < parts.size(); ++j) {
67 WebPluginMimeType mime_type(parts[j],
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
equally_split.h 36 /** @brief Function to split a sequence into parts of almost equal size.
39 * positions when splitting the range [0,n) into parts of almost
41 * n. There may result empty parts.
43 * @param num_threads Number of parts
63 /** @brief Function to split a sequence into parts of almost equal size.
69 * @param num_threads Number of parts
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/parallel/
equally_split.h 36 /** @brief function to split a sequence into parts of almost equal size.
39 * splitting positions when splitting the range [0,__n) into parts of
41 * one n. There may result empty parts.
43 * @param __num_threads Number of parts
64 /** @brief function to split a sequence into parts of almost equal size.
70 * @param __num_threads Number of parts

Completed in 518 milliseconds

1 23 4 5 6 7 8 91011>>