HomeSort by relevance Sort by last modified time
    Searched refs:one (Results 526 - 550 of 2053) sorted by null

<<21222324252627282930>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/unord.hash/
enum.pass.cpp 25 enum class Cardinals { zero, one, two, three, five=5 }; member in class:Cardinals
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.cat/
enum.pass.cpp 46 enum Enum {zero, one}; enumerator in enum:Enum
  /packages/apps/Camera2/src/com/android/camera/one/
AbstractOneCamera.java 17 package com.android.camera.one;
  /external/chromium_org/third_party/webrtc/video/
send_statistics_proxy_unittest.cc 44 void ExpectEqual(VideoSendStream::Stats one, VideoSendStream::Stats other) {
45 EXPECT_EQ(one.input_frame_rate, other.input_frame_rate);
46 EXPECT_EQ(one.encode_frame_rate, other.encode_frame_rate);
47 EXPECT_EQ(one.suspended, other.suspended);
49 EXPECT_EQ(one.substreams.size(), other.substreams.size());
51 one.substreams.begin();
52 it != one.substreams.end();
  /external/guava/guava-tests/test/com/google/common/collect/
ComputingConcurrentHashMapTest.java 233 Object one = map.getOrCompute(key); local
237 assertNotSame(one, two);
268 final Object one = new Object(); local
276 map.getOrCompute(one);
290 map.put(one, two);
299 assertNotNull(map.putIfAbsent(one, three)); // force notifications
300 assertNotified(listener, one, computedObject, RemovalCause.REPLACED);
  /libcore/jsr166-tests/src/test/java/jsr166/
CopyOnWriteArraySetTest.java 86 v.add(one); // will not add this element
96 full.add(one);
123 assertTrue(full.contains(one));
151 v.add(one);
230 v.add(one);
241 full.remove(one);
242 assertFalse(full.contains(one));
ExecutorsTest.java 523 Callable c = Executors.callable(new NoOpRunnable(), one);
524 assertSame(one, c.call());
532 public Object run() { return one; }});
533 assertSame(one, c.call());
541 public Object run() { return one; }});
542 assertSame(one, c.call());
560 Callable c = Executors.callable((Runnable) null, one);
ArrayBlockingQueueTest.java 128 q.add(one);
159 assertFalse(q.offer(one));
518 q.add(one);
520 assertTrue(q.contains(one));
690 q.add(one);
698 assertSame(it.next(), one); local
708 q.add(one);
726 q.add(one);
752 q.add(one);
768 assertSame(one, q.take())
    [all...]
LinkedBlockingQueueTest.java 117 q.add(one);
148 assertFalse(q.offer(one));
520 q.add(one);
522 assertTrue(q.contains(one));
626 q.add(one);
634 assertSame(it.next(), one); local
644 q.add(one);
660 q.add(one);
686 q.add(one);
701 assertSame(one, q.take())
    [all...]
ConcurrentLinkedQueueTest.java 94 q.add(one);
145 assertTrue(q.offer(one));
318 q.add(one);
436 q.add(one);
453 q.add(one);
470 q.add(one);
ArrayDequeTest.java 191 assertTrue(q.offer(one));
193 assertSame(one, q.peekLast());
202 assertTrue(q.offerFirst(one));
203 assertSame(one, q.peekFirst());
213 assertTrue(q.offerLast(one));
215 assertSame(one, q.peekLast());
257 assertTrue(q.add(one));
259 assertSame(one, q.peekLast());
268 q.addFirst(one);
269 assertSame(one, q.peekFirst())
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
asm_fill.h 302 struct ureg_src one,
310 one);
331 struct ureg_src one,
347 ureg_SUB(ureg, temp[0], one, src_channel_alpha);
352 ureg_SUB(ureg, temp[0], one, ureg_scalar(dst, TGSI_SWIZZLE_W));
378 ureg_SUB(ureg, temp[0], one, src);
384 ureg_SUB(ureg, temp[0], one, src_channel_alpha);
387 ureg_SUB(ureg, temp[1], one, ureg_scalar(dst, TGSI_SWIZZLE_W));
402 ureg_MIN(ureg, out, ureg_src(temp[0]), one);
409 blend_unpremultiply(ureg, src, one, temp)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
asm_fill.h 302 struct ureg_src one,
310 one);
331 struct ureg_src one,
347 ureg_SUB(ureg, temp[0], one, src_channel_alpha);
352 ureg_SUB(ureg, temp[0], one, ureg_scalar(dst, TGSI_SWIZZLE_W));
378 ureg_SUB(ureg, temp[0], one, src);
384 ureg_SUB(ureg, temp[0], one, src_channel_alpha);
387 ureg_SUB(ureg, temp[1], one, ureg_scalar(dst, TGSI_SWIZZLE_W));
402 ureg_MIN(ureg, out, ureg_src(temp[0]), one);
409 blend_unpremultiply(ureg, src, one, temp)
    [all...]
  /ndk/build/core/
