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

12 3 4 5 6 7 8 91011>>

  /art/runtime/mirror/
art_field.cc 47 Primitive::Type type = fh.GetTypeAsPrimitiveType();
48 if (type == Primitive::kPrimDouble || type == Primitive::kPrimLong) {
  /cts/tools/signature-tools/src/signature/model/
IPrimitiveType.java 20 * {@code IPrimitiveType} models a primitive type.
25 * Returns the name of this primitive type, i.e. one of the following
38 * @return the name of this primitive type
  /external/chromium_org/third_party/skia/include/effects/
SkRectShaderImageFilter.h 20 * is produced with the same bounds as the input primitive (even though
21 * the input primitive's pixels are not used for processing).
26 * primitive's bounds are used instead.
  /external/skia/include/effects/
SkRectShaderImageFilter.h 20 * is produced with the same bounds as the input primitive (even though
21 * the input primitive's pixels are not used for processing).
26 * primitive's bounds are used instead.
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc 139 Primitive::Type GetParamPrimitiveType() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
144 return Primitive::kPrimNot;
147 return Primitive::GetType(shorty_[index]);
159 return GetParamPrimitiveType() == Primitive::kPrimNot;
163 Primitive::Type type = GetParamPrimitiveType();
164 return type == Primitive::kPrimLong || type == Primitive::kPrimDouble;
233 Primitive::Type type = GetParamPrimitiveType();
235 case Primitive::kPrimLong: // Fall-through.
236 case Primitive::kPrimDouble
    [all...]
  /frameworks/rs/scriptc/
rs_mesh.rsh 45 * @return number of primitive groups in the mesh. This would
65 * allocation if only the primitive is specified
75 * Returns the primitive describing how a part of the mesh is
79 * @param index index of the primitive
80 * @return primitive describing how the mesh is rendered
  /prebuilts/sdk/renderscript/include/
rs_mesh.rsh 45 * @return number of primitive groups in the mesh. This would
65 * allocation if only the primitive is specified
75 * Returns the primitive describing how a part of the mesh is
79 * @param index index of the primitive
80 * @return primitive describing how the mesh is rendered
  /art/runtime/entrypoints/portable/
portable_trampoline_entrypoints.cc 82 Primitive::Type GetParamPrimitiveType() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
149 Primitive::Type type = GetParamPrimitiveType();
151 case Primitive::kPrimLong: // Fall-through.
152 case Primitive::kPrimDouble:
156 case Primitive::kPrimNot:
159 case Primitive::kPrimBoolean: // Fall-through.
160 case Primitive::kPrimByte: // Fall-through.
161 case Primitive::kPrimChar: // Fall-through.
162 case Primitive::kPrimShort: // Fall-through.
163 case Primitive::kPrimInt: // Fall-through
    [all...]
  /external/chromium_org/v8/test/mjsunit/compiler/
compare.js 49 // First test primitive values.
51 assertEquals(max, MaxLT(x, y), "MaxLT - primitive");
52 assertEquals(max, MaxLE(x, y), "MaxLE - primitive");
53 assertEquals(max, MaxGE(x, y), "MaxGE - primitive");
54 assertEquals(max, MaxGT(x, y), "MaxGT - primitive");
76 // Test non-primitive values and watch for valueOf call order.
  /external/v8/test/mjsunit/compiler/
compare.js 49 // First test primitive values.
51 assertEquals(max, MaxLT(x, y), "MaxLT - primitive");
52 assertEquals(max, MaxLE(x, y), "MaxLE - primitive");
53 assertEquals(max, MaxGE(x, y), "MaxGE - primitive");
54 assertEquals(max, MaxGT(x, y), "MaxGT - primitive");
76 // Test non-primitive values and watch for valueOf call order.
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Implicit.java 35 /** primitive type of tagging */
49 * 1) primitive: only primitive identifier is valid
78 // the base encoding can be primitive ot constructed
82 // if the base encoding is primitive use primitive encoding
ASN1Primitive.java 27 * This abstract class is the super class for all primitive ASN.1 types
41 * @return true if identifier correspond to primitive identifier of this
  /external/mockito/src/org/mockito/internal/stubbing/defaultanswers/
ReturnsMoreEmptyValues.java 23 * Returns appropriate primitive for primitive-returning methods
26 * Returns consistent values for primitive wrapper classes (e.g. int-returning method retuns 0 <b>and</b> Integer-returning method returns 0, too)
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UT_mesh.java 45 mBuilder.addIndexSetAllocation(iAlloc0, Primitive.POINT);
46 mBuilder.addIndexSetType(Primitive.LINE);
47 mBuilder.addIndexSetAllocation(iAlloc2, Primitive.TRIANGLE);
  /libcore/luni/src/main/java/java/io/
OptionalDataException.java 21 * Signals that the {@link ObjectInputStream} class encountered a primitive type
34 * {@code true} indicates that there is no more primitive data available.
39 * The number of bytes of primitive data (int, char, long etc.) that are
  /art/runtime/
primitive.h 30 class Primitive {
113 LOG(FATAL) << "Primitive char conversion on invalid type " << static_cast<int>(type);
119 DISALLOW_IMPLICIT_CONSTRUCTORS(Primitive);
122 std::ostream& operator<<(std::ostream& os, const Primitive::Type& state);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
BERTaggedObject.java 58 ASN1Primitive primitive = obj.toASN1Primitive().toDERObject(); local
60 return primitive.isConstructed();
74 ASN1Primitive primitive = obj.toASN1Primitive(); local
75 int length = primitive.encodedLength();
  /external/chromium_org/ppapi/c/dev/
pp_optional_structs_dev.h 17 * This file defines optional structs for primitive types.
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
TestPlugin.h 44 // It uses WebGraphicsContext3D to paint a scene consisiting of a primitive
45 // over a background. The primitive and background can be customized using
47 // primitive: none (default), triangle.
49 // primitive-color: black (default), red, green, blue.
89 enum Primitive {
95 Primitive primitive; member in struct:WebTestRunner::TestPlugin::Scene
106 : primitive(PrimitiveNone)
119 Primitive parsePrimitive(const blink::WebString&);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_so_emit_tmp.h 21 debug_assert(!"unexpected primitive type in stream output"); \
  /external/junit/src/junit/runner/
TestRunListener.java 5 * this interface using only primitive objects,
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_so_emit_tmp.h 21 debug_assert(!"unexpected primitive type in stream output"); \
  /external/guava/guava/src/com/google/common/primitives/
Primitives.java 27 * Contains static utility methods pertaining to primitive types and their
36 /** A map from primitive types to their corresponding wrapper types. */
39 /** A map from wrapper types to their corresponding primitive types. */
69 * Returns an immutable set of all nine primitive types (including {@code
80 * Returns an immutable set of all nine primitive-wrapper types (including
91 * primitive-wrapper types, such as {@link Integer}.
100 * Returns the corresponding wrapper type of {@code type} if it is a primitive
118 * Returns the corresponding primitive type of {@code type} if it is a
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_gs.c 81 switch (key->primitive) {
106 assert(!"Unexpected primitive type in Gen6 SOL program.");
115 switch (key->primitive) {
172 key->primitive = brw->primitive;
176 if (key->primitive == _3DPRIM_QUADLIST && ctx->Light.ShadeModel != GL_FLAT) {
177 /* Provide consistent primitive order with brw_set_prim's
230 key->need_gs_prog = (brw->primitive == _3DPRIM_QUADLIST ||
231 brw->primitive == _3DPRIM_QUADSTRIP ||
232 brw->primitive == _3DPRIM_LINELOOP)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/vbo/
vbo_primitive_restart.c 42 * Notes on primitive restart:
43 * The code below is used when the driver does not support primitive
50 * 1. Save the list of sub-primitive (start, count) values in a list attached
58 * Finally, some apps might perform better if they don't use primitive restart
156 * Handle primitive restart in software.
158 * This function breaks up calls into the driver so primitive restart
182 * are split based on the primitive restart index value.
200 * each primitive with a break to implement each primitive restart.
205 /* Loop over the sub-primitives drawing sub-ranges of the primitive. *
    [all...]

Completed in 4906 milliseconds

12 3 4 5 6 7 8 91011>>