OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Unicode
(Results
101 - 125
of
160
) sorted by null
1
2
3
4
5
6
7
/external/chromium_org/third_party/icu/source/data/
makedata.mak
12
# Keep the following in sync with the version - see common/
unicode
/uvernum.h
92
# The directory that contains
Unicode
data files
484
# The core
Unicode
properties files (uprops.icu, ucase.icu, ubidi.icu)
487
# when updating the
Unicode
data.
493
@echo
Unicode
.icu files built to "$(ICUBLD_PKG)"
591
# 2005-may-05 Removed
Unicode
properties files (unorm.icu, uprops.icu, ucase.icu, ubidi.icu)
[
all
...]
/external/icu/icu4c/source/data/
makedata.mak
12
# Keep the following in sync with the version - see common/
unicode
/uvernum.h
92
# The directory that contains
Unicode
data files
484
# The core
Unicode
properties files (uprops.icu, ucase.icu, ubidi.icu)
487
# when updating the
Unicode
data.
493
@echo
Unicode
.icu files built to "$(ICUBLD_PKG)"
591
# 2005-may-05 Removed
Unicode
properties files (unorm.icu, uprops.icu, ucase.icu, ubidi.icu)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/web/
ContextMenuClientImpl.cpp
153
return isSpaceOrNewline(c) || WTF::
Unicode
::isPunct(c);
/external/chromium_org/third_party/libvpx/source/libvpx/build/make/
gen_msvs_vcxproj.sh
353
tag_content CharacterSet
Unicode
/external/chromium_org/third_party/skia/src/sfnt/
SkOTTable_name.cpp
45
* Derived from http://www.
unicode
.org/Public/MAPPINGS/VENDORS/APPLE/ROMAN.TXT .
47
* This maps the second 128 MacRoman code points to
unicode
code points.
476
case SkOTTableName::Record::PlatformID::
Unicode
:
/external/libvpx/libvpx/build/make/
gen_msvs_vcxproj.sh
412
tag_content CharacterSet
Unicode
/external/pdfium/core/include/fxge/
fx_font.h
157
virtual FX_DWORD CharCodeFromUnicode(FX_WCHAR
Unicode
) const = 0;
/external/skia/src/sfnt/
SkOTTable_name.cpp
45
* Derived from http://www.
unicode
.org/Public/MAPPINGS/VENDORS/APPLE/ROMAN.TXT .
47
* This maps the second 128 MacRoman code points to
unicode
code points.
476
case SkOTTableName::Record::PlatformID::
Unicode
:
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
gen_msvs_vcxproj.sh
412
tag_content CharacterSet
Unicode
/system/core/libutils/
String16.cpp
20
#include <utils/
Unicode
.h>
Unicode.cpp
17
#include <utils/
Unicode
.h>
94
// Max code point for
Unicode
is 0x0010FFFF.
492
uint32_t
unicode
;
local
499
unicode
= src[0] & 0x1f;
500
utf8_shift_and_mask(&
unicode
, src[1]);
501
return
unicode
;
503
unicode
= src[0] & 0x0f;
504
utf8_shift_and_mask(&
unicode
, src[1]);
505
utf8_shift_and_mask(&
unicode
, src[2]);
506
return
unicode
;
[
all
...]
String8.cpp
20
#include <utils/
Unicode
.h>
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
VTTCue.cpp
148
// the '
unicode
-bidi' property must be set to 'plaintext'
512
return WTF::
Unicode
::category(current()) & WTF::
Unicode
::Separator_Paragraph;
532
// Apply the
Unicode
Bidirectional Algorithm's Paragraph Level steps to the
[
all
...]
/external/chromium_org/v8/test/mjsunit/
cyrillic.js
28
// Test
Unicode
character ranges in regexps.
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/pydoc_data/
topics.py
9
'binary': '\nBinary arithmetic operations\n****************************\n\nThe binary arithmetic operations have the conventional priority\nlevels. Note that some of these operations also apply to certain non-\nnumeric types. Apart from the power operator, there are only two\nlevels, one for multiplicative operators and one for additive\noperators:\n\n m_expr ::= u_expr | m_expr "*" u_expr | m_expr "//" u_expr | m_expr "/" u_expr\n | m_expr "%" u_expr\n a_expr ::= m_expr | a_expr "+" m_expr | a_expr "-" m_expr\n\nThe ``*`` (multiplication) operator yields the product of its\narguments. The arguments must either both be numbers, or one argument\nmust be an integer (plain or long) and the other must be a sequence.\nIn the former case, the numbers are converted to a common type and\nthen multiplied together. In the latter case, sequence repetition is\nperformed; a negative repetition factor yields an empty sequence.\n\nThe ``/`` (division) and ``//`` (floor division) operators yield the\nquotient of their arguments. The numeric arguments are first\nconverted to a common type. Plain or long integer division yields an\ninteger of the same type; the result is that of mathematical division\nwith the \'floor\' function applied to the result. Division by zero\nraises the ``ZeroDivisionError`` exception.\n\nThe ``%`` (modulo) operator yields the remainder from the division of\nthe first argument by the second. The numeric arguments are first\nconverted to a common type. A zero right argument raises the\n``ZeroDivisionError`` exception. The arguments may be floating point\nnumbers, e.g., ``3.14%0.7`` equals ``0.34`` (since ``3.14`` equals\n``4*0.7 + 0.34``.) The modulo operator always yields a result with\nthe same sign as its second operand (or zero); the absolute value of\nthe result is strictly smaller than the absolute value of the second\noperand [2].\n\nThe integer division and modulo operators are connected by the\nfollowing identity: ``x == (x/y)*y + (x%y)``. Integer division and\nmodulo are also connected with the built-in function ``divmod()``:\n``divmod(x, y) == (x/y, x%y)``. These identities don\'t hold for\nfloating point numbers; there similar identities hold approximately\nwhere ``x/y`` is replaced by ``floor(x/y)`` or ``floor(x/y) - 1`` [3].\n\nIn addition to performing the modulo operation on numbers, the ``%``\noperator is also overloaded by string and
unicode
objects to perform\nstring formatting (also known as interpolation). The syntax for string\nformatting is described in the Python Library Reference, section\n*String Formatting Operations*.\n\nDeprecated since version 2.3: The floor division operator, the modulo\noperator, and the ``divmod()`` function are no longer defined for\ncomplex numbers. Instead, convert to a floating point number using\nthe ``abs()`` function if appropriate.\n\nThe ``+`` (addition) operator yields the sum of its arguments. The\narguments must either both be numbers or both sequences of the same\ntype. In the former case, the numbers are converted to a common type\nand then added together. In the latter case, the sequences are\nconcatenated.\n\nThe ``-`` (subtraction) operator yields the difference of its\narguments. The numeric arguments are first converted to a common\ntype.\n',
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/pydoc_data/
topics.py
9
'binary': '\nBinary arithmetic operations\n****************************\n\nThe binary arithmetic operations have the conventional priority\nlevels. Note that some of these operations also apply to certain non-\nnumeric types. Apart from the power operator, there are only two\nlevels, one for multiplicative operators and one for additive\noperators:\n\n m_expr ::= u_expr | m_expr "*" u_expr | m_expr "//" u_expr | m_expr "/" u_expr\n | m_expr "%" u_expr\n a_expr ::= m_expr | a_expr "+" m_expr | a_expr "-" m_expr\n\nThe ``*`` (multiplication) operator yields the product of its\narguments. The arguments must either both be numbers, or one argument\nmust be an integer (plain or long) and the other must be a sequence.\nIn the former case, the numbers are converted to a common type and\nthen multiplied together. In the latter case, sequence repetition is\nperformed; a negative repetition factor yields an empty sequence.\n\nThe ``/`` (division) and ``//`` (floor division) operators yield the\nquotient of their arguments. The numeric arguments are first\nconverted to a common type. Plain or long integer division yields an\ninteger of the same type; the result is that of mathematical division\nwith the \'floor\' function applied to the result. Division by zero\nraises the ``ZeroDivisionError`` exception.\n\nThe ``%`` (modulo) operator yields the remainder from the division of\nthe first argument by the second. The numeric arguments are first\nconverted to a common type. A zero right argument raises the\n``ZeroDivisionError`` exception. The arguments may be floating point\nnumbers, e.g., ``3.14%0.7`` equals ``0.34`` (since ``3.14`` equals\n``4*0.7 + 0.34``.) The modulo operator always yields a result with\nthe same sign as its second operand (or zero); the absolute value of\nthe result is strictly smaller than the absolute value of the second\noperand [2].\n\nThe integer division and modulo operators are connected by the\nfollowing identity: ``x == (x/y)*y + (x%y)``. Integer division and\nmodulo are also connected with the built-in function ``divmod()``:\n``divmod(x, y) == (x/y, x%y)``. These identities don\'t hold for\nfloating point numbers; there similar identities hold approximately\nwhere ``x/y`` is replaced by ``floor(x/y)`` or ``floor(x/y) - 1`` [3].\n\nIn addition to performing the modulo operation on numbers, the ``%``\noperator is also overloaded by string and
unicode
objects to perform\nstring formatting (also known as interpolation). The syntax for string\nformatting is described in the Python Library Reference, section\n*String Formatting Operations*.\n\nDeprecated since version 2.3: The floor division operator, the modulo\noperator, and the ``divmod()`` function are no longer defined for\ncomplex numbers. Instead, convert to a floating point number using\nthe ``abs()`` function if appropriate.\n\nThe ``+`` (addition) operator yields the sum of its arguments. The\narguments must either both be numbers or both sequences of the same\ntype. In the former case, the numbers are converted to a common type\nand then added together. In the latter case, the sequences are\nconcatenated.\n\nThe ``-`` (subtraction) operator yields the difference of its\narguments. The numeric arguments are first converted to a common\ntype.\n',
[
all
...]
/external/chromium_org/third_party/WebKit/Source/wtf/text/
AtomicString.cpp
31
#include "wtf/
unicode
/UTF8.h"
35
using namespace
Unicode
;
/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
object.pxd
108
# Compute a
Unicode
string representation of object o. Returns the
109
#
Unicode
string representation on success, NULL on failure. This
110
# is the equivalent of the Python expression "
unicode
(o)". Called
111
# by the
unicode
() built-in function.
/external/deqp/execserver/
xsWin32TestProcess.cpp
56
#if defined(
UNICODE
)
57
# error
Unicode
not supported.
/external/deqp/framework/delibs/deutil/
deProcess.c
546
#if defined(
UNICODE
)
547
# error
Unicode
not supported.
/frameworks/base/core/jni/
android_database_CursorWindow.cpp
28
#include <utils/
Unicode
.h>
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
chromevox_json.js
318
// certain
Unicode
characters with escape sequences. JavaScript handles
/external/icu/icu4c/source/
icudefs.mk
37
PACKAGE_ICU_DESCRIPTION = "International Components for
Unicode
"
/external/chromium_org/third_party/WebKit/Source/core/dom/
Document.cpp
213
using namespace
Unicode
;
233
// f) Characters #x20DD-#x20E0 are excluded (in accordance with
Unicode
, section 5.14).
253
if (!(
Unicode
::category(c) & nameStartMask))
284
if (!(
Unicode
::category(c) & otherNamePartMask))
[
all
...]
/external/chromium_org/v8/test/webkit/resources/
json2-es5-compat.js
433
//
Unicode
characters with escape sequences. JavaScript handles many characters
Completed in 1617 milliseconds
1
2
3
4
5
6
7