HomeSort by relevance Sort by last modified time
    Searched full:values (Results 301 - 325 of 13487) sorted by null

<<11121314151617181920>>

  /prebuilt/darwin-x86/toolchain/arm-eabi-4.2.1/lib/gcc/arm-eabi/4.2.1/include/
limits.h 13 /* Minimum and maximum values a `signed char' can hold. */
27 /* Minimum and maximum values a `char' can hold. */
44 /* Minimum and maximum values a `signed short int' can hold. */
58 /* Minimum and maximum values a `signed int' can hold. */
68 /* Minimum and maximum values a `signed long int' can hold.
80 /* Minimum and maximum values a `signed long long int' can hold. */
92 /* Minimum and maximum values a `signed long long int' can hold. */
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.2.1/lib/gcc/arm-eabi/4.2.1/install-tools/include/
limits.h 13 /* Minimum and maximum values a `signed char' can hold. */
27 /* Minimum and maximum values a `char' can hold. */
44 /* Minimum and maximum values a `signed short int' can hold. */
58 /* Minimum and maximum values a `signed int' can hold. */
68 /* Minimum and maximum values a `signed long int' can hold.
80 /* Minimum and maximum values a `signed long long int' can hold. */
92 /* Minimum and maximum values a `signed long long int' can hold. */
  /prebuilt/linux-x86/toolchain/arm-eabi-4.2.1/lib/gcc/arm-eabi/4.2.1/include/
limits.h 13 /* Minimum and maximum values a `signed char' can hold. */
27 /* Minimum and maximum values a `char' can hold. */
44 /* Minimum and maximum values a `signed short int' can hold. */
58 /* Minimum and maximum values a `signed int' can hold. */
68 /* Minimum and maximum values a `signed long int' can hold.
80 /* Minimum and maximum values a `signed long long int' can hold. */
92 /* Minimum and maximum values a `signed long long int' can hold. */
  /prebuilt/linux-x86/toolchain/arm-eabi-4.2.1/lib/gcc/arm-eabi/4.2.1/install-tools/include/
limits.h 13 /* Minimum and maximum values a `signed char' can hold. */
27 /* Minimum and maximum values a `char' can hold. */
44 /* Minimum and maximum values a `signed short int' can hold. */
58 /* Minimum and maximum values a `signed int' can hold. */
68 /* Minimum and maximum values a `signed long int' can hold.
80 /* Minimum and maximum values a `signed long long int' can hold. */
92 /* Minimum and maximum values a `signed long long int' can hold. */
  /prebuilt/linux-x86/toolchain/arm-eabi-4.3.1/lib/gcc/arm-eabi/4.3.1/include-fixed/
limits.h 13 /* Minimum and maximum values a `signed char' can hold. */
27 /* Minimum and maximum values a `char' can hold. */
44 /* Minimum and maximum values a `signed short int' can hold. */
58 /* Minimum and maximum values a `signed int' can hold. */
68 /* Minimum and maximum values a `signed long int' can hold.
80 /* Minimum and maximum values a `signed long long int' can hold. */
92 /* Minimum and maximum values a `signed long long int' can hold. */
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Audio_GenresTest.java 49 + "document related to the possible values of param volumeName. @throw clause "
72 ContentValues values = new ContentValues(); local
73 values.put(Genres.NAME, "POP");
74 Uri uri = mContentResolver.insert(Genres.EXTERNAL_CONTENT_URI, values);
87 values.clear();
88 values.put(Genres.NAME, "ROCK");
89 assertEquals(1, mContentResolver.update(uri, values, null, null));
101 ContentValues values = new ContentValues(); local
102 values.put(Genres.NAME, "POP");
103 Uri uri = mContentResolver.insert(Genres.INTERNAL_CONTENT_URI, values);
    [all...]
  /external/clang/include/clang/Driver/
Arg.h 26 /// derive the argument values efficiently. In addition, Arg
50 /// Does this argument own its values.
53 /// The argument values, as C strings.
54 SmallVector<const char *, 2> Values;
85 unsigned getNumValues() const { return Values.size(); }
87 return Values[N];
91 return Values;
96 if (Values[i] == Value)
106 /// options only render their values when rendered as a input
115 /// its values, for debugging and diagnostics
    [all...]
  /frameworks/base/tools/localize/
