Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:ltm
(Results
1 - 3
of
3
) sorted by relevance
/foundation/arkui/ace_engine_lite/frameworks/src/core/components/
H
A
D
camera_component.cpp
158
struct tm *
ltm
= localtime(&(timeVal.tv_sec));
in CreateFilePath()
local
159
if (
ltm
!= nullptr) {
in CreateFilePath()
160
oss << prefix << (
ltm
->tm_year) << (
ltm
->tm_mon + 1) <<
ltm
->tm_mday << "_" <<
ltm
->tm_hour <<
ltm
->tm_min
in CreateFilePath()
161
<<
ltm
->tm_sec << ".jpg";
in CreateFilePath()
/foundation/arkui/ace_engine/frameworks/core/components/camera/standard_system/
H
A
D
camera.cpp
648
struct tm *
ltm
= localtime(&tv.tv_sec);
in SaveData()
local
649
if (
ltm
!= nullptr) {
in SaveData()
651
ss << "Capture" <<
ltm
->tm_hour << "-" <<
ltm
->tm_min << "-" <<
ltm
->tm_sec << ".jpg";
in SaveData()
/foundation/multimedia/camera_lite/test/unittest/
H
A
D
camera_lite_test.cpp
232
struct tm *
ltm
= localtime(&tv.tv_sec);
in SampleSaveCapture()
local
233
if (
ltm
!= nullptr) {
in SampleSaveCapture()
235
ss << "Capture" <<
ltm
->tm_hour << "_" <<
ltm
->tm_min << "_" <<
ltm
->tm_sec << ".jpg";
in SampleSaveCapture()
Completed in 6 milliseconds