HomeSort by relevance Sort by last modified time
    Searched refs:parts (Results 151 - 175 of 309) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
apache_http_server.py 127 def _cygwin_safe_join(self, *parts):
129 path = os.path.join(*parts)
  /frameworks/base/cmds/bootanimation/
BootAnimation.cpp 433 animation.parts.add(part);
440 const size_t pcount = animation.parts.size();
450 if (path == animation.parts[j].path) {
460 Animation::Part& part(animation.parts.editItemAt(j));
498 const Animation::Part& part(animation.parts[i]);
503 // Exit any non playuntil complete parts immediately
560 // For infinite parts, we've now played them at least once, so perhaps exit
  /packages/experimental/procstatlog/
procstatreport.py 647 parts = line.split(None, 2)
648 if len(parts) < 2 or parts[1] not in "+-=":
652 name, op = parts[:2]
666 current_state[name] = "".join(parts[2:]).strip()
  /external/chromium/chrome/browser/extensions/
extension_updater_unittest.cc 415 std::vector<std::string> parts; local
416 base::SplitString(url.query(), '=', &parts);
417 EXPECT_EQ(2u, parts.size());
418 EXPECT_EQ("x", parts[0]);
419 std::string decoded = UnescapeURLComponent(parts[1],
467 std::vector<std::string> parts; local
468 base::SplitString(url.query(), '=', &parts);
469 EXPECT_EQ(2u, parts.size());
470 EXPECT_EQ("x", parts[0]);
471 std::string decoded = UnescapeURLComponent(parts[1]
    [all...]
extension_updater.cc 108 std::vector<std::string> parts; local
109 parts.push_back("id=" + id);
110 parts.push_back("v=" + version);
111 parts.push_back("uc");
117 parts.push_back("ap=" + EscapeQueryParamValue(update_url_data, true));
139 parts.push_back("ping=" + EscapeQueryParamValue(ping_value, true));
143 extra += "x=" + EscapeQueryParamValue(JoinString(parts, '&'), true);
    [all...]
  /external/icu4c/common/
messagepattern.cpp 146 partsList(NULL), parts(NULL), partsLength(0),
154 partsList(NULL), parts(NULL), partsLength(0),
162 partsList(NULL), parts(NULL), partsLength(0),
180 parts=partsList->a.getAlias();
186 partsList(NULL), parts(NULL), partsLength(0),
218 parts=NULL;
228 parts=partsList->a.getAlias();
235 parts=partsList->a.getAlias();
318 // parts.equals(o.parts)
    [all...]
  /external/chromium/testing/gmock/scripts/generator/cpp/
ast.py 534 def DeclarationToParts(self, parts, needs_name_removed):
539 for i, t in enumerate(parts):
541 default = parts[i+1:]
542 name = parts[i-1].name
543 if name == ']' and parts[i-2].name == '[':
544 name = parts[i-3].name
546 parts = parts[:i-1]
549 if parts[-1].token_type == tokenize.NAME:
550 name = parts.pop().nam
    [all...]
  /external/chromium/chrome/browser/autocomplete/
search_provider.cc 393 const url_parse::Parsed& parts = input_.parts(); local
394 if (parts.username.is_nonempty() || parts.port.is_nonempty() ||
395 parts.query.is_nonempty() || parts.ref.is_nonempty())
402 parts.path.is_nonempty())
    [all...]
  /dalvik/vm/mterp/out/
InterpC-mips.cpp 158 union { s8 ll; u4 parts[2]; } conv; member in union:__anon873
161 conv.parts[0] = ptr[0];
162 conv.parts[1] = ptr[1];
175 union { s8 ll; u4 parts[2]; } conv; member in union:__anon874
179 ptr[0] = conv.parts[0];
180 ptr[1] = conv.parts[1];
190 union { double d; u4 parts[2]; } conv; member in union:__anon875
193 conv.parts[0] = ptr[0];
194 conv.parts[1] = ptr[1];
207 union { double d; u4 parts[2]; } conv member in union:__anon876
    [all...]
InterpC-x86.cpp 158 union { s8 ll; u4 parts[2]; } conv; member in union:__anon881
161 conv.parts[0] = ptr[0];
162 conv.parts[1] = ptr[1];
175 union { s8 ll; u4 parts[2]; } conv; member in union:__anon882
179 ptr[0] = conv.parts[0];
180 ptr[1] = conv.parts[1];
190 union { double d; u4 parts[2]; } conv; member in union:__anon883
193 conv.parts[0] = ptr[0];
194 conv.parts[1] = ptr[1];
207 union { double d; u4 parts[2]; } conv member in union:__anon884
    [all...]
  /packages/apps/Settings/src/com/android/settings/vpn2/
VpnDialog.java 286 String[] parts = address.split("/", 2); local
287 address = parts[0];
288 prefixLength = Integer.parseInt(parts[1]);
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/slider/
slider.edc 86 parts {
321 parts {
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
EventRecurrence.java 141 /** If set, validate the value of UNTIL parts. Minor performance impact. */
554 * The rule parts are not ordered in any particular sequence.
561 * (1) Split the string at ';' boundaries to get an array of rule "parts".
581 * - allows (but ignores) X-* parts
594 String[] parts; local
596 parts = recur.toUpperCase().split(";");
598 parts = recur.split(";");
600 for (String part : parts) {
    [all...]
  /external/v8/test/mjsunit/regress/
regress-117409.js 51 // Release mode will crash here when trying to visit parts of E as pointers.
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/combo/
combo.edc 74 parts {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
SMSDispatcher.java 579 * If this is the last part send the parts out to the application, otherwise
634 // We don't have all the parts yet, store this one away
649 // All the parts are in place, deal with them
675 // Remove the parts from the database
1254 ArrayList<String> parts; local
    [all...]
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebChromeClient.cpp 651 float value, float proportion, ScrollbarControlPartMask parts)
661 if (parts & BackButtonStartPart) // FIXME: Hyatt, what about BackButtonEndPart?
663 if (parts & BackTrackPart)
665 if (parts & ThumbPart)
667 if (parts & ForwardTrackPart)
669 if (parts & ForwardButtonStartPart) // FIXME: Hyatt, what about ForwardButtonEndPart?
  /external/webkit/PerformanceTests/SunSpider/tests/parse-only/
jquery-1.3.2.js     [all...]
  /external/libvpx/libvpx/examples/includes/geshi/
geshi.php 114 /** The starter for important parts of the source */
116 /** The ender for important parts of the source */
392 * Styles for important parts of the code
398 var $important_styles = 'font-weight: bold; color: red;'; // Styles for important parts of the code
2058 $parts = array(); variable
2195 $parts = array( variable
2211 $parts = array( variable
    [all...]
  /external/chromium/chrome/browser/
cookies_tree_model_unittest.cc 99 std::vector<std::string> parts; local
102 parts.push_back(cookie_list[i].Name());
103 return JoinString(parts, ',');
  /external/chromium/base/
string_util.h 512 BASE_API string16 JoinString(const std::vector<string16>& parts, char16 s);
513 BASE_API std::string JoinString(const std::vector<std::string>& parts, char s);
  /external/valgrind/main/cachegrind/
cg-x86-amd64.c 54 * array of pre-defined configurations for various parts of the memory
250 UInt parts = ((*(UInt *)&info[4] >> 12) & 0x3ff) + 1; local
255 c.size = assoc * parts * line_size * sets / 1024;
  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
PduPersister.java 361 PduPart[] parts = null; local
373 parts = new PduPart[partCount];
470 parts[partIdx++] = part;
478 return parts;
609 PduPart[] parts = loadParts(msgId); local
610 if (parts != null) {
611 int partsNum = parts.length;
613 body.addPart(parts[i]);
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/
__init__.py 182 parts = urlparse.urlparse(self.callback)
183 scheme, netloc, path, params, query, fragment = parts[:6]
493 parts = header.split(',')
494 for param in parts:
  /external/llvm/include/llvm/ADT/
APFloat.h 18 The library will work with bignum integers whose parts are any
70 integer parts. After normalization of a number of precision P the
446 integerPart *parts; member in union:llvm::APFloat::Significand

Completed in 744 milliseconds

1 2 3 4 5 67 8 91011>>