Searched refs:Long (Results 1 - 25 of 473) sorted by relevance

1234567891011>>

/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
H A DLongTest.java37 * @tests java.lang.Long#byteValue()
40 // Test for method byte java.lang.Long.byteValue()
41 Long l = new Long(127);
43 assertEquals("Returned incorrect byte value", -1, new Long(Long.MAX_VALUE)
48 * @tests java.lang.Long#compareTo(java.lang.Long)
51 // Test for method int java.lang.Long.compareTo(java.lang.Long)
[all...]
/external/guava/guava-tests/test/com/google/common/primitives/
H A DLongArrayAsListTest.java44 private static List<Long> asList(Long[] values) {
53 List<ListTestSuiteBuilder<Long>> builders =
69 for (ListTestSuiteBuilder<Long> builder : builders) {
85 @Override protected List<Long> create(Long[] elements) {
91 @Override protected List<Long> create(Long[] elements) {
92 Long[] suffix = {Long
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DDiscreteDomains.java77 * Returns the discrete domain for values of type {@code Long}.
79 public static DiscreteDomain<Long> longs() {
83 private static final class LongDomain extends DiscreteDomain<Long>
87 @Override public Long next(Long value) {
89 return (l == Long.MAX_VALUE) ? null : l + 1;
92 @Override public Long previous(Long value) {
94 return (l == Long.MIN_VALUE) ? null : l - 1;
97 @Override public long distance(Long star
[all...]
/external/aac/libAACenc/src/
H A Dpsy_data.h97 /* Be careful with MAX_SFB_LONG as length of the .Long arrays.
98 * sfbEnergy.Long and sfbEnergyMS.Long and sfbThreshold.Long are used as a temporary storage for the regrouped
104 FIXP_DBL Long[MAX_GROUPED_SFB]; variable
109 FIXP_DBL Long[MAX_GROUPED_SFB]; variable
114 FIXP_DBL Long[MAX_GROUPED_SFB]; variable
119 INT Long[MAX_GROUPED_SFB]; variable
/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
H A DLongSerializer.java40 * The Long serializer.
47 public Long readObject(ByteBuffer data, Class c) throws IOException {
52 buffer.putLong((Long)object);
/external/valgrind/main/include/
H A Dpub_tool_replacemalloc.h48 extern Long VG_(free_queue_volume);
49 extern Long VG_(free_queue_length);
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/mdat/
H A DSampleList.java22 HashMap<MediaDataBox, Long> mdatStartCache = new HashMap<MediaDataBox, Long>();
23 HashMap<MediaDataBox, Long> mdatEndCache = new HashMap<MediaDataBox, Long>();
80 Map<Long, Long> offsets2Sizes = new HashMap<Long, Long>();
101 private void splitToArrays(Map<Long, Long> offsets2Size
[all...]
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/
H A DBlenderContext.java85 private Map<Long, FileBlockHeader> fileBlockHeadersByOma = new HashMap<Long, FileBlockHeader>();
93 private Map<Long, Object[]> loadedFeatures = new HashMap<Long, Object[]>();
107 private Map<Long, Ipo> loadedIpos = new HashMap<Long, Ipo>();
109 protected Map<Long, List<Modifier>> modifiers = new HashMap<Long, List<Modifier>>();
111 protected Map<Long, List<Constraint>> constraints = new HashMap<Long, Lis
[all...]
/external/clang/test/Sema/
H A Dcast.c21 typedef long Long; typedef
34 (void) (Long) v;
48 (void) (Long) v;
59 void testLong(Long v) {
62 (void) (Long) v;
76 (void) (Long) v;
88 (void) (Long) v;
100 (void) (Long) v;
112 (void) (Long) v;
124 (void) (Long)
[all...]
/external/guava/guava-tests/test/com/google/common/math/
H A DMathTesting.java58 /* Helper function to make a Long value from an Integer. */
59 private static final Function<Integer, Long> TO_LONG = new Function<Integer, Long>() {
61 public Long apply(Integer n) {
62 return Long.valueOf(n);
66 /* Helper function to make a BigInteger value from a Long. */
67 private static final Function<Long, BigInteger> TO_BIGINTEGER =
68 new Function<Long, BigInteger>() {
70 public BigInteger apply(Long n) {
82 private static final Function<Long, Lon
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/xslt/
H A DEnvironmentCheck.java745 String foundSize = (String) jarVersions.get(new Long(jarSize));
1195 jarVersions.put(new Long(857192), "xalan.jar from xalan-j_1_1");
1196 jarVersions.put(new Long(440237), "xalan.jar from xalan-j_1_2");
1197 jarVersions.put(new Long(436094), "xalan.jar from xalan-j_1_2_1");
1198 jarVersions.put(new Long(426249), "xalan.jar from xalan-j_1_2_2");
1199 jarVersions.put(new Long(702536), "xalan.jar from xalan-j_2_0_0");
1200 jarVersions.put(new Long(720930), "xalan.jar from xalan-j_2_0_1");
1201 jarVersions.put(new Long(732330), "xalan.jar from xalan-j_2_1_0");
1202 jarVersions.put(new Long(872241), "xalan.jar from xalan-j_2_2_D10");
1203 jarVersions.put(new Long(88273
[all...]
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
H A DNumberFormatTest.java42 out = format.format(new Long(Long.MAX_VALUE), new StringBuffer(), pos);
47 out = format.format(new Long(Long.MIN_VALUE), new StringBuffer(), pos);
53 .valueOf(Long.MAX_VALUE)), new StringBuffer(), pos);
59 .valueOf(Long.MIN_VALUE)), new StringBuffer(), pos);
65 big = new java.math.BigInteger(String.valueOf(Long.MAX_VALUE))
72 big = new java.math.BigInteger(String.valueOf(Long.MIN_VALUE))
103 format.format(new Long(0), null, pos);
110 format.format(new Long(
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/srt/
H A DSrtParser.java51 long hours = Long.parseLong(in.split(":")[0].trim());
52 long minutes = Long.parseLong(in.split(":")[1].trim());
53 long seconds = Long.parseLong(in.split(":")[2].split(",")[0].trim());
54 long millies = Long.parseLong(in.split(":")[2].split(",")[1].trim());
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DAmf0Track.java34 SortedMap<Long, byte[]> rawSamples = new TreeMap<Long, byte[]>() {
44 public Amf0Track(Map<Long, byte[]> rawSamples) {
45 this.rawSamples = new TreeMap<Long, byte[]>(rawSamples);
70 LinkedList<Long> keys = new LinkedList<Long>(rawSamples.keySet());
73 for (Long key : keys) {
/external/junit/src/org/junit/experimental/max/
H A DMaxHistory.java63 private final Map<String, Long> fDurations= new HashMap<String, Long>();
65 private final Map<String, Long> fFailureTimestamps= new HashMap<String, Long>();
80 Long getFailureTimestamp(Description key) {
92 Long getTestDuration(Description key) {
103 private Map<Description, Long> starts= new HashMap<Description, Long>();
143 private Long getFailure(Description key) {
144 Long resul
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DSampleAuxiliaryInformationOffsetsBox.java51 private List<Long> offsets = new LinkedList<Long>();
73 for (Long offset : offsets) {
120 public List<Long> getOffsets() {
124 public void setOffsets(List<Long> offsets) {
/external/guava/guava/src/com/google/common/math/
H A DLongMath.java57 * <p>This differs from {@code Long.bitCount(x) == 1}, because
58 * {@code Long.bitCount(Long.MIN_VALUE) == 1}, but {@link Long#MIN_VALUE} is not a power of two.
80 return (Long.SIZE - 1) - Long.numberOfLeadingZeros(x);
84 return Long.SIZE - Long.numberOfLeadingZeros(x - 1);
90 int leadingZeros = Long.numberOfLeadingZeros(x);
93 int logFloor = (Long
[all...]
/external/javassist/src/main/javassist/bytecode/annotation/
H A DLongMemberValue.java24 * Long integer constant value.
62 return new Long(getValue());
87 return Long.toString(getValue());
/external/valgrind/main/memcheck/tests/
H A Dorigin2-not-quite.c14 typedef long long Long; typedef
23 assert(8 == sizeof(Long));
/external/webkit/Tools/Scripts/
H A Drun-jsc36 use Getopt::Long;
H A Dupdate-webkit-chromium33 use Getopt::Long;
/external/apache-http/src/org/apache/http/impl/
H A DHttpConnectionMetricsImpl.java107 value = new Long(requestCount);
109 value = new Long(responseCount);
112 return new Long(this.inTransportMetric.getBytesTransferred());
118 return new Long(this.outTransportMetric.getBytesTransferred());
/external/guava/guava/src/com/google/common/primitives/
H A DLongs.java38 * already found in either {@link Long} or {@link Arrays}.
51 public static final int BYTES = Long.SIZE / Byte.SIZE;
58 public static final long MAX_POWER_OF_TWO = 1L << (Long.SIZE - 2);
62 * {@code ((Long) value).hashCode()}.
65 * Long#hashCode()} in java, which might be different from
66 * {@code ((Long) value).hashCode()} in GWT because {@link Long#hashCode()}
78 * returned is the same as that of {@code ((Long) a).compareTo(b)}.
404 * Copies a collection of {@code Long} instances into a new array of
411 * @param collection a collection of {@code Long} object
[all...]
/external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
H A DLongs.java36 * already found in either {@link Long} or {@link Arrays}.
49 public static final int BYTES = Long.SIZE / Byte.SIZE;
56 public static final long MAX_POWER_OF_TWO = 1L << (Long.SIZE - 2);
60 * {@code ((Long) value).hashCode()}.
63 * Long#hashCode()} in java, which might be different from
64 * {@code ((Long) value).hashCode()} in GWT because {@link Long#hashCode()}
76 * returned is the same as that of {@code ((Long) a).compareTo(b)}.
337 * Copies a collection of {@code Long} instances into a new array of
344 * @param collection a collection of {@code Long} object
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DLongObjectPropertyEditor.java21 * The {@link PropertyEditor} for {@link Long}.
48 if (value instanceof Long) {
78 Long value;
80 value = Long.valueOf(text);

Completed in 463 milliseconds

1234567891011>>