Home
last modified time | relevance | path

Searched full:represents (Results 1 – 25 of 171) sorted by relevance

1234567

/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/core/
DErrors.ets19 * @class Represents an error that occurs when assertion fails.
29 * @class Represents an error that occurs when division by zero is performed.
38 * @class Represents an error that occurs when null pointer is dereferenced.
47 * @class Represents an error that occurs when exception is thrown and not caught
56 * @class Represents an error that occurs when trying to interpret syntactically invalid code
69 * @class Represents an error that occurs when JSONValue can not be assigned to a type
78 * @class Represents an error that occurs when provided collection index is out of range
91 * @class Represents an error that occurs when array is oging to be indexed out of its bounds
100 …* @class Represents exception that is thrown when illegal arithmetic operation is occured (e.g. di…
109 * @class Represents an error that occurs when memory allocation fails
[all …]
DExceptions.ets20 * Represents exception that is thrown in case of ?
37 * Represents exception that is thrown when provided argument have value outside the allowable range
54 …* Represents exception that is thrown when a method has been invoked at an illegal or inappropriat…
71 * Represents exception that is thrown when the requested operation is not supported.
88 * @class Represents exception that is thrown when
106 * @class Represents runtime exception
DValue.ets136 * Represents abstract value
271 * Represents value of object of class type
551 * Represents array value
727 * Represents boolean value
764 * Represents byte value
801 * Represents short value
838 * Represents char value
875 * Represents int value
912 * Represents float value
949 * Represents double value
[all …]
DPromiseRef.ets19 * Class represents a result of an asynchronous operation in the future.
DBoolean.ets19 * Represents boxed boolean value and related operations
180 * Static instance that represents true boolean value
185 * Static instance that represents false boolean value
194 * @returns boxed value that represents provided primitive value
DChar.ets21 * Represents boxed char value and related operations
450 * isBinDigit() checks whether the char represents a binary digit.
462 * isBinDigit() checks whether the underlying char represents a binary digit.
471 * isDecDigit() checks whether the char represents a decimal digit.
483 * isDecDigit() checks whether the underlying char represents a decimal digit.
492 * isBinDigit() checks whether the char represents a hexadecimal digit.
506 * isHexDigit() checks whether the underlying char represents a hexadecimal digit.
/arkcompiler/runtime_core/taihe/compiler/taihe/utils/
Dsources.py49 """Represents a file-based source code."""
71 """Represents a string-based source code."""
108 """Represents a position within a file (1-based)."""
118 """Represents a region within a file (1-based)."""
132 """Represents a location (either a position or a region) within a file."""
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/escompat/
DErrors.ets19 * @class Represents an error that occurs when global eval() function fails
32 …* @class Represents an error that occurs when an operation could not be performed, typically (but …
45 …* @class Represents an error that occurs when a variable that doesn't exist (or hasn't yet been in…
58 …* @class Represents an error that occurs when a global URI handling function was used in a wrong w…
71 * The AggregateError object represents an error when several errors
/arkcompiler/ets_frontend/ets2panda/lsp/include/
Dsignature_help.h34 COMMA, // Represents ","
35 OPENPAREN, // Represents "("
36 LESSTHAN // Represents "<"
39 COMMA, // Represents ","
40 OPENPAREN, // Represents "("
41 LESSTHAN, // Represents "<"
42 CLOSEPAREN // Represents ")"
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/math/consts/
Dconsts.ets81 * Represents the NaN value accoring to IEEE 754 specification
86 * Represents the +Infinity value accoring to IEEE 754 specification
91 * Represents the -Infinity value accoring to IEEE 754 specification
/arkcompiler/runtime_core/taihe/runtime/include/taihe/
Dobject.abi.h26 // Represents an ID mapping item containing an ID and a vtable pointer.
36 // Represents metadata information for a type, including version, length, and
57 // Represents the head of a data block, containing a pointer to the runtime
Doptional.abi.h21 // Represents an optional value structure containing a pointer to the data.
Darray.abi.h21 // Represents a dynamic array structure containing the size and data pointer.
Dcallback.abi.h21 // Represents a callback structure containing a pointer to the data block
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_sdk/api/@ohos/util/RationalNumber/
DIsFiniteIsNaNIsZeroToStringTest.ets21 …suite.addTest("Verifies that the RationalNumber object (-2/1) represents a finite value.", testIsF…
22 …suite.addTest("Verifies that the RationalNumber object (0/3) represents a finite value.", testIsFi…
24 …suite.addTest("Verifies that the RationalNumber object (1/3) represents a finite value.", testIsFi…
25 …suite.addTest("Verifies that the RationalNumber object (10/5) represents a finite value.", testIsF…
32 …suite.addTest("Verifies that the RationalNumber object (0/3) represents the value 0.", testIsZero0…
53 * @tc.desc: Verifies that the RationalNumber object (-2/1) represents a finite value.
67 * @tc.desc: Verifies that the RationalNumber object (0/3) represents a finite value.
95 * @tc.desc: Verifies that the RationalNumber object (1/3) represents a finite value.
109 * @tc.desc: Verifies that the RationalNumber object (10/5) represents a finite value.
207 * @tc.desc: Verifies that the RationalNumber object (0/3) represents the value 0.
/arkcompiler/runtime_core/taihe/compiler/taihe/codegen/abi/
Dwriter.py24 """Represents a C or C++ source file."""
64 """Represents a C or C++ header file."""
/arkcompiler/ets_frontend/ets2panda/linter/arkanalyzer/src/core/base/
DTypeExpr.ts25 * abstract type expr represents the type operations of types or values.
47 * typeQuery type expr represents the get type of value with typeof.
126 * keyof type expr represents the type operator with keyof.
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/
Dcfgo.h81 // This class represents the scenario that the BB is unreachable.
100 // This class represents the scenario that a BB contains nothing.
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/concurrency/
DLaunch.ets43 * @returns instance of the Job class that represents newly launched coroutine.
64 * @returns instance of the Job class that represents newly launched coroutine.
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/17.experimental_features/15.coroutines/promise_class/
Dp.ets18 desc: The class Promise<T> represents the values returned by launch expressions.
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/interop/js/
DNoContextInteropError.ets19 * @class Represents exceptions that is thrown when interop call was made without interop context
/arkcompiler/ets_frontend/ets2panda/linter/arkanalyzer/src/core/dataflow/
DGenericDataFlow.ts35 * Represents a flow graph for data flow analysis.
75 * Represents the transfer function used in data flow analysis.
94 * Represents a data flow problem, encapsulating all the necessary components
130 * Represents the result of a data flow analysis.
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/02.lexical_elements/09.literals/08.null_literal/
Dnull_literal2.ets17 desc: The null literal denotes the null reference which represents an absence of a value and is a v…
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/ani/
Dani_options.h25 * @brief Class represents ANI options
/arkcompiler/runtime_core/static_core/docs/
Dfile_format.md430 | `CODE` | `0x01` | `0-1` | `uint8_t[4]` | Data represents the offset …
431 | `SOURCE_LANG` | `0x02` | `0-1` | `uint8_t` | Data represents the [source…
432 | `RUNTIME_ANNOTATION` | `0x03` | `>=0` | `uint8_t[4]` | Data represents the offset …
433 | `RUNTIME_PARAM_ANNOTATION` | `0x04` | `0-1` | `uint8_t[4]` | Data represents the offset …
434 | `DEBUG_INFO` | `0x05` | `0-1` | `uint8_t[4]` | Data represents the offset …
435 | `ANNOTATION` | `0x06` | `>=0` | `uint8_t[4]` | Data represents the offset …
436 | `PARAM_ANNOTATION` | `0x07` | `0-1` | `uint8_t[4]` | Data represents the offset …
437 | `TYPE_ANNOTATION` | `0x08` | `>=0` | `uint8_t[4]` | Data represents the offset …
438 | `RUNTIME_TYPE_ANNOTATION` | `0x09` | `>=0` | `uint8_t[4]` | Data represents the offset …
439 | `PROFILE_INFO` | `0x0a` | `>=0` | `uint8_t[]` | Data represents the profile…
[all …]

1234567