HomeSort by relevance Sort by last modified time
    Searched refs:bound (Results 1 - 25 of 204) sorted by null

1 2 3 4 5 6 7 8 9

  /external/bison/lib/
getdtablesize.c 71 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/third_party/WebKit/Source/modules/indexeddb/
IDBKeyRange.idl 35 [CallWith=ExecutionContext, RaisesException] static IDBKeyRange lowerBound(any bound, optional boolean open = false);
36 [CallWith=ExecutionContext, RaisesException] static IDBKeyRange upperBound(any bound, optional boolean open = false);
37 [CallWith=ExecutionContext, RaisesException] static IDBKeyRange bound(any lower, any upper, optional boolean lowerOpen = false, optional boolean upperOpen = false);
IDBKeyRange.cpp 101 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
IDBKeyRange.h 70 static IDBKeyRange* lowerBound(ExecutionContext*, const ScriptValue& bound, bool open, ExceptionState&);
71 static IDBKeyRange* upperBound(ExecutionContext*, const ScriptValue& bound, bool open, ExceptionState&);
72 static IDBKeyRange* bound(ExecutionContext*, const ScriptValue& lower, const ScriptValue& upper, bool lowerOpen, bool upperOpen, ExceptionState&);
  /external/libcxx/test/algorithms/alg.sorting/alg.binary.search/lower.bound/
Android.mk 17 test_makefile := external/libcxx/test/algorithms/alg.sorting/alg.binary.search/lower.bound/Android.mk
19 test_name := algorithms/alg.sorting/alg.binary.search/lower.bound/lower_bound
23 test_name := algorithms/alg.sorting/alg.binary.search/lower.bound/lower_bound_comp
  /external/libcxx/test/algorithms/alg.sorting/alg.binary.search/upper.bound/
Android.mk 17 test_makefile := external/libcxx/test/algorithms/alg.sorting/alg.binary.search/upper.bound/Android.mk
19 test_name := algorithms/alg.sorting/alg.binary.search/upper.bound/upper_bound
23 test_name := algorithms/alg.sorting/alg.binary.search/upper.bound/upper_bound_comp
  /cts/tests/tests/permission/src/android/permission/cts/
AppWidgetManagerPermissionTest.java 54 final boolean bound = mAppWidgetManager.bindAppWidgetIdIfAllowed(1,
56 assertFalse("Was able to call bindAppWidgetId", bound);
  /external/chromium_org/native_client_sdk/src/libraries/ppapi_simple/
ps_context_2d.h 19 int bound; member in struct:__anon13555
ps_context_2d.cc 57 ctx->bound = 0;
68 ctx->bound =
94 if (!ctx->bound) return 0;
125 if (ctx->bound && ctx->image) {
  /external/chromium_org/third_party/skia/src/gpu/
GrClipMaskCache.h 118 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;
GrLayerHoister.cpp 180 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); // TODO: still useful
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ExceptionMessages.h 71 static String indexExceedsMaximumBound(const char* name, NumberType given, NumberType bound)
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)
90 bool eq = given == bound;
98 result.appendLiteral("the minimum bound (");
99 result.append(formatNumber(bound));
  /external/chromium_org/third_party/lzma_sdk/
Bcj2.c 29 #define IF_BIT_0(p) ttt = *(p); bound = (range >> kNumBitModelTotalBits) * ttt; if (code < bound)
30 #define UPDATE_0(p) range = bound; *(p) = (CProb)(ttt + ((kBitModelTotal - ttt) >> kNumMoveBits)); NORMALIZE;
31 #define UPDATE_1(p) range -= bound; code -= bound; *(p) = (CProb)(ttt - (ttt >> kNumMoveBits)); NORMALIZE;
62 UInt32 bound; local
  /external/lzma/C/
Bcj2.c 29 #define IF_BIT_0(p) ttt = *(p); bound = (range >> kNumBitModelTotalBits) * ttt; if (code < bound)
30 #define UPDATE_0(p) range = bound; *(p) = (CProb)(ttt + ((kBitModelTotal - ttt) >> kNumMoveBits)); NORMALIZE;
31 #define UPDATE_1(p) range -= bound; code -= bound; *(p) = (CProb)(ttt - (ttt >> kNumMoveBits)); NORMALIZE;
62 UInt32 bound; local
  /external/chromium_org/tools/telemetry/telemetry/page/actions/
gesture_common.js 13 var bound = { left: client_rect.left,
23 bound.left += frame_bound.left;
24 bound.top += frame_bound.top;
28 return bound;
  /external/chromium_org/third_party/WebKit/Source/core/editing/
RenderedPosition.cpp 236 void RenderedPosition::positionInGraphicsLayerBacking(CompositedSelectionBound& bound) const
238 bound.layer = nullptr;
239 bound.edgeTopInLayer = bound.edgeBottomInLayer = FloatPoint();
246 bound.edgeTopInLayer = m_renderer->localToInvalidationBackingPoint(rect.minXMinYCorner(), &layer);
247 bound.edgeBottomInLayer = m_renderer->localToInvalidationBackingPoint(rect.minXMaxYCorner(), nullptr);
248 bound.layer = layer->graphicsLayerBacking();
  /external/chromium_org/third_party/skia/tests/
DrawTextTest.cpp 19 static void create(SkBitmap* bm, SkIRect bound) {
20 bm->allocN32Pixels(bound.width(), bound.height());
FontHostStreamTest.cpp 24 static void create(SkBitmap* bm, SkIRect bound) {
25 bm->allocN32Pixels(bound.width(), bound.height());
  /external/openssl/apps/
CA.pl 175 my ($infile, $outfile, $bound) = @_;
180 $flag = 1 if (/^-----BEGIN.*$bound/) ;
182 if (/^-----END.*$bound/) {
CA.pl.in 175 my ($infile, $outfile, $bound) = @_;
180 $flag = 1 if (/^-----BEGIN.*$bound/) ;
182 if (/^-----END.*$bound/) {
CA.sh 35 bound=$3
40 echo $line|grep "^-----END.*$bound" 2>/dev/null 1>/dev/null
49 echo $line|grep "^-----BEGIN.*$bound" 2>/dev/null 1>/dev/null
  /external/chromium_org/mojo/public/cpp/bindings/lib/
interface_impl_internal.h 100 // 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/v8/test/mjsunit/
debug-stepin-function-call.js 138 // Test step into bound function.
140 var bound = g.bind(null, 3);
142 bound();
145 // Test step into apply of bound function.
147 var bound = g.bind(null, 3);
149 bound.apply(null, [3]);
166 // Test global bound function.
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglsurface.c 50 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/mesa3d/src/egl/main/
eglsurface.c 50 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;

Completed in 671 milliseconds

1 2 3 4 5 6 7 8 9