Searched refs:primitive (Results 1 - 25 of 26) sorted by relevance

12

/external/v8/test/mjsunit/regress/
H A Dregress-1973.js31 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/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDERTaggedObject.java43 ASN1Primitive primitive = obj.toASN1Primitive().toDERObject();
45 return primitive.isConstructed();
59 ASN1Primitive primitive = obj.toASN1Primitive().toDERObject();
60 int length = primitive.encodedLength();
86 ASN1Primitive primitive = obj.toASN1Primitive().toDERObject();
91 out.writeLength(primitive.encodedLength());
92 out.writeObject(primitive);
100 if (primitive.isConstructed())
110 out.writeImplicitObject(primitive);
H A DDLTaggedObject.java38 ASN1Primitive primitive = obj.toASN1Primitive().toDLObject();
40 return primitive.isConstructed();
80 ASN1Primitive primitive = obj.toASN1Primitive().toDLObject();
85 out.writeLength(primitive.encodedLength());
86 out.writeObject(primitive);
94 if (primitive.isConstructed())
104 out.writeImplicitObject(primitive);
H A DBERTaggedObject.java58 ASN1Primitive primitive = obj.toASN1Primitive().toDERObject();
60 return primitive.isConstructed();
74 ASN1Primitive primitive = obj.toASN1Primitive();
75 int length = primitive.encodedLength();
H A DDERApplicationSpecific.java49 ASN1Primitive primitive = object.toASN1Primitive();
51 byte[] data = primitive.getEncoded(ASN1Encoding.DER);
53 this.isConstructed = explicit || (primitive instanceof ASN1Set || primitive instanceof ASN1Sequence);
108 ASN1Primitive primitive = ((ASN1Encodable)obj).toASN1Primitive();
110 if (primitive instanceof ASN1Sequence)
112 return (DERApplicationSpecific)primitive;
H A DASN1OctetString.java67 ASN1Primitive primitive = ((ASN1Encodable)obj).toASN1Primitive();
69 if (primitive instanceof ASN1OctetString)
71 return (ASN1OctetString)primitive;
H A DASN1Sequence.java42 ASN1Primitive primitive = ((ASN1Encodable)obj).toASN1Primitive();
44 if (primitive instanceof ASN1Sequence)
46 return (ASN1Sequence)primitive;
H A DASN1Set.java44 ASN1Primitive primitive = ((ASN1Encodable)obj).toASN1Primitive();
46 if (primitive instanceof ASN1Set)
48 return (ASN1Set)primitive;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.databinding_1.3.100.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.ds_1.2.1.R36x_v20100803.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/emma/core/java12/com/vladium/jcd/lib/
H A DTypes.java505 else // primitive type
507 return primitive (first);
523 else // primitive type
525 component = primitive (first);
533 Class primitive (char c) throws ClassNotFoundException method in class:Types.typeDescriptorCompiler
563 else // primitive type
564 return primitive (first);
581 else // primitive type
582 component = primitive (first);
589 String primitive (cha method in class:Types.typeDescriptorCompiler2
[all...]
/external/webkit/Source/JavaScriptCore/runtime/
H A DDateConstructor.cpp85 JSValue primitive = args.at(0).toPrimitive(exec); local
86 if (primitive.isString())
87 value = parseDate(exec, primitive.getString(exec));
89 value = primitive.toNumber(exec);
H A DJSObject.cpp475 JSValue primitive = toPrimitive(exec, PreferNumber); local
478 return primitive.toNumber(exec);
483 JSValue primitive = toPrimitive(exec, PreferString); local
486 return primitive.toString(exec);
/external/guava/guava/src/com/google/common/primitives/
H A Dgenerate.sh4 # Args are: primitive type, capitalized primitive type, wrapper type
72 * The number of bytes required to represent a primitive {@code primtyp}
81 * @param value a primitive {@code primtyp} value
139 * @param target a primitive {@code primtyp} value
157 * @param target a primitive {@code primtyp} value
211 * @param target a primitive {@code primtyp} value
433 * primitive {@code primtyp} values.
/external/skia/third_party/glu/libtess/
H A DREADME96 The "begin" callback indicates the start of a primitive; type is one
102 call. After the last vertex of a given primitive, there is a callback
/external/libvpx/examples/includes/geshi/geshi/
H A Djava5.php93 /* Java keywords, part 3: primitive data types and 'void' */
/external/compiler-rt/BlocksRuntime/
H A Druntime.c81 #error unknown atomic compare-and-swap primitive
/external/mesa3d/docs/
H A DMESA_texture_array.spec279 with each set of window coordinates (x,y) that lie within a primitive;
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/webkit/Source/WebKit/mac/WebView/
H A DWebView.mm4658 JSValue primitive = object->toPrimitive(exec);
4663 return aeDescFromJSValue(exec, primitive);
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/libxml2/
H A Dxmlschemas.c13395 * Returns the primitive type of the given type or
13404 * Note that anySimpleType is actually not a primitive type
13421 * Returns the primitive type of the given type or
15203 * must be possible to reach a built-in primitive datatype or the �simple
15238 xmlSchemaTypePtr primitive; local
15241 * type definition or a built-in primitive datatype.
15268 * 1.3.1 DF must be an allowed constraining facet for the {primitive
15276 primitive = xmlSchemaGetPrimitiveType(type);
15277 if (primitive == NULL) {
15279 "failed to get primitive typ
[all...]
/external/grub/docs/
H A Dtexinfo.tex3703 % part of (the primitive) \par. Without it, a spurious underfull
6308 % Replace the \insert primitive by a cheating macro.
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.mli528 primitive type [ty]. See the method [llvm::ArrayType::get]. *)
/external/dropbear/libtomcrypt/
H A Dcrypt.tex178 This flexibility within the library means it can be used with any combination of primitive algorithms and
1439 CCM is a NIST proposal for encrypt + authenticate that is centered around using AES (or any 16--byte cipher) as a primitive. Unlike EAX and OCB mode,

Completed in 456 milliseconds

12