HomeSort by relevance Sort by last modified time
    Searched refs:TYPE_INTEGER (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /external/proguard/src/proguard/evaluation/value/
Value.java 34 public static final int TYPE_INTEGER = 1;
145 * @return <code>TYPE_INTEGER</code>,
  /external/protobuf/src/google/protobuf/io/
tokenizer_unittest.cc 212 { "123", Tokenizer::TYPE_INTEGER },
213 { "0xab6", Tokenizer::TYPE_INTEGER },
214 { "0XAB6", Tokenizer::TYPE_INTEGER },
215 { "0X1234567", Tokenizer::TYPE_INTEGER },
216 { "0x89abcdef", Tokenizer::TYPE_INTEGER },
217 { "0x89ABCDEF", Tokenizer::TYPE_INTEGER },
218 { "01234567", Tokenizer::TYPE_INTEGER },
350 { Tokenizer::TYPE_INTEGER , "1" , 0, 4, 5 },
    [all...]
tokenizer.h 107 TYPE_INTEGER, // A sequence of digits representing an integer. Normally
212 // Parses a TYPE_INTEGER token. Returns false if the result would be
214 // result. If the text is not from a Token of type TYPE_INTEGER originally
328 // Read and consume a number, returning TYPE_FLOAT or TYPE_INTEGER
  /external/libchrome/dbus/
values_util.cc 72 case base::Value::TYPE_INTEGER:
229 case base::Value::TYPE_INTEGER: {
294 case base::Value::TYPE_INTEGER:
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/io/
tokenizer.h 98 TYPE_INTEGER, // A sequence of digits representing an integer. Normally
203 // Parses a TYPE_INTEGER token. Returns false if the result would be
205 // result. If the text is not from a Token of type TYPE_INTEGER originally
301 // Read and consume a number, returning TYPE_FLOAT or TYPE_INTEGER
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/io/
tokenizer.h 98 TYPE_INTEGER, // A sequence of digits representing an integer. Normally
203 // Parses a TYPE_INTEGER token. Returns false if the result would be
205 // result. If the text is not from a Token of type TYPE_INTEGER originally
301 // Read and consume a number, returning TYPE_FLOAT or TYPE_INTEGER
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/io/
tokenizer.h 98 TYPE_INTEGER, // A sequence of digits representing an integer. Normally
203 // Parses a TYPE_INTEGER token. Returns false if the result would be
205 // result. If the text is not from a Token of type TYPE_INTEGER originally
301 // Read and consume a number, returning TYPE_FLOAT or TYPE_INTEGER
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/io/
tokenizer.h 107 TYPE_INTEGER, // A sequence of digits representing an integer. Normally
212 // Parses a TYPE_INTEGER token. Returns false if the result would be
214 // result. If the text is not from a Token of type TYPE_INTEGER originally
328 // Read and consume a number, returning TYPE_FLOAT or TYPE_INTEGER
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/io/
tokenizer.h 98 TYPE_INTEGER, // A sequence of digits representing an integer. Normally
203 // Parses a TYPE_INTEGER token. Returns false if the result would be
205 // result. If the text is not from a Token of type TYPE_INTEGER originally
301 // Read and consume a number, returning TYPE_FLOAT or TYPE_INTEGER
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/provider/
FeedProvider.java 220 private static final String TYPE_INTEGER = " INTEGER";
229 FeedContract.Entry.COLUMN_NAME_PUBLISHED + TYPE_INTEGER + ")";
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/provider/
FeedProvider.java 220 private static final String TYPE_INTEGER = " INTEGER";
229 FeedContract.Entry.COLUMN_NAME_PUBLISHED + TYPE_INTEGER + ")";
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/provider/
FeedProvider.java 220 private static final String TYPE_INTEGER = " INTEGER";
229 FeedContract.Entry.COLUMN_NAME_PUBLISHED + TYPE_INTEGER + ")";
  /frameworks/base/core/java/android/content/
RestrictionEntry.java 84 public static final int TYPE_INTEGER = 5;
183 * Constructor for {@link #TYPE_INTEGER} type.
189 mType = TYPE_INTEGER;
288 * Returns the value of the entry as an integer when the type is {@link #TYPE_INTEGER}.
296 * Sets the integer value of the entry when the type is {@link #TYPE_INTEGER}.
RestrictionsManager.java 636 case RestrictionEntry.TYPE_INTEGER:
685 * <tr><td>{@link RestrictionEntry#TYPE_INTEGER}</td><td>{@link Bundle#putInt}</td></tr>
711 case RestrictionEntry.TYPE_INTEGER:
  /frameworks/base/tools/aapt2/link/
ManifestFixer_test.cpp 45 android::ResTable_map::TYPE_INTEGER)
51 android::ResTable_map::TYPE_INTEGER)
  /external/libchrome/base/json/
json_reader_unittest.cc 54 EXPECT_TRUE(root->IsType(Value::TYPE_INTEGER));
78 EXPECT_TRUE(root->IsType(Value::TYPE_INTEGER));
86 EXPECT_TRUE(root->IsType(Value::TYPE_INTEGER));
95 EXPECT_TRUE(root->IsType(Value::TYPE_INTEGER));
113 EXPECT_TRUE(root->IsType(Value::TYPE_INTEGER));
json_writer.cc 73 case Value::TYPE_INTEGER: {
  /external/libchrome/base/
values.cc 165 : Value(TYPE_INTEGER), integer_value_(in_value) {
187 if (out_value && IsType(TYPE_INTEGER))
189 return (IsType(TYPE_INTEGER));
195 else if (out_value && IsType(TYPE_INTEGER))
197 return (IsType(TYPE_DOUBLE) || IsType(TYPE_INTEGER));
205 case TYPE_INTEGER:
226 case TYPE_INTEGER: {
  /external/libchrome/base/trace_event/
trace_event_memory_overhead.cc 74 case Value::TYPE_INTEGER:
trace_event_argument.cc 258 case base::Value::TYPE_INTEGER: {
312 case base::Value::TYPE_INTEGER: {
  /external/protobuf/src/google/protobuf/
text_format.cc 684 if (LookingAtType(io::Tokenizer::TYPE_INTEGER)) {
715 LookingAtType(io::Tokenizer::TYPE_INTEGER)) {
760 // 12345 => TYPE_INTEGER
761 // -12345 => TYPE_SYMBOL + TYPE_INTEGER
766 // TYPE_INTEGER => TYPE_IDENTIFIER
770 // 12345 => TYPE_INTEGER
773 // TYPE_INTEGER => TYPE_IDENTIFIER
775 // -12345 => TYPE_SYMBOL + TYPE_INTEGER
779 // TYPE_INTEGER, TYPE_FLOAT and TYPE_IDENTIFIER.
781 if (!LookingAtType(io::Tokenizer::TYPE_INTEGER) &
    [all...]
  /frameworks/base/cmds/content/src/com/android/commands/content/
Content.java 154 private static final String TYPE_INTEGER = "i";
390 } else if (TYPE_INTEGER.equalsIgnoreCase(type) || TYPE_LONG.equalsIgnoreCase(type)) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
form.h 271 extern NCURSES_EXPORT_VAR(FIELDTYPE *) TYPE_INTEGER;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
form.h 293 extern NCURSES_EXPORT_VAR(FIELDTYPE *) TYPE_INTEGER;
  /frameworks/base/tools/aapt2/
ResourceValues.cpp 442 if ((type_mask & android::ResTable_map::TYPE_INTEGER) != 0) {
568 if (attr->type_mask & android::ResTable_map::TYPE_INTEGER) {
596 android::ResTable_map::TYPE_INTEGER) {

Completed in 368 milliseconds

1 2 3 4