Searched refs:values (Results 251 - 275 of 1772) sorted by relevance

<<11121314151617181920>>

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
H A DStopTest.java83 int values = reply.getNextValueAsInt();
84 if (values != 1) {
85 logWriter.println("## testStop001: Unexpected number of values = " + values);
86 logWriter.println("## Expected number of values = 1");
87 fail("Unexpected number of values: " + values + ", expected: 1");
/external/ceres-solver/internal/ceres/
H A Dblock_random_access_dense_matrix.h83 const double* values() const { return values_.get(); } function in class:ceres::internal::BlockRandomAccessDenseMatrix
H A Dsparse_matrix.h52 // sparse matrix will have a two part representation. A values array
55 // structure and layout of the values array. For example in case of
92 // Accessors for the values array that stores the entries of the
93 // sparse matrix. The exact interpreptation of the values of this
97 virtual const double* values() const = 0;
/external/clang/test/CodeGenCXX/
H A Ddebug-info-template-member.cpp89 T* values; member in struct:virt
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DStatistics.java81 for (Data data : dataMap.values()) {
85 for (Data data : sortedData.values()) {
97 for (Data data : dataMap.values()) {
101 for (Data data : sortedData.values()) {
/external/doclava/src/com/google/doclava/
H A DAnnotationValueInfo.java74 ArrayList<AnnotationValueInfo> values = (ArrayList<AnnotationValueInfo>) v;
77 for (AnnotationValueInfo info : values) {
79 if (info != values.get(values.size()-1)) {
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DAbstractListPropertyEditor.java160 String[] values = null;
163 values = list.toArray(new String[list.size()]);
166 values = null;
171 return values;
/external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/message/
H A DPoloMessage.java31 * phases. The values are synchronized with the constants defined in
51 for (PoloMessageType messageType : PoloMessageType.values()) {
/external/guava/guava/src/com/google/common/collect/
H A DBiMap.java28 * its values as well as that of its keys. This constraint enables bimaps to
30 * as this bimap but with reversed keys and values.
92 * <p>Because a bimap has unique values, this method returns a {@link Set},
97 Set<V> values(); method in interface:BiMap
101 * values to its associated key. The two bimaps are backed by the same data;
/external/guava/guava/src/com/google/thirdparty/publicsuffix/
H A DPublicSuffixType.java53 for (PublicSuffixType value : values()) {
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DSortedListsTest.java94 for (KeyPresentBehavior presentBehavior : KeyPresentBehavior.values()) {
95 for (KeyAbsentBehavior absentBehavior : KeyAbsentBehavior.values()) {
106 for (KeyPresentBehavior presentBehavior : KeyPresentBehavior.values()) {
107 for (KeyAbsentBehavior absentBehavior : KeyAbsentBehavior.values()) {
/external/guava/guava-gwt/test-super/com/google/common/primitives/super/com/google/common/primitives/
H A DByteArrayAsListTest.java37 private static List<Byte> asList(Byte[] values) { argument
38 byte[] temp = new byte[values.length];
39 for (int i = 0; i < values.length; i++) {
40 temp[i] = checkNotNull(values[i]); // checkNotNull for GWT (do not optimize).
H A DCharArrayAsListTest.java37 private static List<Character> asList(Character[] values) { argument
38 char[] temp = new char[values.length];
39 for (int i = 0; i < values.length; i++) {
40 temp[i] = checkNotNull(values[i]); // checkNotNull for GWT (do not optimize).
H A DDoubleArrayAsListTest.java37 private static List<Double> asList(Double[] values) { argument
38 double[] temp = new double[values.length];
39 for (int i = 0; i < values.length; i++) {
40 temp[i] = checkNotNull(values[i]); // checkNotNull for GWT (do not optimize).
H A DFloatArrayAsListTest.java37 private static List<Float> asList(Float[] values) { argument
38 float[] temp = new float[values.length];
39 for (int i = 0; i < values.length; i++) {
40 temp[i] = checkNotNull(values[i]); // checkNotNull for GWT (do not optimize).
H A DIntArrayAsListTest.java38 private static List<Integer> asList(Integer[] values) { argument
39 int[] temp = new int[values.length];
40 for (int i = 0; i < values.length; i++) {
41 temp[i] = checkNotNull(values[i]); // checkNotNull for GWT (do not optimize).
H A DLongArrayAsListTest.java37 private static List<Long> asList(Long[] values) { argument
38 long[] temp = new long[values.length];
39 for (int i = 0; i < values.length; i++) {
40 temp[i] = checkNotNull(values[i]); // checkNotNull for GWT (do not optimize).
H A DShortArrayAsListTest.java37 private static List<Short> asList(Short[] values) { argument
38 short[] temp = new short[values.length];
39 for (short i = 0; i < values.length; i++) {
40 temp[i] = checkNotNull(values[i]); // checkNotNull for GWT (do not optimize).
/external/guava/guava-tests/test/com/google/common/collect/
H A DSortedListsTest.java96 for (KeyPresentBehavior presentBehavior : KeyPresentBehavior.values()) {
97 for (KeyAbsentBehavior absentBehavior : KeyAbsentBehavior.values()) {
108 for (KeyPresentBehavior presentBehavior : KeyPresentBehavior.values()) {
109 for (KeyAbsentBehavior absentBehavior : KeyAbsentBehavior.values()) {
/external/icu/icu4c/source/tools/toolutil/
H A Ddenseranges.cpp89 * @param values Sorted array of signed-integer values.
90 * @param length Number of values.
99 uprv_makeDenseRanges(const int32_t values[], int32_t length, argument
105 int32_t minValue=values[0];
106 int32_t maxValue=values[length-1]; // Assume minValue<=maxValue.
126 int32_t actualValue=values[i];
132 // We know gaps.count()>=1 because we have fewer values (length) than
138 // The values are too sparse for capacity or fewer ranges
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DTimeUnit.java34 * @return the available values
37 public static TimeUnit[] values() { method in class:TimeUnit
/external/iproute2/misc/
H A Dlnstat.h20 unsigned long values[2]; /* two buffers for values */ member in struct:lnstat_field
/external/jmdns/src/javax/jmdns/impl/constants/
H A DDNSOperationCode.java75 for (DNSOperationCode aCode : DNSOperationCode.values()) {
H A DDNSOptionCode.java67 for (DNSOptionCode aCode : DNSOptionCode.values()) {
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DSimpleBatchNode.java43 for (Batch batch : batches.values()) {

Completed in 685 milliseconds

<<11121314151617181920>>