Searched defs:bound (Results 1 - 25 of 85) sorted by relevance

1234

/external/chromium_org/tools/telemetry/telemetry/page/actions/
H A Dgesture_common.js13 var bound = { left: client_rect.left,
23 bound.left += frame_bound.left;
24 bound.top += frame_bound.top;
28 return bound;
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dregress-serialized-slots.js41 function bound()
48 return bound;
/external/bison/lib/
H A Dgetdtablesize.c71 The number N can also be obtained as the upper bound for
77 unsigned int bound; local
78 for (bound = 0x10000; _setmaxstdio (bound) < 0; bound = bound / 2)
81 dtablesize = bound;
/external/chromium_org/native_client_sdk/src/libraries/ppapi_simple/
H A Dps_context_2d.h19 int bound; member in struct:__anon8930
/external/valgrind/main/drd/tests/
H A Domp_prime.c19 int bound = floor(sqrt ((double)v)) + 1; local
21 for (i = 2; i < bound; i++)
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dutil.rb127 # Returns self if above the given lower bound, or
129 # otherwise returns the the bound of which the
132 # 4.bound(3) #=> 4
133 # 4.bound(5) #=> 5
134 # 4.bound(2,7) #=> 4
135 # 9.bound(2,7) #=> 7
136 # 1.bound(2,7) #=> 2
140 def bound( lower, upper=nil ) method in class:Integer
/external/chromium_org/media/cast/logging/
H A Dreceiver_time_offset_estimator_impl.h51 // to calculate an upper bound on the difference between the clocks
66 base::TimeDelta bound() const { return bound_; } function in class:media::cast::ReceiverTimeOffsetEstimatorImpl::BoundCalculator
/external/chromium_org/net/base/
H A Dcapturing_net_log.h127 // bound() method.
134 BoundNetLog bound() const { return net_log_; } function in class:net::CapturingBoundNetLog
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DExceptionMessages.h71 static String indexExceedsMaximumBound(const char* name, NumberType given, NumberType bound) argument
73 bool eq = given == bound;
81 result.appendLiteral("the maximum bound (");
82 result.append(formatNumber(bound));
88 static String indexExceedsMinimumBound(const char* name, NumberType given, NumberType bound) argument
90 bool eq = given == bound;
98 result.appendLiteral("the minimum bound (");
99 result.append(formatNumber(bound));
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBKeyRange.cpp101 IDBKey* bound = scriptValueToIDBKey(toIsolate(context), boundValue); local
102 if (!bound || !bound->isValid()) {
107 return IDBKeyRange::create(bound, 0, open ? LowerBoundOpen : LowerBoundClosed, UpperBoundOpen);
112 IDBKey* bound = scriptValueToIDBKey(toIsolate(context), boundValue); local
113 if (!bound || !bound->isValid()) {
118 return IDBKeyRange::create(0, bound, LowerBoundOpen, open ? UpperBoundOpen : UpperBoundClosed);
121 IDBKeyRange* IDBKeyRange::bound(ExecutionContext* context, const ScriptValue& lowerValue, const ScriptValue& upperValue, bool lowerOpen, bool upperOpen, ExceptionState& exceptionState) function in class:blink::IDBKeyRange
/external/chromium_org/third_party/skia/tests/
H A DDrawTextTest.cpp19 static void create(SkBitmap* bm, SkIRect bound) { argument
20 bm->allocN32Pixels(bound.width(), bound.height());
H A DClipCacheTest.cpp107 const SkIRect& bound) {
114 REPORTER_ASSERT(reporter, bound == cacheBound);
103 check_state(skiatest::Reporter* reporter, const GrClipMaskCache& cache, const SkClipStack& clip, GrTexture* mask, const SkIRect& bound) argument
H A DFontHostStreamTest.cpp24 static void create(SkBitmap* bm, SkIRect bound) { argument
25 bm->allocN32Pixels(bound.width(), bound.height());
/external/skia/tests/
H A DDrawTextTest.cpp19 static void create(SkBitmap* bm, SkIRect bound) { argument
20 bm->allocN32Pixels(bound.width(), bound.height());
H A DClipCacheTest.cpp107 const SkIRect& bound) {
114 REPORTER_ASSERT(reporter, bound == cacheBound);
103 check_state(skiatest::Reporter* reporter, const GrClipMaskCache& cache, const SkClipStack& clip, GrTexture* mask, const SkIRect& bound) argument
H A DFontHostStreamTest.cpp23 static void create(SkBitmap* bm, SkIRect bound) { argument
24 bm->allocN32Pixels(bound.width(), bound.height());
/external/smack/src/org/xbill/DNS/
H A DUDPClient.java43 private boolean bound = false; field in class:UDPClient
76 bound = true;
91 if (bound)
98 bound = true;
104 if (!bound)
/external/bison/src/
H A Dlocation.c217 boundary_set_from_string (boundary *bound, char *loc_str) argument
224 bound->column = atoi (delim+1);
228 bound->line = atoi (delim+1);
229 bound->file = uniqstr_new (loc_str);
/external/chromium_org/mojo/public/cpp/bindings/lib/
H A Dinterface_impl_internal.h100 // If the the instance is not bound to the pipe, the instance might choose
104 bool bound = instance_bound_to_pipe_; variable
106 if (!bound)
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DCharacter.cpp68 const T* bound = std::upper_bound(&intervalList[0], &intervalList[size], value); variable
69 if ((bound - intervalList) % 2 == 1)
71 return bound > intervalList && *(bound - 1) == value;
/external/chromium_org/third_party/mesa/src/src/egl/main/
H A Deglsurface.c50 EGLint bound = surf->Config->MaxSwapInterval; local
51 if (interval >= bound) {
52 interval = bound;
55 bound = surf->Config->MinSwapInterval;
56 if (interval < bound)
57 interval = bound;
/external/chromium_org/third_party/skia/src/gpu/
H A DGrClipMaskCache.h118 const SkIRect& bound) {
127 back->acquireMask(fContext, clipGenID, desc, bound);
162 void getLastBound(SkIRect* bound) const {
166 bound->setEmpty();
172 *bound = back->fLastBound;
203 const SkIRect& bound) {
209 fLastBound = bound;
116 acquireMask(int32_t clipGenID, const GrTextureDesc& desc, const SkIRect& bound) argument
200 acquireMask(GrContext* context, int32_t clipGenID, const GrTextureDesc& desc, const SkIRect& bound) argument
H A DGrLayerHoister.cpp180 SkRect bound = SkRect::MakeXYWH(SkIntToScalar(layer->rect().fLeft), local
184 atlasCanvas->clipRect(bound);
188 atlasCanvas->drawRect(bound, paint);
196 initialCTM.postTranslate(bound.fLeft, bound.fTop);
200 atlasCanvas->translate(bound.fLeft, bound.fTop);
203 SkRecordPartialDraw(*pict->fRecord.get(), atlasCanvas, bound,
225 SkRect bound = SkRect::MakeXYWH(SkIntToScalar(layer->rect().fLeft), local
230 layerCanvas->clipRect(bound); // TOD
[all...]
/external/mesa3d/src/egl/main/
H A Deglsurface.c50 EGLint bound = surf->Config->MaxSwapInterval; local
51 if (interval >= bound) {
52 interval = bound;
55 bound = surf->Config->MinSwapInterval;
56 if (interval < bound)
57 interval = bound;
/external/skia/src/gpu/
H A DGrClipMaskCache.h117 const SkIRect& bound) {
126 back->acquireMask(fContext, clipGenID, desc, bound);
161 void getLastBound(SkIRect* bound) const {
165 bound->setEmpty();
171 *bound = back->fLastBound;
202 const SkIRect& bound) {
208 fLastBound = bound;
115 acquireMask(int32_t clipGenID, const GrTextureDesc& desc, const SkIRect& bound) argument
199 acquireMask(GrContext* context, int32_t clipGenID, const GrTextureDesc& desc, const SkIRect& bound) argument

Completed in 4199 milliseconds

1234