Searched defs:step (Results 126 - 150 of 440) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/translate/
H A Dchrome_translate_client.cc165 translate::TranslateStep step,
172 step = translate::TRANSLATE_STEP_TRANSLATE_ERROR;
176 if (step == translate::TRANSLATE_STEP_BEFORE_TRANSLATE) {
189 ShowBubble(step, error_type);
195 step != translate::TRANSLATE_STEP_BEFORE_TRANSLATE,
199 step,
308 translate::TranslateStep step,
317 TranslateBubbleFactory::Show(NULL, web_contents(), step, error_type);
335 if (step == translate::TRANSLATE_STEP_TRANSLATING ||
336 step
164 ShowTranslateUI( translate::TranslateStep step, const std::string source_language, const std::string target_language, translate::TranslateErrors::Type error_type, bool triggered_from_menu) argument
307 ShowBubble( translate::TranslateStep step, translate::TranslateErrors::Type error_type) argument
[all...]
/external/chromium_org/chrome/browser/ui/libgtk2ui/
H A Dgtk2_key_bindings_handler.cc289 GtkTextView* text_view, GtkMovementStep step, gint count,
295 switch (step) {
348 GtkTextView* text_view, GtkScrollStep step, gint count) {
288 MoveCursor( GtkTextView* text_view, GtkMovementStep step, gint count, gboolean extend_selection) argument
347 MoveViewport( GtkTextView* text_view, GtkScrollStep step, gint count) argument
/external/chromium_org/components/translate/core/browser/
H A Dtranslate_infobar_delegate.cc58 translate::TranslateStep step,
67 if (step != translate::TRANSLATE_STEP_TRANSLATE_ERROR) {
73 DCHECK(step == translate::TRANSLATE_STEP_TRANSLATING ||
74 step == translate::TRANSLATE_STEP_AFTER_TRANSLATE);
81 if (((step == translate::TRANSLATE_STEP_AFTER_TRANSLATE) ||
82 (step == translate::TRANSLATE_STEP_TRANSLATING)) &&
103 translate_manager, is_off_the_record, step, old_delegate,
316 translate::TranslateStep step,
324 step_(step),
53 Create( bool replace_existing_infobar, const base::WeakPtr<TranslateManager>& translate_manager, infobars::InfoBarManager* infobar_manager, bool is_off_the_record, translate::TranslateStep step, const std::string& original_language, const std::string& target_language, TranslateErrors::Type error_type, bool triggered_from_menu) argument
313 TranslateInfoBarDelegate( const base::WeakPtr<TranslateManager>& translate_manager, bool is_off_the_record, translate::TranslateStep step, TranslateInfoBarDelegate* old_delegate, const std::string& original_language, const std::string& target_language, TranslateErrors::Type error_type, bool triggered_from_menu) argument
/external/chromium_org/media/base/
H A Daudio_converter_unittest.cc56 double step = kSineCycles / static_cast<double>( local
58 expected_callback_.reset(new FakeAudioRenderCallback(step));
63 // Setup FakeAudioRenderCallback step to compensate for resampling.
66 double step = kSineCycles / (scale_factor * local
70 fake_callbacks_.push_back(new FakeAudioRenderCallback(step));
H A Daudio_renderer_mixer_unittest.cc65 double step = kSineCycles / static_cast<double>( local
67 expected_callback_.reset(new FakeAudioRenderCallback(step));
80 // Setup FakeAudioRenderCallback step to compensate for resampling.
83 double step = kSineCycles / (scale_factor * local
87 fake_callbacks_.push_back(new FakeAudioRenderCallback(step));
125 // during the verification step below.
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DNumberInputType.cpp167 const Decimal step = parseToDecimalForNumberType(stepString, 1); local
168 ASSERT(step.isFinite());
170 RealNumberRenderSize size = calculateRenderSize(minimum).max(calculateRenderSize(maximum).max(calculateRenderSize(step)));
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DDateTimeFieldElements.cpp122 DateTimeHourFieldElementBase::DateTimeHourFieldElementBase(Document& document, FieldOwner& fieldOwner, const Range& range, const Range& hardLimits, const Step& step) argument
123 : DateTimeNumericFieldElement(document, fieldOwner, range, hardLimits, "--", step)
157 DateTimeHour11FieldElement::DateTimeHour11FieldElement(Document& document, FieldOwner& fieldOwner, const Range& range, const Step& step) argument
158 : DateTimeHourFieldElementBase(document, fieldOwner, range, Range(0, 11), step)
162 PassRefPtrWillBeRawPtr<DateTimeHour11FieldElement> DateTimeHour11FieldElement::create(Document& document, FieldOwner& fieldOwner, const Range& hour23Range, const Step& step) argument
175 RefPtrWillBeRawPtr<DateTimeHour11FieldElement> field = adoptRefWillBeNoop(new DateTimeHour11FieldElement(document, fieldOwner, range, step));
198 DateTimeHour12FieldElement::DateTimeHour12FieldElement(Document& document, FieldOwner& fieldOwner, const Range& range, const Step& step) argument
199 : DateTimeHourFieldElementBase(document, fieldOwner, range, Range(1, 12), step)
203 PassRefPtrWillBeRawPtr<DateTimeHour12FieldElement> DateTimeHour12FieldElement::create(Document& document, FieldOwner& fieldOwner, const Range& hour23Range, const Step& step) argument
223 RefPtrWillBeRawPtr<DateTimeHour12FieldElement> field = adoptRefWillBeNoop(new DateTimeHour12FieldElement(document, fieldOwner, range, step));
241 DateTimeHour23FieldElement(Document& document, FieldOwner& fieldOwner, const Range& range, const Step& step) argument
246 create(Document& document, FieldOwner& fieldOwner, const Range& hour23Range, const Step& step) argument
277 DateTimeHour24FieldElement(Document& document, FieldOwner& fieldOwner, const Range& range, const Step& step) argument
282 create(Document& document, FieldOwner& fieldOwner, const Range& hour23Range, const Step& step) argument
324 DateTimeMillisecondFieldElement(Document& document, FieldOwner& fieldOwner, const Range& range, const Step& step) argument
329 create(Document& document, FieldOwner& fieldOwner, const Range& range, const Step& step) argument
365 DateTimeMinuteFieldElement(Document& document, FieldOwner& fieldOwner, const Range& range, const Step& step) argument
370 create(Document& document, FieldOwner& fieldOwner, const Range& range, const Step& step) argument
447 DateTimeSecondFieldElement(Document& document, FieldOwner& fieldOwner, const Range& range, const Step& step) argument
452 create(Document& document, FieldOwner& fieldOwner, const Range& range, const Step& step) argument
[all...]
H A DDateTimeNumericFieldElement.cpp52 DateTimeNumericFieldElement::DateTimeNumericFieldElement(Document& document, FieldOwner& fieldOwner, const Range& range, const Range& hardLimits, const String& placeholder, const DateTimeNumericFieldElement::Step& step) argument
57 , m_step(step)
61 ASSERT(m_step.step);
228 n = n / m_step.step * m_step.step;
230 n = -((-n + m_step.step - 1) / m_step.step * m_step.step);
238 n = (n + m_step.step - 1) / m_step.step * m_ste
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderGeometryMap.cpp67 // If container is the root RenderView (step 0) we want to apply its fixed position offset.
256 RenderGeometryMapStep& step = m_mapping[m_insertionPosition]; local
257 step.m_offset = offsetFromContainer;
258 step.m_offsetForFixedPosition = offsetForFixedPosition;
260 stepInserted(step);
271 RenderGeometryMapStep& step = m_mapping[m_insertionPosition]; local
272 step.m_offsetForFixedPosition = offsetForFixedPosition;
275 step.m_transform = adoptPtr(new TransformationMatrix(t));
277 step.m_offset = LayoutSize(t.e(), t.f());
279 stepInserted(step);
298 stepInserted(const RenderGeometryMapStep& step) argument
312 stepRemoved(const RenderGeometryMapStep& step) argument
[all...]
/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dtransform.h219 int step = ToUpperCase(uppercase, len); local
220 uppercase += step;
221 len -= step;
/external/chromium_org/third_party/libwebp/utils/
H A Dhuffman.c190 int step = HUFF_LUT_BITS; local
218 if (--step == 0) {
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_flow.c242 LLVMValueRef step,
250 if (!step)
251 step = LLVMConstInt(LLVMTypeOf(end), 1, 0);
253 next = LLVMBuildAdd(builder, state->counter, step, "");
272 LLVMValueRef step)
274 lp_build_loop_end_cond(state, end, step, LLVMIntNE);
280 * e.g. for(i = start; i cmp_op end; i += step)
286 * \param step value added to iterator at end of each loop
294 LLVMValueRef step)
299 assert(LLVMTypeOf(start) == LLVMTypeOf(step));
240 lp_build_loop_end_cond(struct lp_build_loop_state *state, LLVMValueRef end, LLVMValueRef step, LLVMIntPredicate llvm_cond) argument
270 lp_build_loop_end(struct lp_build_loop_state *state, LLVMValueRef end, LLVMValueRef step) argument
289 lp_build_for_loop_begin(struct lp_build_for_loop_state *state, struct gallivm_state *gallivm, LLVMValueRef start, LLVMIntPredicate cmp_op, LLVMValueRef end, LLVMValueRef step) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rbug/
H A Drbug_context.c156 rbug_block_t step,
166 LEN(4); /* step */
178 WRITE(4, rbug_block_t, step); /* step */
568 READ(4, rbug_block_t, step); /* step */
154 rbug_send_context_draw_step(struct rbug_connection *__con, rbug_context_t context, rbug_block_t step, uint32_t *__serial) argument
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
H A Dbase.hpp144 step(F op, S state, Its its, Args... args) { function in struct:clover::__iter_helper
145 return __iter_helper<T, S, N - 1>::step(
154 step(F op, S state, Its its, Args... args) { function in struct:clover::__iter_helper
165 step(F op, __empty state, Its its, Args... args) { function in struct:clover::__iter_helper
190 __iter_helper<void, __empty, sizeof...(Its)>::step(
214 ::step(op, {}, std::tie(it0, its...)));
231 a = __iter_helper<T, T, sizeof...(Its)>::step(
248 if (__iter_helper<bool, __empty, sizeof...(Its)>::step(
/external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/arm64/
H A DComplexToRealFixup.S61 #define step x8 define
129 lsl step,subFFTSize, #3 // step = N/2 * 8 bytes
132 SUB twStep,step,subFFTSize,LSL #1
139 st1 {dY0r},[argDst],step
145 SUB argDst,argDst,step
149 SUB step,step,#24
165 ld2 {dX0r,dX0i},[pSrc],step
174 SUB pSrc,pSrc,step
[all...]
H A DarmSP_FFTInv_CCSToR_F32_preTwiddleRadix2_s.S65 #define step x8 define
121 lsl step, subFFTNum, #2 // step = N/2 * 8 bytes
131 ld1 {dX0},[pSrc],step
132 ADD pOut1,pOut,step // pOut1 = pOut+ N/2*8 bytes
136 SUB twStep,step,size,LSL #1
156 SUB pSrc,pSrc,step
176 SUB step,step,#24
183 ld2 {dX0r,dX0i},[pSrc],step
[all...]
/external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/armv7/
H A DarmSP_FFTInv_CCSToR_F32_preTwiddleRadix2_unsafe_s.S73 #define step r3 define
121 MOV step,size,LSL #3 @// step = N/2 * 8 bytes
124 ADD pOut1,pOut,step @// pOut1 = pOut+ N/2*8 bytes
126 SUB twStep,step,size,LSL #1
139 add pSrc, step @// step = N/2*8 bytes
140 vldm.f32 pSrc, {x1r, x1i} @// {x1r, x1i} = [pSrc, step]
141 sub pSrc, step
168 SUB step,ste
[all...]
H A DomxSP_FFTFwd_RToCCS_F32_Sfs_s.S78 #define step r3 define
201 @// step = N/2 * 8 bytes
202 MOV step,subFFTSize,LSL #3
204 SUB twStep,step,subFFTSize,LSL #1
227 add argDst, step
228 vstm.f32 argDst, {x0r, x0i} @// {x0r,x0i}->[argDst, step]
229 sub argDst, step
247 SUB step,step,#16 @// (N/2-2)*8 bytes
249 add pSrc, step
[all...]
/external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/neon/
H A DarmSP_FFTInv_CCSToR_F32_preTwiddleRadix2_unsafe_s.S79 #define step r8 define
142 MOV step,N,LSL #2 @// step = N/2 * 8 bytes
152 VLD1 dX0,[pSrc],step
153 ADD pOut1,pOut,step @// pOut1 = pOut+ N/2*8 bytes
157 SUB twStep,step,size,LSL #1
174 SUB pSrc,pSrc,step
194 SUB step,step,#24
201 VLD2 {dX0r,dX0i},[pSrc],step
[all...]
H A DarmSP_FFTInv_CCSToR_S32_preTwiddleRadix2_unsafe_s.S86 #define step r8 define
148 MOV step,N,LSL #2 @// step = N/2 * 8 bytes
157 VLD1 dX0,[pSrc],step
158 ADD pOut1,pOut,step @// pOut1 = pOut+ N/2*8 bytes
161 SUB twStep,step,size,LSL #1 @// twStep = 3N/8 * 8 bytes pointing to W^1
180 SUB pSrc,pSrc,step
198 SUB step,step,#24
205 VLD2 {dX0r,dX0i},[pSrc],step
[all...]
/external/chromium_org/third_party/openmax_dl/dl/sp/src/x86/
H A Dx86SP_FFT_CToC_FC32_Fwd_Radix4_ms_sse.c119 OMX_INT step = sub_num >> 1; local
166 const OMX_F32 *tw1 = twiddle + grp * step;
167 const OMX_F32 *tw2 = tw1 + grp * step;
168 const OMX_F32 *tw3 = tw2 + grp * step;
H A Dx86SP_FFT_CToC_FC32_Inv_Radix4_ms_sse.c119 OMX_INT step = sub_num >> 1; local
166 const OMX_F32 *tw1 = twiddle + grp * step;
167 const OMX_F32 *tw2 = tw1 + grp * step;
168 const OMX_F32 *tw3 = tw2 + grp * step;
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DEdgeDemo.cpp40 static bool drawCircles(SkCanvas* canvas, int step, bool useOld) argument
49 scales[c] = abs(10 - (step + c * 4) % 21);
50 angles[c] = (step + c * 6) % 600;
51 locs[c * 2] = abs(130 - (step + c * 9) % 261);
52 locs[c * 2 + 1] = abs(170 - (step + c * 11) % 341);
54 pts[c * 8 + p * 2] = abs(90 - ((step + c * 121 + p * 13) % 190));
55 pts[c * 8 + p * 2 + 1] = abs(110 - ((step + c * 223 + p * 17) % 230));
103 static bool drawStars(SkCanvas* canvas, int step, bool useOld) argument
125 locs[s].fX = (int) (step * (1.3f * (s + 1) / stars) + s * 121) % (starW * 2);
131 locs[s].fY = (int) (step * (1.
269 drawLetters(SkCanvas* canvas, int step, bool useOld) argument
339 DrawEdgeDemo(SkCanvas* canvas, int step, bool useOld) argument
[all...]
/external/chromium_org/third_party/skia/tests/
H A DPathOpsCubicLineIntersectionIdeas.cpp54 static double binary_search(const SkDCubic& cubic, double step, const SkDPoint& pt, double t, argument
56 double firstStep = step;
66 if (step == 0) {
67 SkDebugf("binary search failed: step=%1.9g cubic=", firstStep);
74 double lastStep = step;
75 step /= 2;
80 // use larger x/y difference to choose step
82 t -= step;
92 t += step;
205 double step
[all...]
/external/clang/test/OpenMP/
H A Dfor_loop_messages.cpp181 // Ok - step was converted to integer type.
225 // expected-note@+3 {{loop step is expected to be positive due to this condition}}
232 // expected-note@+3 {{loop step is expected to be positive due to this condition}}
239 // expected-note@+3 {{loop step is expected to be positive due to this condition}}
246 // expected-note@+3 {{loop step is expected to be positive due to this condition}}
253 // expected-note@+3 {{loop step is expected to be negative due to this condition}}
260 // expected-note@+3 {{loop step is expected to be positive due to this condition}}
267 // expected-note@+3 {{loop step is expected to be negative due to this condition}}
274 // expected-note@+3 {{loop step is expected to be positive due to this condition}}
321 // expected-note@+3 {{loop step i
547 static IT step() { function in class:TC
[all...]

Completed in 5591 milliseconds

1234567891011>>