Searched defs:accumulate (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/v8/test/webkit/fast/js/
H A Dregexp-lastindex.js29 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/core/rendering/
H A DHitTestingTransformState.cpp34 void HitTestingTransformState::translate(int x, int y, TransformAccumulation accumulate) argument
37 if (accumulate == FlattenTransform)
40 m_accumulatingTransform = accumulate == AccumulateTransform;
43 void HitTestingTransformState::applyTransform(const TransformationMatrix& transformFromContainer, TransformAccumulation accumulate) argument
46 if (accumulate == FlattenTransform)
49 m_accumulatingTransform = accumulate == AccumulateTransform;
H A DRenderGeometryMap.cpp90 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/platform/audio/
H A DReverbAccumulationBuffer.cpp81 int ReverbAccumulationBuffer::accumulate(float* source, size_t numberOfFrames, int* readIndex, size_t delayFrames) function in class:WebCore::ReverbAccumulationBuffer
/external/chromium_org/tools/deep_memory_profiler/
H A Daccumulate.py6 # 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/third_party/WebKit/Source/platform/geometry/
H A DTransformState.cpp70 void TransformState::move(const LayoutSize& offset, TransformAccumulation accumulate) argument
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) argument
108 applyTransform(transformFromContainer.toTransformationMatrix(), accumulate, wasClamped);
111 void TransformState::applyTransform(const TransformationMatrix& transformFromContainer, TransformAccumulation accumulate, bool* wasClamped) argument
117 move(LayoutSize(transformFromContainer.e(), transformFromContainer.f()), accumulate); local
129 } else if (accumulate == AccumulateTransform) {
130 // Make one if we started to accumulate
[all...]
H A DTransformState.h85 void move(LayoutUnit x, LayoutUnit y, TransformAccumulation accumulate = FlattenTransform)
87 move(LayoutSize(x, y), accumulate); local
/external/chromium_org/v8/test/mjsunit/
H A Darray-reduce.js103 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/libppp/src/
H A Dtcpmss.c104 int accumulate; local
133 accumulate = *mss;
135 accumulate -= *mss;
136 ADJUST_CHECKSUM(accumulate, tc->th_sum);
/external/stlport/stlport/stl/
H A D_numeric.h42 _Tp accumulate(_InputIterator __first, _InputIterator __last, _Tp _Init) { function
51 _Tp accumulate(_InputIterator __first, _InputIterator __last, _Tp _Init, function
/external/v8/test/mjsunit/
H A Darray-reduce.js103 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/chromium_org/third_party/WebKit/Source/web/tests/
H A DScrollAnimatorNoneTest.cpp356 double accumulate = 0; local
364 accumulate += (oldPos + newPos) / 2 * (step / time);
374 EXPECT_NEAR(accumulate, area, 1.0);
379 accumulate = releaseArea(curve, 0, 1) * kPosition;
386 accumulate -= (kPosition - (oldPos + newPos) / 2) * (step / time);
396 EXPECT_NEAR(accumulate, area, 1.0);
/external/chromium/chrome/browser/autofill/
H A Dautofill_profile.cc108 string16 accumulate; local
111 accumulate += ASCIIToUTF16(" ");
112 accumulate += values[i];
114 return accumulate;
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_profile.cc114 base::string16 accumulate; local
117 accumulate += ASCIIToUTF16(" ");
118 accumulate += values[i];
120 return accumulate;
/external/robolectric/lib/main/
H A Djson-20080701.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/json/ org/json/CDL.class CDL. ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 4133 milliseconds