OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:modDate
(Results
1 - 5
of
5
) sorted by null
/frameworks/multidex/library/test/src/android/support/multidex/
ZipEntryReader.java
66
int
modDate
= in.getShort() & 0xffff;
87
entry.setTime(getTime(time,
modDate
));
111
private static long getTime(int time, int
modDate
) {
114
cal.set(1980 + ((
modDate
>> 9) & 0x7f), ((
modDate
>> 5) & 0xf) - 1,
115
modDate
& 0x1f, (time >> 11) & 0x1f, (time >> 5) & 0x3f,
/development/samples/NotePad/tests/src/com/example/android/notepad/
NotePadProviderTest.java
667
assertEquals(note.
modDate
, cursor.getLong(moddateIndex));
[
all
...]
/external/pdfium/fpdfsdk/src/javascript/
Document.h
83
FX_BOOL
modDate
(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError);
308
JS_STATIC_PROP(
modDate
, Document);
Document.cpp
79
JS_STATIC_PROP_ENTRY(
modDate
)
772
CFX_WideString cwModDate = pDictionary->GetUnicodeText("
ModDate
");
789
FXJS_PutObjectString(isolate, pObj, L"
ModDate
", cwModDate.c_str());
912
FX_BOOL Document::
modDate
(IJS_Context* cc,
920
vp << pDictionary->GetUnicodeText("
ModDate
");
927
pDictionary->SetAtString("
ModDate
", PDF_EncodeText(csmodDate));
[
all
...]
/packages/apps/SoundRecorder/src/com/android/soundrecorder/
SoundRecorder.java
598
long
modDate
= file.lastModified();
612
cv.put(MediaStore.Audio.Media.DATE_MODIFIED, (int) (
modDate
/ 1000));
Completed in 344 milliseconds