HomeSort by relevance Sort by last modified time
    Searched refs:pairs (Results 126 - 150 of 243) sorted by null

1 2 3 4 56 7 8 910

  /external/skia/src/svg/
SkSVGPaintState.cpp 79 // iterate through colon / semi-colon delimited pairs
80 int pairs = SkParse::Count(attrValue, ';'); local
93 } while (--pairs);
  /external/chromium/chrome/browser/extensions/
extension_updater_unittest.cc 317 // puts the key/value pairs into |result|. For keys with no value, the empty
322 std::vector<std::string> pairs; local
323 base::SplitString(params, '&', &pairs);
324 for (size_t i = 0; i < pairs.size(); i++) {
326 base::SplitString(pairs[i], '=', &key_val);
    [all...]
  /external/chromium_org/chrome/browser/ui/sync/
one_click_signin_helper.cc 855 std::vector<std::pair<std::string, std::string> > pairs
    [all...]
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
genlingware.pl 25 5. header fields (space separated) (key/value pairs)
  /external/chromium_org/gpu/command_buffer/client/
gles2_implementation_unittest.cc 1954 const PNameValue pairs[] = { local
2007 const PNameValue pairs[] = {{GL_ACTIVE_TEXTURE, GL_TEXTURE4, }, local
2425 const PNameValue pairs[] = {{GL_TEXTURE_BINDING_2D, 1, }, local
    [all...]
  /build/core/
Makefile 26 # filter out the duplicate <source file>:<dest file> pairs.
62 $(call collapse-pairs, $(ADDITIONAL_DEFAULT_PROPERTIES))
64 $(call collapse-pairs, $(PRODUCT_DEFAULT_PROPERTY_OVERRIDES))
65 ADDITIONAL_DEFAULT_PROPERTIES := $(call uniq-pairs-by-first-component, \
83 $(call collapse-pairs, $(ADDITIONAL_BUILD_PROPERTIES))
84 ADDITIONAL_BUILD_PROPERTIES := $(call uniq-pairs-by-first-component, \
608 # $(2): additional "key=value" pairs to append to the dictionary file.
    [all...]
  /external/javassist/src/main/javassist/compiler/
CodeGen.java 522 long[] pairs = new long[npairs]; local
533 pairs[ipairs++]
542 Arrays.sort(pairs);
545 bytecode.write32bit(pc, (int)(pairs[i] >>> 32));
546 bytecode.write32bit(pc + 4, (int)pairs[i]);
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/howto/sandbox/
handlebars-1.0.0.beta.6.js 579 Handlebars.AST.HashNode = function(pairs) {
581 this.pairs = pairs;
875 var pairs = hash.pairs, pair, val;
879 for(var i=0, l=pairs.length; i<l; i++) {
880 pair = pairs[i];
    [all...]
  /external/chromium_org/chrome/browser/extensions/updater/
extension_updater_unittest.cc 444 // puts the key/value pairs into |result|. For keys with no value, the empty
449 std::vector<std::string> pairs; local
450 base::SplitString(params, '&', &pairs);
451 for (size_t i = 0; i < pairs.size(); i++) {
453 base::SplitString(pairs[i], '=', &key_val);
    [all...]
  /external/chromium_org/chrome/browser/resources/local_ntp/
most_visited_util.js 56 * @return {Object} Dictionary containing name value pairs for URL.
  /external/chromium_org/content/browser/resources/media/
webrtc_internals.js 249 * @param {!Object.<string>} update Key-value pairs describing the status of the
  /external/chromium_org/ppapi/native_client/tools/browser_tester/browserdata/
nacltest.js 30 var pairs = encoded.replace(/\+/g, ' ').split('&');
31 for (var p = 0; p < pairs.length; p++) {
32 var pair = pairs[p].split('=');
34 throw "Malformed argument key/value pair: '" + pairs[p] + "'";
  /external/chromium_org/remoting/webapp/
xhr.js 22 * @param {Object.<string>} paramHash The parameter key/value pairs.
  /external/chromium_org/v8/tools/
codemap.js 233 * Returns an array of pairs of all dynamic code entries and their addresses.
  /external/libvpx/libvpx/vp8/common/arm/neon/
variance_neon.asm 46 ;VPADAL adds adjacent pairs of elements of a vector, and accumulates
  /external/libvpx/libvpx/vp8/encoder/arm/armv6/
vp8_fast_quantize_b_armv6.asm 37 ; quantized coefficient pairs.
  /external/v8/tools/
codemap.js 233 * Returns an array of pairs of all dynamic code entries and their addresses.
  /art/runtime/
debugger.cc 331 * Handle one of the JDWP name/value pairs.
414 std::vector<std::string> pairs; local
415 Split(options, ',', pairs);
417 for (size_t i = 0; i < pairs.size(); ++i) {
418 std::string::size_type equals = pairs[i].find('=');
420 LOG(ERROR) << "Can't parse JDWP option '" << pairs[i] << "' in '" << options << "'";
423 ParseJdwpOption(pairs[i].substr(0, equals), pairs[i].substr(equals + 1));
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
cmsccoll.c 3848 static const char* const pairs[][2] = { local
    [all...]
  /external/chromium_org/third_party/x86inc/
x86inc.asm 643 %macro PERMUTE 2-* ; takes a list of pairs to swap
658 %macro SWAP 2-* ; swaps a single chain (sometimes more concise than pairs)
  /external/v8/src/
full-codegen.h 380 void DeclareGlobals(Handle<FixedArray> pairs);
809 // A map from property names to getter/setter pairs allocated in the zone.
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/
popuplib.js 200 // processes key value pairs, escaping any input;
  /external/chromium_org/chrome/browser/resources/net_internals/
timeline_data_series.js 14 * A TimelineDataSeries collects an ordered series of (time, value) pairs,
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/
popuplib.js 200 // processes key value pairs, escaping any input;
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
history.js 254 // Sets the page state. Takes varargs of key, value pairs.

Completed in 1615 milliseconds

1 2 3 4 56 7 8 910