file_utils.cpp 56 const char* values = p; local
61 rest = values;
62 values = p;
63 if (0 == strncmp("values", values+1, rest-values-1)) {
68 values++;
70 string result(str, values-str);
71 result.append(values, rest-values);
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/pkcs10/
CertificationRequestInfo.java 116 Object[] values = (Object[]) in.content;
118 ASN1Integer.toIntValue(values[0]),
119 (Name) values[1],
120 (SubjectPublicKeyInfo) values[2],
121 (List<?>) values[3],
125 @Override protected void getValues(Object object, Object[] values) {
127 values[0] = ASN1Integer.fromIntValue(certReqInfo.version);
128 values[1] = certReqInfo.subject;
129 values[2] = certReqInfo.subjectPublicKeyInfo;
130 values[3] = certReqInfo.attributes
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/pkcs8/
PrivateKeyInfo.java 115 Object[] values = (Object[]) in.content;
116 return new PrivateKeyInfo(ASN1Integer.toIntValue(values[0]),
117 (AlgorithmIdentifier) values[1], (byte[]) values[2],
118 (List) values[3], in.getEncoded());
121 protected void getValues(Object object, Object[] values) {
123 values[0] = ASN1Integer.fromIntValue(privateKeyInfo.version);
124 values[1] = privateKeyInfo.privateKeyAlgorithm;
125 values[2] = privateKeyInfo.privateKey;
126 values[3] = privateKeyInfo.attributes
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/tsp/
PKIStatusInfo.java 103 protected void getValues(Object object, Object[] values) {
105 values[0] = BigInteger.valueOf(psi.status.getStatus())
107 values[1] = psi.statusString;
113 values[2] = new BitString(failInfoBoolArray);
115 values[2] = null;
120 Object[] values = (Object[]) in.content;
123 if (values[2] != null) {
124 boolean[] failInfoBoolArray = ((BitString) values[2]).toBooleanArray();
133 PKIStatus.getInstance(ASN1Integer.toIntValue(values[0])),
134 (List)values[1]
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/x509/
X509Attribute.java 12 * Class for carrying the values in an X.509 Attribute.
47 * @param value vector of values to go in the attribute's value set.
64 ASN1Encodable[] values = new ASN1Encodable[s.size()]; local
68 values[i] = (ASN1Encodable)s.getObjectAt(i);
71 return values;
  /external/chromium/base/
string_split_unittest.cc 16 std::vector<std::string> values; member in class:base::SplitStringIntoKeyValuesTest
22 &key, &values));
24 EXPECT_TRUE(values.empty());
30 &key, &values));
32 EXPECT_TRUE(values.empty());
38 &key, &values));
40 ASSERT_EQ(1U, values.size());
46 &key, &values));
48 ASSERT_EQ(1U, values.size());
49 EXPECT_EQ("value1, value2 value3", values[0])
    [all...]
  /external/chromium/chrome/browser/prefs/
pref_value_store.h 16 #include "base/values.h"
24 // The PrefValueStore manages various sources of values for Preferences
27 // allows setting user-defined values for preferences that are not managed.
35 // preference values.
37 // values.
38 // |extension_prefs| contains preference values set by extensions.
39 // |command_line_prefs| contains preference values set by command-line
41 // |user_prefs| contains all user-set preference values.
43 // preference values.
45 // preference values
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/string/
SliceFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
22 import static com.google.clearsilver.jsilver.values.Value.literalValue;
34 * @param args 1 string values then 2 numeric values (start and end).
  /external/skia/src/animator/
SkOperandInterpolator.h 33 /** Add or replace a key frame, copying the values[] data into the interpolator.
36 @param values The array of values [elemCount] for this frame. The data is copied
43 bool setKeyFrame(int index, SkMSec time, const SkOperand values[], SkScalar blend = SK_Scalar1);
44 Result timeToValues(SkMSec time, SkOperand values[]) const;
  /external/stlport/test/unit/
macro_checks.cpp 22 # error Weird CHAR_MIN or CHAR_MAX macro values.
34 # error Weird INT_MIN or INT_MAX macro values.
46 # error Weird LONG_MIN or LONG_MAX macro values.
58 # error Weird SCHAR_MIN or SCHAR_MAX macro values.
70 # error Weird SHRT_MIN or SHRT_MAX macro values.
  /frameworks/base/core/java/android/animation/
FloatEvaluator.java 20 * This evaluator can be used to perform type interpolation between <code>float</code> values.
25 * This function returns the result of linearly interpolating the start and end values, with
26 * <code>fraction</code> representing the proportion between the start and end values. The
31 * @param fraction The fraction from the starting to the ending values
35 * @return A linear interpolation between the start and end values, given the
IntEvaluator.java 20 * This evaluator can be used to perform type interpolation between <code>int</code> values.
25 * This function returns the result of linearly interpolating the start and end values, with
26 * <code>fraction</code> representing the proportion between the start and end values. The
31 * @param fraction The fraction from the starting to the ending values
35 * @return A linear interpolation between the start and end values, given the
  /frameworks/base/core/java/android/widget/
CursorFilter.java 54 results.values = cursor;
57 results.values = null;
66 if (results.values != null && results.values != oldCursor) {
67 mClient.changeCursor((Cursor) results.values);
  /frameworks/support/v4/java/android/support/v4/widget/
CursorFilter.java 55 results.values = cursor;
58 results.values = null;
67 if (results.values != null && results.values != oldCursor) {
68 mClient.changeCursor((Cursor) results.values);
  /libcore/luni/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
ElementTypeTest.java 45 ElementType[] values = ElementType.values(); local
46 assertTrue(values.length > 1);
47 Arrays.sort(values);
48 assertTrue(Arrays.binarySearch(values, ElementType.METHOD) >= 0);
  /ndk/tests/device/test-gnustl-full/unit/
macro_checks.cpp 22 # error Weird CHAR_MIN or CHAR_MAX macro values.
34 # error Weird INT_MIN or INT_MAX macro values.
46 # error Weird LONG_MIN or LONG_MAX macro values.
58 # error Weird SCHAR_MIN or SCHAR_MAX macro values.
70 # error Weird SHRT_MIN or SHRT_MAX macro values.
  /ndk/tests/device/test-stlport/unit/
macro_checks.cpp 22 # error Weird CHAR_MIN or CHAR_MAX macro values.
34 # error Weird INT_MIN or INT_MAX macro values.
46 # error Weird LONG_MIN or LONG_MAX macro values.
58 # error Weird SCHAR_MIN or SCHAR_MAX macro values.
70 # error Weird SHRT_MIN or SHRT_MAX macro values.
  /sdk/monkeyrunner/src/com/android/monkeyrunner/recorder/actions/
DragAction.java 37 Direction[] values = Direction.values(); typedefs
38 names = new String[values.length];
39 for (int x = 0; x < values.length; x++) {
40 names[x] = values[x].name();

Completed in 398 milliseconds

<<11121314151617181920>>