HomeSort by relevance Sort by last modified time
    Searched refs:area (Results 126 - 150 of 541) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/
global.h 131 struct snd_shm_area *snd_shm_area_share(struct snd_shm_area *area);
132 int snd_shm_area_destroy(struct snd_shm_area *area);
  /prebuilts/go/darwin-x86/doc/codewalk/
codewalk.css 43 #comment-area {
170 #code-area {
176 .left #code-area {
180 .right #code-area {
  /prebuilts/go/linux-x86/doc/codewalk/
codewalk.css 43 #comment-area {
170 #code-area {
176 .left #code-area {
180 .right #code-area {
  /external/python/cpython2/Modules/_ctypes/libffi/src/powerpc/
linux64_closure.S 63 # 32 byte special reg save area + 64 byte parm save area
64 # + 64 byte retval area + 13*8 fpr save area + round to 16
69 # 48 bytes special reg save area + 64 bytes parm save area
70 # + 16 bytes retval area + 13*8 bytes fpr save area + round to 16
84 # Our caller has not allocated a parameter save area.
90 # Save general regs into parm save area
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/legacy/
ParameterUtils.java 24 import android.hardware.Camera.Area;
56 /** The default normalized area uses the default normalized rectangle with a weight=1 */
57 public static final Camera.Area CAMERA_AREA_DEFAULT =
58 new Camera.Area(new Rect(NORMALIZED_RECTANGLE_DEFAULT),
89 * The metering area scaled to the range of [-1000, 1000].
92 public final Camera.Area meteringArea;
106 public MeteringData(Area meteringArea, Rect previewMetering, Rect reportedMetering) {
283 * Returns the largest supported picture size, as compared by its area.
293 * Convert a camera area into a human-readable string.
295 public static String stringFromArea(Camera.Area area)
    [all...]
  /prebuilts/misc/windows/sdl2/test/
testshader.c 283 SDL_Rect area; local
312 area.x = 0;
313 area.y = 0;
314 area.w = surface->w;
315 area.h = surface->h;
316 SDL_BlitSurface(surface, &area, image, &area);
  /developers/build/prebuilts/gradle/BatchStepSensor/Application/src/main/java/com/example/android/batchstepsensor/cardstream/
CardStreamLinearLayout.java 150 final View area = view.findViewById(R.id.card_actionarea);
151 if (area != null) {
152 runShowActionAreaAnimation(container, area);
159 * when a new child is added, scroll to bottom and hide action area..
477 private void runShowActionAreaAnimation(View parent, View area) {
478 area.setPivotY(0.f);
479 area.setPivotX(parent.getWidth() / 2.f);
481 area.setAlpha(0.5f);
482 area.setRotationX(-90.f);
483 area.animate().rotationX(0.f).alpha(1.f).setDuration(400)
    [all...]
  /development/samples/browseable/BatchStepSensor/src/com.example.android.batchstepsensor/cardstream/
CardStreamLinearLayout.java 150 final View area = view.findViewById(R.id.card_actionarea);
151 if (area != null) {
152 runShowActionAreaAnimation(container, area);
159 * when a new child is added, scroll to bottom and hide action area..
477 private void runShowActionAreaAnimation(View parent, View area) {
478 area.setPivotY(0.f);
479 area.setPivotX(parent.getWidth() / 2.f);
481 area.setAlpha(0.5f);
482 area.setRotationX(-90.f);
483 area.animate().rotationX(0.f).alpha(1.f).setDuration(400)
    [all...]
  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/
TerminalView.java 205 // draw any highlighted area
207 SelectionArea area = bridge.getSelectionArea(); local
209 canvas.clipRect(area.getLeft() * bridge.charWidth, area.getTop() * bridge.charHeight, (area
211 * bridge.charWidth, (area.getBottom() + 1) * bridge.charHeight);
ConsoleActivity.java 449 // when copying, highlight the area
454 SelectionArea area = copySource.getSelectionArea();
458 // recording starting area
459 if (area.isSelectingOrigin()) {
460 area.setRow(row);
461 area.setColumn(col);
476 area.finishSelectingOrigin();
478 // update selected area
479 area.setRow(row);
480 area.setColumn(col)
709 SelectionArea area = copySource.getSelectionArea(); local
    [all...]
  /external/ImageMagick/MagickCore/
vision.c 130 return((int) (q->area-(ssize_t) p->area));
406 object[id].area++;
440 object[i].color.red=object[i].color.red/object[i].area;
441 object[i].color.green=object[i].color.green/object[i].area;
442 object[i].color.blue=object[i].color.blue/object[i].area;
443 object[i].color.alpha=object[i].color.alpha/object[i].area;
444 object[i].color.black=object[i].color.black/object[i].area;
445 object[i].centroid.x=object[i].centroid.x/object[i].area;
446 object[i].centroid.y=object[i].centroid.y/object[i].area;
    [all...]
composite-private.h 169 const double alpha,const PixelInfo *q,const double beta,const double area,
173 Blend pixel colors p and q by the amount given and area.
175 CompositePixelInfoPlus(p,(double) (1.0-area)*alpha,q,(double) (area*beta),
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
DemoUtility.java 95 public static void setText(TextComponent area, String newText) {
96 String foo = area.getText();
98 area.setText(newText);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
ConvertSwitchDialog.java 84 Composite area = (Composite) super.createDialogArea(parent); local
85 Composite container = new Composite(area, SWT.NONE);
96 return area;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ScrimView.java 286 public void setExcludedArea(Rect area) {
287 if (area == null) {
293 int left = Math.max(area.left, 0);
294 int top = Math.max(area.top, 0);
295 int right = Math.min(area.right, getWidth());
296 int bottom = Math.min(area.bottom, getHeight());
  /external/ImageMagick/api_examples/
magick_script 12 This area is completely ignored by the magick script.
  /external/autotest/client/site_tests/policy_CookiesSessionOnlyForUrls/
policy_CookiesSessionOnlyForUrls.py 85 var exception_area=document.getElementById('content-settings-exceptions-area');
86 var contents=exception_area.getElementsByClassName('content-area')[0];
  /prebuilts/go/darwin-x86/doc/progs/
json2.go 21 fmt.Println("the circle's area", math.Pi*r*r)
  /prebuilts/go/linux-x86/doc/progs/
json2.go 21 fmt.Println("the circle's area", math.Pi*r*r)
  /prebuilts/tools/common/spantable/
spantable.jar 
  /external/freetype/src/smooth/
ftgrays.c 407 TArea area; member in struct:TCell_
443 TArea area; member in struct:gray_TWorker_
500 cell->x, cell->cover, cell->area );
538 cell->area = ras.area;
548 cell->area += ras.area;
578 ras.area = 0;
646 ras.area += (TArea)( ( fx1 + first ) * delta );
670 ras.area += (TArea)( ONE_PIXEL * delta )
727 TArea area; local
1306 TArea area; local
    [all...]
  /external/clang/test/FixIt/
typo.cpp 30 float area(float radius, // expected-note{{'radius' declared here}} function
  /external/ltp/testcases/open_posix_testsuite/bin/
run-posix-option-group-test.sh 8 # Use to build and run tests for a specific area
17 Build and run the tests for POSIX area specified by the 3 letter tag
  /external/skia/src/gpu/
GrTextureAdjuster.h 16 * Base class for sources that start out as textures. Optionally allows for a content area subrect.
17 * The intent is not to use content area for subrect rendering. Rather, the pixels outside the
18 * content area have undefined values and shouldn't be read *regardless* of filtering mode or
40 GrTextureAdjuster(GrContext*, sk_sp<GrTextureProxy>, SkAlphaType, const SkIRect& area,
52 /** Returns the content area or null for the whole original texture */
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86CompilationCallback_Win64.asm 24 ; WARNING: We cannot use register spill area - we're generating stubs by hands!
33 ; Save all XMM arg registers. Also allocate reg spill area.

Completed in 1238 milliseconds

1 2 3 4 56 7 8 91011>>