HomeSort by relevance Sort by last modified time
    Searched defs:accumulate (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/v8/test/webkit/fast/js/
regexp-lastindex.js 29 var accumulate = ""; variable
31 shouldBe('while (match = re.exec(" abcdefg")) accumulate += match + "; "; accumulate', '"abcdefg; "');
34 accumulate = "";
35 shouldBe('while (match = re.exec("123456789")) accumulate += match + "; "; accumulate', '"1; 2; 3; 4; 5; 6; 7; 8; 9; "');
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
ReverbAccumulationBuffer.cpp 81 int ReverbAccumulationBuffer::accumulate(float* source, size_t numberOfFrames, int* readIndex, size_t delayFrames) function in class:blink::ReverbAccumulationBuffer
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
TransformState.cpp 70 void TransformState::move(const LayoutSize& offset, TransformAccumulation accumulate)
72 if (accumulate == FlattenTransform || !m_accumulatedTransform) {
81 if (accumulate == FlattenTransform)
88 m_accumulatingTransform = accumulate == AccumulateTransform;
106 void TransformState::applyTransform(const AffineTransform& transformFromContainer, TransformAccumulation accumulate, bool* wasClamped)
108 applyTransform(transformFromContainer.toTransformationMatrix(), accumulate, wasClamped);
111 void TransformState::applyTransform(const TransformationMatrix& transformFromContainer, TransformAccumulation accumulate, bool* wasClamped)
117 move(LayoutSize(transformFromContainer.e(), transformFromContainer.f()), accumulate); local
129 } else if (accumulate == AccumulateTransform) {
130 // Make one if we started to accumulate
    [all...]
TransformState.h 85 void move(LayoutUnit x, LayoutUnit y, TransformAccumulation accumulate = FlattenTransform)
87 move(LayoutSize(x, y), accumulate); local
  /external/chromium_org/tools/deep_memory_profiler/
accumulate.py 6 # A script to accumulate values from the 'dmprof cat' command into CSV or else.
9 # ./accumulate.py -f <format> -t <template-name> < input.json > output
12 # accumulate.py dumps a similar file to "dmprof csv|json". If "tree" is given,
13 # accumulate.py dumps a human-readable breakdown tree.
26 LOGGER = logging.getLogger('dmprof-accumulate')
44 def accumulate(template, snapshot, units_dict, target_units): function
83 category_tree[rule], accounted_total, subremainder_units = accumulate(
97 category_tree[rule], accounted_total, _ = accumulate(
203 """Does the main work: accumulate for every snapshot and print a result."""
236 category_tree, _, _ = accumulate(
    [all...]
  /external/chromium_org/v8/test/mjsunit/
array-reduce.js 103 function accumulate(acc, elem, i) { acc[i] = elem; return acc; } function
131 simpleArray, accumulate, []);
137 testReduce("reduce", "EmptyReduceAccumulate", [], [], [], accumulate, []);
142 testReduce("reduce", "EmptyReduceAccumulateNoInit", [], [], [[]], accumulate);
168 simpleSparseArray, accumulate, []);
175 [], [], [,,[],,], accumulate);
210 verySparseArray, accumulate, []);
232 verySparseArray, accumulate);
259 simpleArray, accumulate, []);
266 [], [], accumulate, []);
    [all...]
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
XML.java 164 context.accumulate("content", s);
229 o.accumulate(s, JSONObject.stringToValue((String)t));
232 o.accumulate(s, "");
241 context.accumulate(n, o);
257 o.accumulate("content", JSONObject.stringToValue(s));
265 context.accumulate(n, "");
268 context.accumulate(n, o.opt("content"));
270 context.accumulate(n, o);
JSONML.java 169 newjo.accumulate(attribute, JSONObject.stringToValue((String)token));
172 newjo.accumulate(attribute, "");
JSONObject.java 425 * Accumulate values under a key. It is similar to the put method except
436 public JSONObject accumulate(String key, Object value) method in class:JSONObject
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderGeometryMap.cpp 90 TransformState::TransformAccumulation accumulate = currentStep.m_accumulatingTransform ? TransformState::AccumulateTransform : TransformState::FlattenTransform; local
92 transformState.applyTransform(*currentStep.m_transform.get(), accumulate);
94 transformState.move(currentStep.m_offset.width(), currentStep.m_offset.height(), accumulate);
  /external/chromium_org/third_party/WebKit/Source/web/tests/
ScrollAnimatorNoneTest.cpp 359 double accumulate = 0; local
367 accumulate += (oldPos + newPos) / 2 * (step / time);
377 EXPECT_NEAR(accumulate, area, 1.0);
382 accumulate = releaseArea(curve, 0, 1) * kPosition;
389 accumulate -= (kPosition - (oldPos + newPos) / 2) * (step / time);
399 EXPECT_NEAR(accumulate, area, 1.0);
    [all...]
  /development/samples/Vault/src/com/example/android/vault/
VaultProvider.java 314 parentMeta.accumulate(KEY_CHILDREN, childDocId);
  /external/chromium_org/components/autofill/core/browser/
autofill_profile.cc 130 base::string16 accumulate; local
133 accumulate += ASCIIToUTF16(" ");
134 accumulate += values[i];
136 return accumulate;
    [all...]
  /external/libpng/contrib/libtests/
pngstest.c 316 #define ACCUMULATE 64
335 if (opts & ACCUMULATE)
336 printf(" --accumulate");
2156 int accumulate; \/* Accumlate component errors (don't log) *\/ member in struct:__anon4168
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/testlibs/
json-20090211.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 

Completed in 699 milliseconds