main.mk 66 Please define it to one of: $(NDK_ALL_APPS))
80 You might want to use one of the following: $(NDK_ALL_APPS))
105 Please follow the instructions in docs/NDK-APPS.TXT to write one.)
110 # if it does, we ignore them if there is at least one known
127 Please use one of: $(NDK_ALL_APPS))\
  /external/chromium_org/third_party/skia/tests/
PathOpsExtendedTest.cpp 165 static void scaleMatrix(const SkPath& one, const SkPath& two, SkMatrix& scale) {
166 SkRect larger = one.getBounds();
220 static int pathsDrawTheSame(const SkPath& one, const SkPath& two, SkBitmap& bits, SkPath& scaledOne,
223 scaleMatrix(one, two, scale);
224 one.transform(scale, &scaledOne);
229 bool drawAsciiPaths(const SkPath& one, const SkPath& two, bool drawPaths) {
233 const SkRect& bounds1 = one.getBounds();
253 canvas.drawPath(one, paint);
276 static int comparePaths(skiatest::Reporter* reporter, const char* filename, const SkPath& one,
280 (void) pathsDrawTheSame(one, two, bitmap, scaledOne, scaledTwo, errors2x2)
    [all...]
  /external/skia/tests/
PathOpsExtendedTest.cpp 282 static void scaleMatrix(const SkPath& one, const SkPath& two, SkMatrix& scale) {
283 SkRect larger = one.getBounds();
337 static int pathsDrawTheSame(const SkPath& one, const SkPath& two, SkBitmap& bits, SkPath& scaledOne,
340 scaleMatrix(one, two, scale);
341 one.transform(scale, &scaledOne);
346 bool drawAsciiPaths(const SkPath& one, const SkPath& two, bool drawPaths) {
350 const SkRect& bounds1 = one.getBounds();
370 canvas.drawPath(one, paint);
393 static int comparePaths(skiatest::Reporter* reporter, const char* filename, const SkPath& one,
397 (void) pathsDrawTheSame(one, two, bitmap, scaledOne, scaledTwo, errors2x2)
    [all...]
  /external/chromium_org/third_party/mesa/src/docs/
WL_bind_wayland_display.spec 37 wl_display means that the EGL implementation should provide one or
100 compositor will have to create one or more EGLImages for the
111 one of EGL_TEXTURE_RGB, EGL_TEXTURE_RGBA, EGL_TEXTURE_Y_U_V_WL,
124 One plane, samples RGB from the texture to rgb in the
128 One plane, samples RGBA from the texture to rgba in the
  /external/guava/guava-tests/test/com/google/common/cache/
LocalCacheTest.java 537 Object one = map.get(key, loader); local
541 assertNotSame(one, two);
569 final Object one = new Object(); local
570 int hash = map.hash(one);
577 map.get(one, loader);
595 map.get(one, loader);
603 ReferenceEntry<Object, Object> entry = segment.getEntry(one, hash);
621 assertTrue(map.containsKey(one));
623 assertSame(computedObject, map.get(one));
665 final Object one = new Object() local
728 Object one = new Object(); local
770 Object one = new Object(); local
801 Object one = new Object(); local
827 Object one = new Object(); local
854 Object one = new Object(); local
2308 LocalLoadingCache<Object, Object> one = (LocalLoadingCache) CacheBuilder.newBuilder() local
2364 LocalManualCache<Object, Object> one = (LocalManualCache) CacheBuilder.newBuilder() local
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
Type.java 90 * uses the same position for a primitive type in one branch, and a reference type
181 * Returns whether or not the type is special. A special type is one that is either used
275 * type can be assigned. If there is more than one possible answer, then a {@link MultiType},
337 // Although, this is more efficient even if we did have one.
391 private static CtClass findCommonSuperClass(CtClass one, CtClass two) throws NotFoundException {
392 CtClass deep = one;
576 static boolean eq(CtClass one, CtClass two) {
577 return one == two || (one != null && two != null && one.getName().equals(two.getName()))
    [all...]
  /external/javassist/src/test/test/javassist/convert/
ArrayAccessReplaceTest.java 275 public void setMultiFoo(int one, int two, int three, Foo foo);
276 public Foo getMultiFoo(int one, int two, int three);
337 public Foo getMultiFoo(int one, int two, int three) {
338 return multi[one][two][three];
381 public void setMultiFoo(int one, int two, int three, Foo foo) {
382 multi[one][two][three] = foo;
  /external/mesa3d/docs/
WL_bind_wayland_display.spec 37 wl_display means that the EGL implementation should provide one or
100 compositor will have to create one or more EGLImages for the
111 one of EGL_TEXTURE_RGB, EGL_TEXTURE_RGBA, EGL_TEXTURE_Y_U_V_WL,
124 One plane, samples RGB from the texture to rgb in the
128 One plane, samples RGBA from the texture to rgba in the
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
IdentityHashMap2Test.java 2 * Licensed to the Apache Software Foundation (ASF) under one or more
383 String one = "one"; local
384 String alsoOne = new String(one); // use the new operator to ensure a
390 mapOne.put(one, two);
391 mapFour.put(one, two);
395 mapThree.put(one, alsoTwo);
398 assertTrue("failure of non-equality of IdentityHashMaps one and two",
400 assertTrue("failure of non-equality of IdentityHashMaps one and three",
408 hashMapThree.put(one, alsoTwo)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_state_setup.c 312 z0z1z2 = lp_build_clamp(&bld, LLVMBuildFAdd(b, z0z1z2, zoffset, ""), bld.zero, bld.one);
467 LLVMValueRef one; local
477 one = lp_build_const_vec(gallivm, type, 1.0f);
478 one = LLVMBuildBitCast(builder, one, lp_build_int_vec_type(gallivm, type), "");
479 one = LLVMBuildAnd(builder, one, cyl_mask, "");
485 offset = LLVMBuildAnd(builder, offset, one, "");
490 offset = LLVMBuildAnd(builder, offset, one, "");
498 offset = LLVMBuildAnd(builder, offset, one, "");
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_setup.c 312 z0z1z2 = lp_build_clamp(&bld, LLVMBuildFAdd(b, z0z1z2, zoffset, ""), bld.zero, bld.one);
467 LLVMValueRef one; local
477 one = lp_build_const_vec(gallivm, type, 1.0f);
478 one = LLVMBuildBitCast(builder, one, lp_build_int_vec_type(gallivm, type), "");
479 one = LLVMBuildAnd(builder, one, cyl_mask, "");
485 offset = LLVMBuildAnd(builder, offset, one, "");
490 offset = LLVMBuildAnd(builder, offset, one, "");
498 offset = LLVMBuildAnd(builder, offset, one, "");
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/bsdsrc/
b_log.c 367 double F, f, g, q, u, u2, v, zero = 0.0, one = 1.0;
373 return (-one/zero);

Completed in 1286 milliseconds

<<21222324252627282930>>