OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PP_Time
(Results
1 - 25
of
61
) sorted by null
1
2
3
/external/chromium_org/ppapi/c/
pp_time.h
6
/* From
pp_time
.idl modified Fri May 10 15:48:42 2013. */
25
* The <code>
PP_Time
</code> type represents the "wall clock time" according
29
typedef double
PP_Time
;
30
PP_COMPILE_ASSERT_SIZE_IN_BYTES(
PP_Time
, 8);
35
* received. In contrast to <code>
PP_Time
</code>, <code>PP_TimeTicks</code>
pp_file_info.h
13
#include "ppapi/c/
pp_time
.h"
82
PP_Time
creation_time;
86
PP_Time
last_access_time;
90
PP_Time
last_modified_time;
ppb_core.h
16
#include "ppapi/c/
pp_time
.h"
58
* @return A <code>
PP_Time
</code> containing the "wall clock time" according
61
PP_Time
(*GetTime)(void);
ppb_file_ref.h
18
#include "ppapi/c/
pp_time
.h"
146
PP_Time
last_access_time,
147
PP_Time
last_modified_time,
228
PP_Time
last_access_time,
229
PP_Time
last_modified_time,
ppb_file_io.h
19
#include "ppapi/c/
pp_time
.h"
167
PP_Time
last_access_time,
168
PP_Time
last_modified_time,
313
PP_Time
last_access_time,
314
PP_Time
last_modified_time,
ppb_url_request_info.h
16
#include "ppapi/c/
pp_time
.h"
259
PP_Time
expected_last_modified_time);
/external/chromium_org/ppapi/api/
pp_file_info.idl
64
PP_Time
creation_time;
69
PP_Time
last_access_time;
74
PP_Time
last_modified_time;
pp_time.idl
12
* The <code>
PP_Time
</code> type represents the "wall clock time" according
17
typedef double_t
PP_Time
;
22
* received. In contrast to <code>
PP_Time
</code>, <code>PP_TimeTicks</code>
ppb_core.idl
43
* @return A <code>
PP_Time
</code> containing the "wall clock time" according
46
PP_Time
GetTime();
ppb_file_ref.idl
132
[in]
PP_Time
last_access_time,
133
[in]
PP_Time
last_modified_time,
ppb_file_io.idl
154
[in]
PP_Time
last_access_time,
155
[in]
PP_Time
last_modified_time,
/external/chromium_org/ppapi/tests/
test_core.cc
25
PP_Time
time1 = core->GetTime();
30
PP_Time
time2 = core->GetTime();
38
PP_Time
time1 = core->GetTimeTicks();
43
PP_Time
time2 = core->GetTimeTicks();
/external/chromium_org/ppapi/shared_impl/
time_conversion.h
9
#include "ppapi/c/
pp_time
.h"
14
PPAPI_SHARED_EXPORT
PP_Time
TimeToPPTime(base::Time t);
15
PPAPI_SHARED_EXPORT base::Time PPTimeToTime(
PP_Time
t);
url_request_info_data.h
14
#include "ppapi/c/
pp_time
.h"
30
PP_Time
expected_last_modified_time);
46
PP_Time
expected_last_modified_time;
time_conversion.cc
28
PP_Time
TimeToPPTime(base::Time t) {
32
base::Time PPTimeToTime(
PP_Time
t) {
35
// epoch (according to the description of
PP_Time
). Hence we just return the
/external/chromium_org/ppapi/thunk/
ppb_url_request_info_api.h
27
PP_Time
expected_last_modified_time) = 0;
ppb_file_ref_api.h
33
virtual int32_t Touch(
PP_Time
last_access_time,
34
PP_Time
last_modified_time,
ppb_file_io_api.h
28
virtual int32_t Touch(
PP_Time
last_access_time,
29
PP_Time
last_modified_time,
/external/chromium_org/ppapi/cpp/
file_ref.h
127
int32_t Touch(
PP_Time
last_access_time,
128
PP_Time
last_modified_time,
core.h
48
/// @return A <code>
PP_Time
</code> containing the "wall clock time" according
50
PP_Time
GetTime() {
file_io.h
8
#include "ppapi/c/
pp_time
.h"
93
int32_t Touch(
PP_Time
last_access_time,
94
PP_Time
last_modified_time,
url_request_info.cc
49
PP_Time
expected_last_modified_time) {
65
PP_Time
expected_last_modified_time) {
url_request_info.h
77
PP_Time
expected_last_modified_time = 0);
102
PP_Time
expected_last_modified_time = 0);
/external/chromium_org/content/browser/renderer_host/pepper/
pepper_file_ref_host.h
15
#include "ppapi/c/
pp_time
.h"
34
PP_Time
last_accessed_time,
35
PP_Time
last_modified_time) = 0;
94
PP_Time
last_access_time,
95
PP_Time
last_modified_time);
/external/chromium_org/ppapi/proxy/
url_request_info_resource.h
37
PP_Time
expected_last_modified_time) OVERRIDE;
Completed in 98 milliseconds
1
2
3