HomeSort by relevance Sort by last modified time
    Searched defs:Array (Results 76 - 100 of 303) sorted by null

1 2 34 5 6 7 8 91011>>

  /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/caliper/examples/src/main/java/examples/
ListModificationBenchmark.java 37 Array {
54 @Param({"Array", "Linked"})
  /external/clang/test/CodeGenCXX/
alignment.cpp 172 struct Array {
177 __attribute__((aligned(16))) Array aArray;
182 Array bArray;
198 typedef __attribute__((aligned(64))) Array AlignedArray;
202 // CHECK: [[RESULT:%.*]] = alloca [[ARRAY:%.*]], align 64
205 // CHECK: [[T0:%.*]] = bitcast [[ARRAY]]* [[RESULT]] to i8*
206 // CHECK: [[T1:%.*]] = bitcast [[ARRAY]]* [[ARRAY_P]] to i8*
213 // CHECK: [[RESULT:%.*]] = alloca [[ARRAY]], align 64
224 // CHECK: [[T0:%.*]] = bitcast [[ARRAY]]* [[RESULT]] to i8*
225 // CHECK: [[T1:%.*]] = bitcast [[ARRAY]]* [[ARRAY_P]] to i8
    [all...]
  /external/clang/test/SemaCXX/
warn-bool-conversion.cpp 70 namespace Array {
85 // expected-warning@-1{{address of array 'b' will always evaluate to 'true'}}
87 // expected-warning@-1{{address of array 'b' will always evaluate to 'true'}}
89 // expected-warning@-1{{address of array 'c.x' will always evaluate to 'true'}}
91 // expected-warning@-1{{address of array 'str' will always evaluate to 'true'}}
126 int array[5]; member in namespace:macros
131 assert(array);
132 assert(array && "expecting null pointer");
133 // expected-warning@-1{{address of array 'array' will always evaluate to 'true'}
    [all...]
  /external/eigen/Eigen/src/Core/
Array.h 17 struct traits<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > : traits<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> >
20 typedef ArrayBase<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > XprBase;
24 /** \class Array
29 * The %Array class is very similar to the Matrix class. It provides
31 * %Array and the %Matrix class is primarily in the API: the API for the
32 * %Array class provides easy access to coefficient-wise operations, while the
45 class Array
46 : public PlainObjectBase<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> >
50 typedef PlainObjectBase<Array> Base;
51 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/llvm/unittests/Support/
YAMLParserTest.cpp 48 ExpectParseSuccess("Empty array", "[]");
52 ExpectParseError("Not closing array", "[");
53 ExpectParseError("Not closing array", " [ ");
54 ExpectParseError("Not closing array", " [x");
58 ExpectParseSuccess("Array with spaces", " [ ] ");
101 "Multiple objects in array",
129 ExpectParseSuccess("Array of arrays", "[[]]");
175 ExpectParseError("In array starting with EOF", "[");
176 ExpectParseError("In array element starting with EOF", "[[], ");
177 ExpectParseError("In array hitting EOF", "[[] ")
    [all...]
  /external/mesa3d/src/gallium/tools/trace/
model.py 92 class Array(Node):
  /external/python/cpython2/Lib/multiprocessing/
__init__.py 51 'Event', 'Queue', 'JoinableQueue', 'Pool', 'Value', 'Array',
243 Returns a shared array
255 def Array(typecode_or_type, size_or_initializer, **kwds):
257 Returns a synchronized shared array
259 from multiprocessing.sharedctypes import Array
260 return Array(typecode_or_type, size_or_initializer, **kwds)
  /external/python/cpython2/Lib/multiprocessing/dummy/
__init__.py 48 import array
128 def Array(typecode, sequence, lock=True):
129 return array.array(typecode, sequence)
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
__init__.py 51 'Event', 'Queue', 'JoinableQueue', 'Pool', 'Value', 'Array',
243 Returns a shared array
255 def Array(typecode_or_type, size_or_initializer, **kwds):
257 Returns a synchronized shared array
259 from multiprocessing.sharedctypes import Array
260 return Array(typecode_or_type, size_or_initializer, **kwds)
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/dummy/
__init__.py 48 import array
128 def Array(typecode, sequence, lock=True):
129 return array.array(typecode, sequence)
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
__init__.py 51 'Event', 'Queue', 'JoinableQueue', 'Pool', 'Value', 'Array',
243 Returns a shared array
255 def Array(typecode_or_type, size_or_initializer, **kwds):
257 Returns a synchronized shared array
259 from multiprocessing.sharedctypes import Array
260 return Array(typecode_or_type, size_or_initializer, **kwds)
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/dummy/
__init__.py 48 import array
128 def Array(typecode, sequence, lock=True):
129 return array.array(typecode, sequence)
  /prebuilts/go/darwin-x86/test/
named.go 12 type Array [10]byte
23 func asArray(Array) {}
38 func isArray(x interface{}) { _ = x.(Array) }
49 a Array
63 asArray(Array{})
64 isArray(Array{})
  /prebuilts/go/linux-x86/test/
named.go 12 type Array [10]byte
23 func asArray(Array) {}
38 func isArray(x interface{}) { _ = x.(Array) }
49 a Array
63 asArray(Array{})
64 isArray(Array{})
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
__init__.py 51 'Event', 'Queue', 'JoinableQueue', 'Pool', 'Value', 'Array',
243 Returns a shared array
255 def Array(typecode_or_type, size_or_initializer, **kwds):
257 Returns a synchronized shared array
259 from multiprocessing.sharedctypes import Array
260 return Array(typecode_or_type, size_or_initializer, **kwds)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
__init__.py 48 import array
128 def Array(typecode, sequence, lock=True):
129 return array.array(typecode, sequence)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
__init__.py 51 'Event', 'Queue', 'JoinableQueue', 'Pool', 'Value', 'Array',
243 Returns a shared array
255 def Array(typecode_or_type, size_or_initializer, **kwds):
257 Returns a synchronized shared array
259 from multiprocessing.sharedctypes import Array
260 return Array(typecode_or_type, size_or_initializer, **kwds)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
__init__.py 48 import array
128 def Array(typecode, sequence, lock=True):
129 return array.array(typecode, sequence)
  /external/llvm/include/llvm/CodeGen/
LiveIntervalUnion.h 186 // Array of LiveIntervalUnions.
187 class Array {
191 Array() : Size(0), LIUs(nullptr) {}
192 ~Array() { clear(); }
194 // Initialize the array to have Size entries.
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
LiveIntervalUnion.h 166 // Array of LiveIntervalUnions.
167 class Array {
172 Array() = default;
173 ~Array() { clear(); }
175 // Initialize the array to have Size entries.
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
LiveIntervalUnion.h 166 // Array of LiveIntervalUnions.
167 class Array {
172 Array() = default;
173 ~Array() { clear(); }
175 // Initialize the array to have Size entries.
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
LiveIntervalUnion.h 166 // Array of LiveIntervalUnions.
167 class Array {
172 Array() = default;
173 ~Array() { clear(); }
175 // Initialize the array to have Size entries.
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
LiveIntervalUnion.h 166 // Array of LiveIntervalUnions.
167 class Array {
172 Array() = default;
173 ~Array() { clear(); }
175 // Initialize the array to have Size entries.

Completed in 1758 milliseconds

1 2 34 5 6 7 8 91011>>