HomeSort by relevance Sort by last modified time
    Searched defs:Array (Results 101 - 125 of 236) sorted by null

1 2 3 45 6 7 8 910

  /external/clang/test/SemaTemplate/
temp_arg_type.cpp 34 struct Array {
39 A1<Array<int, 17>::type> ax;
  /external/llvm/unittests/Support/
YAMLParserTest.cpp 49 ExpectParseSuccess("Empty array", "[]");
53 ExpectParseError("Not closing array", "[");
54 ExpectParseError("Not closing array", " [ ");
55 ExpectParseError("Not closing array", " [x");
59 ExpectParseSuccess("Array with spaces", " [ ] ");
102 "Multiple objects in array",
130 ExpectParseSuccess("Array of arrays", "[[]]");
137 ExpectParseError("In array starting with EOF", "[");
138 ExpectParseError("In array element starting with EOF", "[[], ");
139 ExpectParseError("In array hitting EOF", "[[] ")
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
FrameValues.java 19 import java.lang.reflect.Array;
26 * This returns 1, if the Frame value is null, or if the value is not an array.
35 return Array.getLength(super.getValue());
40 * Returns the values in the Frame as an array.
42 * Note, that this may be called on Frames that have a non-array object assigned to them. In
43 * that case, this method will wrap the object in an array and return that. This way, filters
46 * @return The array of values in this frame.
53 // Allow reading a single as an array.
54 Object[] array = (Object[])Array.newInstance(value.getClass(), 1) local
    [all...]
  /libcore/luni/src/main/java/java/security/cert/
PolicyQualifierInfo.java 22 import org.apache.harmony.security.utils.Array;
113 sb.append(Array.toString(policyQualifier, " "));
TrustAnchor.java 23 import org.apache.harmony.security.utils.Array;
35 * representation of a so called "Name Constraints" extension as a byte array.
257 sb.append(Array.toString(nameConstraints, " "));
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
Certificate.java 30 import org.apache.harmony.security.utils.Array;
97 result.append(Array.toString(signatureValue, ""));
CertificateList.java 30 import org.apache.harmony.security.utils.Array;
95 result.append(Array.toString(signatureValue, ""));
AuthorityKeyIdentifier.java 33 import org.apache.harmony.security.utils.Array;
112 sb.append(Array.toString(keyIdentifier, prefix + " "));
  /external/chromium_org/v8/test/mjsunit/es7/
object-observe.js 80 assertTrue(r instanceof Array)
693 __proto__: Array.prototype,
747 __proto__: Array.prototype,
756 Array.prototype.push.apply(self, cut);
760 Array.prototype.push.apply(self, cut);
1338 var array = [1, 2]; variable
1360 var array = [1, 2]; variable
1374 var array = [1, 2]; variable
1389 var array = [1, 2]; variable
1403 var array = [1, 2, 3]; variable
1416 var array = [3, 2, 1]; variable
1517 var array = [1, 2]; variable
1538 var array = [1, 2]; variable
1560 var array = [1, 2]; variable
1587 var array = [1, 2, 3]; variable
1624 var array = [0]; variable
    [all...]
  /external/chromium_org/v8/test/mjsunit/
array-sort.js 30 // Test array sort.
151 // Test array sorting with holes in the array.
164 // Test array sorting with undefined elemeents in the array.
175 // in the array.
193 Array.prototype.sort.call(obj);
209 var x = new Array(4);
213 Array.prototype.sort.call(x);
232 Array.prototype.sort.call(x)
    [all...]
  /art/test/003-omnibus-opcodes/src/
Array.java 20 public class Array {
23 * Verify array contents.
86 System.out.println("Array.checkRange32");
141 System.out.println("Array.checkRange64");
188 System.out.println("Array.checkNegAlloc");
208 System.out.println("Array check...");
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
core-extensions.rb 202 relative_list = Array.new( reference_list.length, '..' )
230 class Array
232 # Pad an array with a given <tt>value</tt> upto a given <tt>length</tt>.
237 # to the beginning of the array.
246 Array.new( ( len+size ).abs,val ) + self
248 self + Array.new( len-size,val )
252 # Like #pad but changes the array in place.
263 replace Array.new( ( len+size ).abs,val ) + self
265 concat Array.new( len-size,val )
  /external/chromium_org/third_party/mesa/src/src/gallium/tools/trace/
model.py 74 class Array(Node):
  /external/chromium_org/tools/code_coverage/third_party/
sorttable.js 140 // build an array to sort. This is a Schwartzian transform thing,
449 // array-like enumeration
450 if (!Array.forEach) { // mozilla already supports this
451 Array.forEach = function(array, block, context) {
452 for (var i = 0; i < array.length; i++) {
453 block.call(context, array[i], i, array);
469 Array.forEach(string.split(""), function(chr, index) {
489 // the object is array-lik
    [all...]
  /external/clang/tools/scan-build/
sorttable.js 140 // build an array to sort. This is a Schwartzian transform thing,
447 // array-like enumeration
448 if (!Array.forEach) { // mozilla already supports this
449 Array.forEach = function(array, block, context) {
450 for (var i = 0; i < array.length; i++) {
451 block.call(context, array[i], i, array);
467 Array.forEach(string.split(""), function(chr, index) {
487 // the object is array-lik
    [all...]
  /external/eigen/Eigen/src/Core/
Array.h 15 /** \class Array
20 * The %Array class is very similar to the Matrix class. It provides
22 * %Array and the %Matrix class is primarily in the API: the API for the
23 * %Array class provides easy access to coefficient-wise operations, while the
34 struct traits<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > : traits<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> >
37 typedef ArrayBase<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > XprBase;
42 class Array
43 : public PlainObjectBase<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> >
47 typedef PlainObjectBase<Array> Base;
48 EIGEN_DENSE_PUBLIC_INTERFACE(Array)
    [all...]
  /external/javassist/src/main/javassist/bytecode/annotation/
ArrayMemberValue.java 20 import java.lang.reflect.Array;
24 * Array member.
34 * Constructs an array. The initial value or type are not specified.
43 * Constructs an array. The initial value is not specified.
45 * @param t the type of the array elements.
58 "no array elements found: " + method.getName());
65 throw new ClassNotFoundException("broken array type: "
71 Object a = Array.newInstance(clazz, size);
73 Array.set(a, i, values[i].getValue(cl, cp, method));
80 throw new ClassNotFoundException("no array type specified")
    [all...]
  /external/mesa3d/src/gallium/tools/trace/
model.py 74 class Array(Node):
  /frameworks/base/tools/preload/
sorttable.js 140 // build an array to sort. This is a Schwartzian transform thing,
447 // array-like enumeration
448 if (!Array.forEach) { // mozilla already supports this
449 Array.forEach = function(array, block, context) {
450 for (var i = 0; i < array.length; i++) {
451 block.call(context, array[i], i, array);
467 Array.forEach(string.split(""), function(chr, index) {
487 // the object is array-lik
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/utils/
Array.java 30 public class Array {
33 private Array() {
46 * Represents <code>array</code> as <code>String</code>
47 * for printing. Array length can be up to 32767
49 * @param array to be represented as <code>String</code>
51 * @return <code>String</code> representation of the <code>array</code>
53 public static String toString(byte[] array, String prefix) {
66 for (i=0; i<array.length; i++) {
79 sb.append(Byte.toHexString(array[i], false));
81 int currentByte = (0xff & array[i])
    [all...]
  /prebuilts/misc/darwin-x86/analyzer/tools/scan-build/
sorttable.js 140 // build an array to sort. This is a Schwartzian transform thing,
447 // array-like enumeration
448 if (!Array.forEach) { // mozilla already supports this
449 Array.forEach = function(array, block, context) {
450 for (var i = 0; i < array.length; i++) {
451 block.call(context, array[i], i, array);
467 Array.forEach(string.split(""), function(chr, index) {
487 // the object is array-lik
    [all...]
  /prebuilts/misc/linux-x86/analyzer/tools/scan-build/
sorttable.js 140 // build an array to sort. This is a Schwartzian transform thing,
447 // array-like enumeration
448 if (!Array.forEach) { // mozilla already supports this
449 Array.forEach = function(array, block, context) {
450 for (var i = 0; i < array.length; i++) {
451 block.call(context, array[i], i, array);
467 Array.forEach(string.split(""), function(chr, index) {
487 // the object is array-lik
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/app/
view.js 11 Array.prototype.forEach.call(this.buttons, function(button) {
  /external/chromium_org/v8/tools/profviz/
composer.js 28 Array.prototype.top = function() {
  /external/lldb/tools/lldb-perf/lib/
Results.h 23 class Array;
35 Array,
61 Array *
64 if (m_type == Type::Array)
65 return (Array *)this;
128 class Array : public Result
131 Array (const char *name, const char *description) :
132 Result (Type::Array, name, description)
137 ~Array()

Completed in 1505 milliseconds

1 2 3 45 6 7 8 910