Home
last modified time | relevance | path

Searched refs:one (Results 1 – 25 of 118) sorted by relevance

12345

/foundation/ace/ace_engine_lite/frameworks/examples/calculator/src/main/js/default/common/
Dcalculator.js23 "+": (one, other) => one + other,
24 "-": (one, other) => one - other,
25 "*": (one, other) => one * other,
26 "/": (one, other) => one / other,
37 const one = numberStack.pop();
39 const result = OperatorHandlers[element](other, one);
123 function isPrioritized(one, other) { argument
124 return OperatorLevels[one] > OperatorLevels[other];
/foundation/ace/ace_engine_lite/frameworks/common/log/
Dace_log.h22 #error Only one marco can be defined
24 #error Only one marco can be defined
26 #error Only one macro can be defined
/foundation/ace/napi/sample/native_module_calc/
Dnapi_number.cpp41 napi_value one = nullptr; in Export() local
46 napi_create_int32(env, TestEnum::ONE, &one); in Export()
52 DECLARE_NAPI_STATIC_PROPERTY("ONE", one), in Export()
/foundation/appexecfwk/appexecfwk_lite/interfaces/kits/bundle_lite/
DREADME.md3 - `AbilityInfo` ability information such as bundleName, srcPath(file path of one application), icon…
5 - `ElementName` who encapsulates bundleName, deviceId and abilityName of one application to query a…
/foundation/appexecfwk/standard/tools/zip/src/
Dfile_path.cpp126 std::string::size_type one = 1; in DirName() local
134 newPath.path_.resize(one); in DirName()
135 } else if (lastSeparator == one && IsSeparator(newPath.path_[zero])) { in DirName()
173 uint32_t one = 1; in StripTrailingSeparatorsInternal() local
177 …g::size_type pos = path_.length(); pos > start && FilePath::IsSeparator(path_[pos - one]); --pos) { in StripTrailingSeparatorsInternal()
178 …if (pos != start + one || lastStripped == start + two || !FilePath::IsSeparator(path_[start - one]… in StripTrailingSeparatorsInternal()
179 path_.resize(pos - one); in StripTrailingSeparatorsInternal()
/foundation/ace/ace_engine/frameworks/bridge/declarative_frontend/state_mgmt/
DREADME.md17 The output is one JS file:
25 The output is one JS file:
/foundation/multimodalinput/input/service/timer_manager/src/
Dtimer_manager.cpp53 uint64_t one = 1; in TakeNextTimerId() local
56 timerSlot |= (one << timer->id); in TakeNextTimerId()
60 if ((timerSlot & (one << i)) == 0) { in TakeNextTimerId()
/foundation/aafwk/aafwk_lite/interfaces/innerkits/abilitymgr_lite/
DREADME.md2 … functions, other processes can start, stop, connect or disconnect ability of some one application.
/foundation/ace/napi/sample/native_module_demo/
Ddemo_javascript_class.cpp36 napi_value one = nullptr; in DemoJavascriptClassInit() local
41 napi_create_int32(env, TestEnum::ONE, &one); in DemoJavascriptClassInit()
51 DECLARE_NAPI_STATIC_PROPERTY("ONE", one), in DemoJavascriptClassInit()
/foundation/multimodalinput/input/patch/prebuild_eudev/rules.d/
D73-special-net-names.rules13 # there should only ever be one bus, and then remove leading zeros
D50-udev-default.rules9 # select "system RTC" or just use the first one
D71-seat.rules39 # devices belonging to one seat. See:
D99-systemd.rules41 # should be treated as one namespace, like udev handles it. This is mostly
/foundation/appexecfwk/standard/common/log/
DREADME.md24 APP_LOGD("one %{public}d", 1234);
/foundation/resourceschedule/work_scheduler/
DREADME.md84 (2) At least one condition must be set.
86 …ould be at least 20 minutes. When setting repeatcycletime, you must select one of isrepeat and rep…
/foundation/ace/ace_engine/frameworks/bridge/declarative_frontend/jsview/
Djs_view_abstract.inl27 return JS_ThrowSyntaxError(ctx, "%s: one parameter of type string expected", debugInfo);
/foundation/multimodalinput/input/patch/prebuild_eudev/hwdb.d/
D70-joystick.hwdb34 # Specify if a joystick is a built-in one or external:
D70-touchpad.hwdb34 # Specify if a touchpad is a built-in one or external:
D20-usb-media-players.hwdb1907 ID_MEDIA_PLAYER=google_nexus-one
1908 ID_MEDIA_PLAYER_ICON_NAME=phone-google-nexus-one
1912 ID_MEDIA_PLAYER=google_nexus-one
1913 ID_MEDIA_PLAYER_ICON_NAME=phone-google-nexus-one
1916 ID_MEDIA_PLAYER=google_nexus-one
1917 ID_MEDIA_PLAYER_ICON_NAME=phone-google-nexus-one
2658 ID_MEDIA_PLAYER=lg_optimus-one-p500
/foundation/distributeddatamgr/appdatamgr/
DREADME.md34 … of a specified file to the **Preferences** instance. Each file has only one **Preferences** i…
73 To ensure data accuracy, the RDB supports only one writ operation at a time.
/foundation/aafwk/aafwk_lite/
DREADME.md17 …hat can implement an independent functionality. An application can contain one or more **Ability*…
21 …ontrol logic. It is specific to Page abilities. A Page ability may contain one ability slice or mu…
/foundation/distributeddatamgr/distributeddatamgr/
DREADME.md100 …Data is saved locally in the unit of a single KV entry. Only one entry is saved for each key. When…
116 … from the backup database. If no backup database is available, DDS creates one. DDS can also back …
/foundation/distributeddatamgr/distributedfile/
DREADME.md185one of the OHOS standard asynchronous models. When an asynchronous API using the Promise model is …
218 …s the callback asynchronous model. The callback asynchronous model is also one of the OHOS standar…
/foundation/multimedia/camera_standard/
DREADME.md210 …er to render on display. The preview width and Height can be configured to one of the camera suppo…
290 …ates mentioned in capture photo. The video resolution can be configured to one of the camera and r…
/foundation/resourceschedule/background_task_mgr/
DREADME.md94 - A ability can only apply to run one continuous task at a time.

12345