HomeSort by relevance Sort by last modified time
    Searched full:primitive (Results 1 - 25 of 1457) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERTaggedObject.java 43 ASN1Primitive primitive = obj.toASN1Primitive().toDERObject(); local
45 return primitive.isConstructed();
59 ASN1Primitive primitive = obj.toASN1Primitive().toDERObject(); local
60 int length = primitive.encodedLength();
86 ASN1Primitive primitive = obj.toASN1Primitive().toDERObject(); local
91 out.writeLength(primitive.encodedLength());
92 out.writeObject(primitive);
100 if (primitive.isConstructed())
110 out.writeImplicitObject(primitive);
DLTaggedObject.java 38 ASN1Primitive primitive = obj.toASN1Primitive().toDLObject(); local
40 return primitive.isConstructed();
80 ASN1Primitive primitive = obj.toASN1Primitive().toDLObject(); local
85 out.writeLength(primitive.encodedLength());
86 out.writeObject(primitive);
94 if (primitive.isConstructed())
104 out.writeImplicitObject(primitive);
  /frameworks/base/graphics/java/android/renderscript/
Path.java 28 public enum Primitive {
33 Primitive(int id) {
40 Primitive mPrimitive;
44 Path(int id, RenderScript rs, Primitive p, Allocation vtx, Allocation loop, float q) {
60 public Primitive getPrimitive() {
69 public static Path createStaticPath(RenderScript rs, Primitive p, float quality, Allocation vtx) {
75 public static Path createStaticPath(RenderScript rs, Primitive p, float quality, Allocation vtx, Allocation loops) {
79 public static Path createDynamicPath(RenderScript rs, Primitive p, float quality, Allocation vtx) {
83 public static Path createDynamicPath(RenderScript rs, Primitive p, float quality, Allocation vtx, Allocation loops) {
  /art/runtime/mirror/
art_field-inl.h 27 #include "primitive.h"
95 DCHECK_EQ(Primitive::kPrimBoolean, FieldHelper(this).GetTypeAsPrimitiveType())
101 DCHECK_EQ(Primitive::kPrimBoolean, FieldHelper(this).GetTypeAsPrimitiveType())
107 DCHECK_EQ(Primitive::kPrimByte, FieldHelper(this).GetTypeAsPrimitiveType())
113 DCHECK_EQ(Primitive::kPrimByte, FieldHelper(this).GetTypeAsPrimitiveType())
119 DCHECK_EQ(Primitive::kPrimChar, FieldHelper(this).GetTypeAsPrimitiveType())
125 DCHECK_EQ(Primitive::kPrimChar, FieldHelper(this).GetTypeAsPrimitiveType())
131 DCHECK_EQ(Primitive::kPrimShort, FieldHelper(this).GetTypeAsPrimitiveType())
137 DCHECK_EQ(Primitive::kPrimShort, FieldHelper(this).GetTypeAsPrimitiveType())
144 Primitive::Type type = FieldHelper(this).GetTypeAsPrimitiveType()
    [all...]
  /art/runtime/
reflection.cc 122 Primitive::Type srcType, Primitive::Type dstType,
124 CHECK(srcType != Primitive::kPrimNot && dstType != Primitive::kPrimNot);
126 case Primitive::kPrimBoolean:
127 if (srcType == Primitive::kPrimBoolean) {
132 case Primitive::kPrimChar:
133 if (srcType == Primitive::kPrimChar) {
138 case Primitive::kPrimByte:
139 if (srcType == Primitive::kPrimByte)
    [all...]
primitive.cc 17 #include "primitive.h"
33 std::ostream& operator<<(std::ostream& os, const Primitive::Type& type) {
35 if (type >= Primitive::kPrimNot && type <= Primitive::kPrimVoid) {
reflection.h 21 #include "primitive.h"
34 mirror::Object* BoxPrimitive(Primitive::Type src_class, const JValue& value)
47 Primitive::Type src_class, Primitive::Type dst_class,
  /cts/tests/tests/rsg/src/android/renderscriptgraphics/cts/
MeshTest.java 23 import android.renderscript.Mesh.Primitive;
53 for(Primitive prim : Primitive.values()) {
80 for(Primitive prim : Primitive.values()) {
191 assertEquals(Mesh.Primitive.POINT, Mesh.Primitive.valueOf("POINT"));
192 assertEquals(Mesh.Primitive.LINE, Mesh.Primitive.valueOf("LINE"));
193 assertEquals(Mesh.Primitive.LINE_STRIP, Mesh.Primitive.valueOf("LINE_STRIP"))
    [all...]
  /external/chromium_org/tools/json_schema_compiler/dart_test/
operatable_type.idl 20 // Function returning primitive type.
26 // Function taking primitive type.
events.idl 18 // A primitive
30 // A primitive
44 // Documentation for an event with a non-optional primitive argument.
47 // Documentation for an event with an optional primitive argument.
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1973.js 31 function TestAccessorWrapping(primitive) {
32 var prototype = Object.getPrototypeOf(Object(primitive))
34 var strict_type = typeof primitive;
39 primitive.strict = primitive.strict;
41 var sloppy_type = typeof Object(primitive);
46 primitive.sloppy = primitive.sloppy;
  /external/v8/test/mjsunit/regress/
regress-1973.js 31 function TestAccessorWrapping(primitive) {
32 var prototype = Object.getPrototypeOf(Object(primitive))
34 var strict_type = typeof primitive;
39 primitive.strict = primitive.strict;
41 var sloppy_type = typeof Object(primitive);
46 primitive.sloppy = primitive.sloppy;
  /cts/tools/signature-tools/src/signature/model/impl/
SigPrimitiveType.java 33 for (SigPrimitiveType primitive : values()) {
34 if (primitive.name.equals(name)) {
35 return primitive;
38 throw new IllegalArgumentException(name + " is not a primitive type");
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/agreement/
ECDHBasicAgreement.java 14 * ECSVDP-DH is Elliptic Curve Secret Value Derivation Primitive,
16 * and [Kob87]. This primitive derives a shared secret value from one
19 * execute this primitive, they will produce the same output. This
20 * primitive can be invoked by a scheme to derive a shared secret key;
  /external/chromium_org/ppapi/api/dev/
pp_optional_structs_dev.idl 7 * This file defines optional structs for primitive types.
  /frameworks/native/services/surfaceflinger/RenderEngine/
Mesh.cpp 21 Mesh::Mesh(Primitive primitive, size_t vertexCount, size_t vertexSize, size_t texCoordSize)
23 mPrimitive(primitive)
33 Mesh::Primitive Mesh::getPrimitive() const {
Mesh.h 26 enum Primitive {
32 Mesh(Primitive primitive, size_t vertexCount, size_t vertexSize, size_t texCoordsSize = 0);
59 Primitive getPrimitive() const;
94 Primitive mPrimitive;
  /external/mockito/src/org/mockito/internal/util/
Primitives.java 18 * Returns the primitive type of the given class.
24 * @param clazz The class from which primitive type has to be retrieved
26 * @return The primitive type if relevant, otherwise <code>null</code>
36 * Indicates if the given class is primitive type or a primitive wrapper.
39 * @return <code>true</code> if primitive or wrapper, <code>false</code> otherwise.
46 * Returns the boxed default value for a primitive or a primitive wrapper.
50 * <code>null</code> if the type is neither a primitive nor a wrapper
  /external/dexmaker/src/main/java/com/google/dexmaker/
TypeId.java 24 * A primitive type, interface or class.
26 * <p><strong>Warning:</strong> Use care when dealing with boxed primitive
27 * types. Java's lack of support for parameterized primitive types means that
28 * a primitive type like {@code int} and its boxed type {@code
31 * {@code java.lang.Integer} is used where the primitive type {@code int} is
35 /** The {@code boolean} primitive type. */
39 /** The {@code byte} primitive type. */
42 /** The {@code char} primitive type. */
46 /** The {@code double} primitive type. */
49 /** The {@code float} primitive type. *
    [all...]
  /libcore/luni/src/main/java/java/lang/
Number.java 40 * @return the primitive byte value of this object.
49 * @return the primitive double value of this object.
56 * @return the primitive float value of this object.
64 * @return the primitive int value of this object.
72 * @return the primitive long value of this object.
80 * @return the primitive short value of this object.
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_primitive_restart.c 38 * Check if the hardware's cut index support can handle the primitive
72 * Check if the hardware's cut index support can handle the primitive
94 /* The primitive restart index can't be handled, so take
107 /* Cut index supports these primitive types */
110 /* Cut index does not support these primitive types */
124 * Check if primitive restart is enabled, and if so, handle it properly.
127 * hardware will handle primitive restart.
142 /* If the driver has requested software handling of primitive restarts,
151 * of handling the primitive restart draw.
165 * primitive restart dra
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_primitive_restart.c 38 * Check if the hardware's cut index support can handle the primitive
72 * Check if the hardware's cut index support can handle the primitive
94 /* The primitive restart index can't be handled, so take
107 /* Cut index supports these primitive types */
110 /* Cut index does not support these primitive types */
124 * Check if primitive restart is enabled, and if so, handle it properly.
127 * hardware will handle primitive restart.
142 /* If the driver has requested software handling of primitive restarts,
151 * of handling the primitive restart draw.
165 * primitive restart dra
    [all...]
  /art/runtime/native/
java_lang_reflect_Field.cc 39 case Primitive::kPrimBoolean:
42 case Primitive::kPrimByte:
45 case Primitive::kPrimChar:
48 case Primitive::kPrimDouble:
51 case Primitive::kPrimFloat:
54 case Primitive::kPrimInt:
57 case Primitive::kPrimLong:
60 case Primitive::kPrimShort:
63 case Primitive::kPrimNot:
70 case Primitive::kPrimVoid
    [all...]
  /cts/suite/cts/deviceTests/opengl/src/com/android/cts/opengl/primitive/
BenchmarkName.java 14 package com.android.cts.opengl.primitive;
17 * Represents the different primitive benchmarks.
  /cts/tests/expectations/
knownfailures.txt 24 name: "com.android.cts.opengl.primitive.GLPrimitiveBenchmark#testFullPipelineOffscreen",
25 name: "com.android.cts.opengl.primitive.GLPrimitiveBenchmark#testPixelOutputOffscreen",

Completed in 991 milliseconds

1 2 3 4 5 6 7 8 91011>>