/external/chromium_org/third_party/skia/src/animator/ |
SkDisplayBounds.h | 16 DECLARE_DISPLAY_MEMBER_INFO(Bounds);
|
SkDisplayType.cpp | 106 CASE_DISPLAY_NEW(Bounds); 261 CASE_GET_DISPLAY_INFO(Bounds); 428 DISPLAY_NAME("bounds", SkType_Bounds),
|
/external/skia/src/animator/ |
SkDisplayBounds.h | 16 DECLARE_DISPLAY_MEMBER_INFO(Bounds);
|
/external/chromium_org/v8/src/ |
types.h | 283 // A simple struct to represent a pair of lower/upper type bounds. 284 struct Bounds { 288 Bounds() {} 289 Bounds(Handle<Type> l, Handle<Type> u) : lower(l), upper(u) { 292 Bounds(Type* l, Type* u, Isolate* isl) : lower(l, isl), upper(u, isl) { 295 explicit Bounds(Handle<Type> t) : lower(t), upper(t) { 298 Bounds(Type* t, Isolate* isl) : lower(t, isl), upper(t, isl) { 302 // Unrestricted bounds. 303 static Bounds Unbounded(Isolate* isl) { 304 return Bounds(Type::None(), Type::Any(), isl) [all...] |
typing.h | 72 void NarrowType(Expression* e, Bounds b) { 73 e->set_bounds(Bounds::Both(e->bounds(), b, isolate_)); 76 e->set_bounds(Bounds::NarrowLower(e->bounds(), t, isolate_));
|
effects.h | 40 // modification of type bounds (e.g. of a variable). 49 // merges into a previous effect, i.e., type bounds are merged. Alternative 50 // composition always merges bounds. It yields a possible effect if at least 56 Bounds bounds; member in struct:v8::internal::Effect 59 Effect(Bounds b, Modality m = DEFINITE) : modality(m), bounds(b) {} 63 return Effect(Bounds::Unbounded(isolate), POSSIBLE); 67 return Effect(Bounds::Unbounded(isolate), DEFINITE); 73 return Effect(Bounds::Either(e1.bounds, e2.bounds, isolate), e1.modality) [all...] |
typing.cc | 332 NarrowType(expr, Bounds::Either( 333 expr->then_expression()->bounds(), 334 expr->else_expression()->bounds(), isolate_)); 348 NarrowType(expr, Bounds(type, isolate_)); 353 NarrowType(expr, Bounds(Type::RegExp(), isolate_)); 374 NarrowType(expr, Bounds(Type::Object(), isolate_)); 385 NarrowType(expr, Bounds(Type::Array(), isolate_)); 416 NarrowType(expr, rhs->bounds()); 420 store_.Seq(variable_index(proxy->var()), Effect(expr->bounds())); 437 NarrowType(expr, Bounds(Type::None(), isolate_)) [all...] |
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/ |
p9-0x.cpp | 42 template<typename ...ElementTypes, unsigned ...Bounds> 43 struct split_arrays<ElementTypes[Bounds]...> { 46 // FIXME: Would like to have unsigned_tuple<Bounds...> here. 47 typedef tuple<unsigned_c<Bounds>...> bounds_types;
|
/external/chromium_org/third_party/lcov/contrib/galaxy/ |
posterize.pl | 42 my $Bounds = ""; 288 # Find the bounds for the image 290 $Bounds = `tail -1 $Image`; 291 ($Junk, $Junk, $minX, $minY, $maxX, $maxY) = split / /, $Bounds;
|
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/ |
SDL_BWin.h | 51 SDL_BWin(BRect bounds) : 52 BDirectWindow(bounds, "Untitled", B_TITLED_WINDOW, 0) { 114 SDL_GLView = new BGLView(Bounds(), "SDL GLView", 133 SDL_View = new SDL_BView(Bounds());
|
SDL_BView.h | 64 BRect bounds; local 65 bounds.top = bounds.left = 0; 66 bounds.right = width; 67 bounds.bottom = height; 69 FillRect(bounds, B_SOLID_HIGH); 72 bounds = image->Bounds(); 73 Draw(bounds);
|
SDL_sysyuv.cc | 41 BBitmap * BE_GetOverlayBitmap(BRect bounds, color_space cs) { 43 bbitmap = new BBitmap(bounds,B_BITMAP_WILL_OVERLAY,cs); 50 uint32 width = bounds.IntegerWidth() + 1; 51 uint32 height = bounds.IntegerHeight() + 1; 78 fprintf(stderr,"GetOverlayBitmap failed bounds tests\n"); 84 bounds.Set(bounds.left,bounds.top,bounds.right+width_padding,bounds.bottom+height_padding) 134 BRect bounds; local [all...] |
/external/chromium_org/tools/telemetry/telemetry/core/timeline/ |
bounds.py | 5 class Bounds(object): 6 """Represents a min-max bounds.""" 29 def bounds(self): member in class:Bounds 44 def AddBounds(self, bounds): 45 if bounds.isEmpty: 47 self.AddValue(bounds.min_) 48 self.AddValue(bounds.max_)
|
model.py | 19 from telemetry.core.timeline import bounds namespace 42 self._bounds = bounds.Bounds() 43 self._thread_time_bounds = bounds.Bounds() 57 def bounds(self): member in class:TimelineModel 83 if not self.bounds.is_empty: 85 process.AutoCloseOpenSlices(self.bounds.max,
|
/external/chromium_org/ash/ |
screen_ash_unittest.cc | 24 TEST_F(ScreenAshTest, Bounds) { 39 // Maximized bounds 47 // Display bounds 55 // Work area bounds
|
/frameworks/base/core/java/android/widget/ |
GridLayout.java | 211 * the bounds of each view are extended outwards, according 362 * value of each the upper bounds defined in {@link LayoutParams#rowSpec}. 395 * value of each the upper bounds defined in {@link LayoutParams#columnSpec}. 1298 Bounds bounds = getAlignment(spec.alignment, horizontal).getBounds(); local 1347 Bounds[] bounds = getGroupBounds().values; local [all...] |
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/ |
GridLayout.java | 211 * the bounds of each view are extended outwards, according 362 * value of each the upper bounds defined in {@link LayoutParams#rowSpec}. 395 * value of each the upper bounds defined in {@link LayoutParams#columnSpec}. 1187 Bounds bounds = getAlignment(spec.alignment, horizontal).getBounds(); local 1236 Bounds[] bounds = getGroupBounds().values; local [all...] |
/external/llvm/lib/CodeGen/ |
MachineTraceMetrics.cpp | 464 // Set up loop bounds for the backwards post-order traversal. 465 LoopBounds Bounds(BlockInfo, MTM.Loops); 468 Bounds.Downward = false; 469 Bounds.Visited.clear(); 471 for (UpwardPO I = ipo_ext_begin(MBB, Bounds), E = ipo_ext_end(MBB, Bounds); 488 Bounds.Downward = true; 489 Bounds.Visited.clear(); 491 for (DownwardPO I = po_ext_begin(MBB, Bounds), E = po_ext_end(MBB, Bounds); [all...] |
/external/chromium_org/ui/events/ |
event_processor_unittest.cc | 63 return (t->bounds().Contains(event.location())); 73 gfx::Rect bounds() const { return bounds_; } function in class:ui::test::BoundsTestTarget 82 vector += target->bounds().OffsetFromOrigin(); 88 vector += source->bounds().OffsetFromOrigin(); 109 TEST_F(EventProcessorTest, Bounds) { 132 // because the default targeter does not look at the bounds. 141 // Now install a targeter on the parent that looks at the bounds and makes 143 // the bounds of the target.
|
/external/chromium_org/apps/ |
app_window_contents.cc | 90 gfx::Rect bounds = host_->GetClientBounds(); local 91 app_window::Bounds update; 92 update.left.reset(new int(bounds.x())); 93 update.top.reset(new int(bounds.y())); 94 update.width.reset(new int(bounds.width())); 95 update.height.reset(new int(bounds.height())); 96 dictionary->Set("bounds", update.ToValue().release());
|
/external/chromium_org/chrome/browser/chromeos/input_method/ |
mode_indicator_browsertest.cc | 122 IN_PROC_BROWSER_TEST_F(ModeIndicatorBrowserTest, Bounds) { 144 // The bounds should be bigger than the inner size. 151 // the cursor bounds.
|
/external/chromium_org/chrome/browser/extensions/api/app_current_window_internal/ |
app_current_window_internal_api.cc | 32 using app_current_window_internal::Bounds; 129 // Start with the current bounds, and change any values that are specified in 131 gfx::Rect bounds = window->GetClientBounds(); local 134 if (params->bounds.left) 135 bounds.set_x(*(params->bounds.left)); 136 if (params->bounds.top) 137 bounds.set_y(*(params->bounds.top)); 138 if (params->bounds.width [all...] |
/external/chromium_org/chrome/browser/extensions/api/system_display/ |
system_display_apitest.cc | 25 using api::system_display::Bounds; 34 gfx::Rect bounds(0, 0, 1280, 720); 36 gfx::Display display(i, bounds); 64 gfx::Rect bounds(0, 0, 1280, 720); 66 gfx::Display display(i, bounds);
|
/external/clang/lib/Driver/ |
SanitizerArgs.h | 165 Add = Bounds; 166 DeprecatedReplacement = "-fsanitize=bounds";
|
/external/qemu/distrib/sdl-1.2.15/src/video/qtopia/ |
SDL_sysevents.cc | 54 BRect bounds; 72 bounds = view->Bounds(); 106 if ( ! bounds.Contains(point) ) {
|