HomeSort by relevance Sort by last modified time
    Searched full:normalized (Results 1 - 25 of 830) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/jmonkeyengine/engine/src/core-data/Common/ShaderLib/
Optics.glsllib 9 // converts a normalized direction vector
16 // NOTE: this simplification only works if dir is normalized.
  /external/icu4c/i18n/
nortrans.cpp 112 * must not be normalized.
117 UnicodeString input, normalized;
123 fNorm2.normalize(input, normalized, status);
125 text.handleReplaceBetween(start, limit, normalized);
127 int32_t delta = normalized.length() - length;
135 UnicodeString normalized; local
153 fNorm2.normalize(segment, normalized, errorCode);
157 if(segment != normalized) {
158 // replace the input chunk with its normalized form
159 text.handleReplaceBetween(prev, start, normalized);
    [all...]
  /external/icu4c/common/unicode/
normalizer2.h 42 * The primary functions are to produce a normalized string and to detect whether
43 * a string is already normalized.
58 * When the goal is a normalized string, then the text before the boundary
70 * (to avoid replacing already-normalized text) and ucol_nextSortKeyPart()
108 * Returns the normalized form of the source string.
114 * @return normalized src
124 * Writes the normalized form of the source string to the destination string
128 * @param dest destination string; its contents is replaced with normalized src
141 * Appends the normalized form of the second string to the first string
143 * The result is normalized if the first string was normalized
    [all...]
normlzr.h 38 * - static functions that normalize strings or test if strings are normalized
40 * provides iteration over its normalized form
50 * The input text is not normalized all at once, but incrementally where needed
54 * However, if the entire text is normalized, then the iterator will be
57 * original text that is close to where the normalized characters come from.
67 * At any time, next() returns the next normalized code point (UChar32),
69 * previous() returns the previous normalized code point (UChar32),
75 * needs to be normalized, then these functions will do that.
80 * getIndex() always refers to the position in the input text where the normalized
101 * The normalized results is stored in an internal string buffer, an
    [all...]
unorm2.h 67 * equivalent text, without having to be fully normalized.
155 * @param filterSet USet which determines the characters to be normalized
195 * Writes the normalized form of the source string to the destination string
201 * @param dest destination string; its contents is replaced with normalized src
216 * Appends the normalized form of the second string to the first string
218 * The result is normalized if the first string was normalized.
221 * @param first string, should be normalized
224 * @param second string, will be normalized
241 * The result is normalized if both the strings were normalized
    [all...]
unorm.h 96 * It allows to work on strings that are not necessarily normalized
109 * already conform to FCD and do not need to be normalized (NFD) for such a process. The FCD quick check will
119 * Beyond collation and string search, normalized strings may be useful for string equivalence comparisons,
125 * Unicode text needs to be normalized to NFC.
189 * The string will be normalized according the specified normalization mode
217 * string is in the desired normalized format, UNORM_NO determines that
218 * argument string is not in the desired normalized format. A
220 * the user may have to put the string in its normalized form and compare the
223 * @param source string for determining if it is in a normalized format
316 * Another example: When one wants to concatenate two normalized strings and get
    [all...]
  /frameworks/rs/driver/
rsdVertexArray.cpp 50 normalized = false;
55 bool normalized, uint32_t offset,
61 this->normalized = normalized;
78 mAttribs[idx].normalized,
113 mAttribs[ct].normalized,
rsdVertexArray.h 41 bool normalized; member in class:RsdVertexArray::Attrib
46 void set(uint32_t type, uint32_t size, uint32_t stride, bool normalized, uint32_t offset, const char *name);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SuggestionUtils.java 101 String normalized; local
107 normalized = DEFAULT_SCHEME + SCHEME_SEPARATOR + url;
110 normalized = url;
113 int end = normalized.length();
114 if (normalized.indexOf('/', start) == end - 1) {
117 return normalized.substring(0, end);
  /external/openfst/src/include/fst/
epsnormalize.h 40 // Returns an equivalent FST that is epsilon-normalized. An acceptor is
41 // epsilon-normalized if it is epsilon-removed. A transducer is input
42 // epsilon-normalized if additionally if on each path any epsilon input
43 // label follows all non-epsilon input labels. Output epsilon-normalized
interval-set.h 88 // Number of points in the intervals (undefined if not normalized).
96 // Adds an interval set to the set. The result may not be normalized.
104 // Requires intervals be normalized.
114 // Requires intervals be normalized.
119 // Requires intervals be normalized.
134 // normalized. The result is normalized.
138 // normalized. The result is normalized.
142 // normalized. The result is normalized
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
epsnormalize.h 37 // Returns an equivalent FST that is epsilon-normalized. An acceptor is
38 // epsilon-normalized if it is epsilon-removed. A transducer is input
39 // epsilon-normalized if additionally if on each path any epsilon input
40 // label follows all non-epsilon input labels. Output epsilon-normalized
  /external/sqlite/android/
PhoneticStringUtils.h 25 // Returns codepoint which is "normalized", whose definition depends on each
32 // In Japanese, "normalized" means that half-width and full-width katakana is
50 // Creates a "normalized" Utf8 string and push it into "dst". *dst must be
  /libcore/luni/src/main/java/java/text/
Normalizer.java 58 * Check whether the given character sequence <code>src</code> is normalized
63 * @return true if normalized according to <code>form</code>
75 * @return string normalized according to <code>form</code>
  /frameworks/compile/slang/
slang_rs_export_type.h 120 // @T was normalized by calling RSExportType::NormalizeType().
164 // @T may not be normalized
249 // @T was normalized by calling RSExportType::NormalizeType() before calling
256 bool Normalized = false);
264 bool Normalized)
267 mNormalized(Normalized) {
277 // T is normalized by calling RSExportType::NormalizeType() before
281 // @T may not be normalized
333 // @PT was normalized by calling RSExportType::NormalizeType() before calling
360 bool Normalized,
    [all...]
  /sdk/emulator/opengl/host/libs/GLESv2_dec/
GL2Decoder.cpp 103 GLboolean normalized, GLsizei stride, void * data, GLuint datalen)
110 ctx->glVertexAttribPointer(indx, size, type, normalized, 0, ctx->m_contextData->pointerData(indx));
115 GLboolean normalized, GLsizei stride, GLuint data)
118 ctx->glVertexAttribPointer(indx, size, type, normalized, stride, (GLvoid *)data);
GL2Decoder.h 43 GLboolean normalized, GLsizei stride, void * data, GLuint datalen);
45 GLboolean normalized, GLsizei stride, GLuint offset);
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
VertexDataManager.cpp 356 // VertexTypeMapping maps GL type & normalized flag to preferred and fallback D3D vertex types (as D3DVertexType enums).
357 template <GLenum GLtype, bool normalized>
377 template <bool normalized> struct VertexTypeMapping<GL_FIXED, normalized> : VertexTypeMappingBase<D3DVT_FLOAT> { }; // FixedToFloat
378 template <bool normalized> struct VertexTypeMapping<GL_FLOAT, normalized> : VertexTypeMappingBase<D3DVT_FLOAT> { }; // Identity
385 template <GLenum fromType, bool normalized, unsigned int toType>
390 // All conversions from normalized types to float use the Normalize operator.
398 // whether it is normalized or not.
399 template <class T, bool normalized>
    [all...]
VertexDataManager.h 105 bool normalized; member in struct:gl::StaticVertexBuffer::VertexElement
150 FormatConverter mAttributeTypes[NUM_GL_VERTEX_ATTRIB_TYPES][2][4]; // [GL types as enumerated by typeIndex()][normalized][size - 1]
160 static const TranslationDescription mPossibleTranslations[NUM_GL_VERTEX_ATTRIB_TYPES][2][4]; // [GL types as enumerated by typeIndex()][normalized][size - 1]
  /external/webkit/Source/JavaScriptCore/icu/unicode/
unorm.h 90 * It allows to work on strings that are not necessarily normalized
103 * already conform to FCD and do not need to be normalized (NFD) for such a process. The FCD quick check will
113 * Beyond collation and string search, normalized strings may be useful for string equivalence comparisons,
119 * Unicode text needs to be normalized to NFC.
183 * The string will be normalized according the specified normalization mode
212 * Indicates that string is not in the normalized format
216 * Indicates that string is in the normalized format
220 * Indicates that string cannot be determined if it is in the normalized
231 * string is in the desired normalized format, UNORM_NO determines that
232 * argument string is not in the desired normalized format. A
    [all...]
  /external/webkit/Source/WebCore/icu/unicode/
unorm.h 90 * It allows to work on strings that are not necessarily normalized
103 * already conform to FCD and do not need to be normalized (NFD) for such a process. The FCD quick check will
113 * Beyond collation and string search, normalized strings may be useful for string equivalence comparisons,
119 * Unicode text needs to be normalized to NFC.
183 * The string will be normalized according the specified normalization mode
212 * Indicates that string is not in the normalized format
216 * Indicates that string is in the normalized format
220 * Indicates that string cannot be determined if it is in the normalized
231 * string is in the desired normalized format, UNORM_NO determines that
232 * argument string is not in the desired normalized format. A
    [all...]
  /external/webkit/Source/WebKit/mac/icu/unicode/
unorm.h 90 * It allows to work on strings that are not necessarily normalized
103 * already conform to FCD and do not need to be normalized (NFD) for such a process. The FCD quick check will
113 * Beyond collation and string search, normalized strings may be useful for string equivalence comparisons,
119 * Unicode text needs to be normalized to NFC.
183 * The string will be normalized according the specified normalization mode
212 * Indicates that string is not in the normalized format
216 * Indicates that string is in the normalized format
220 * Indicates that string cannot be determined if it is in the normalized
231 * string is in the desired normalized format, UNORM_NO determines that
232 * argument string is not in the desired normalized format. A
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
GLServerVertex.java 68 public boolean normalized; field in class:GLAttribPointer
278 float fetchConvert(final ByteBuffer src, final GLEnum type, final boolean normalized) {
282 if (normalized)
287 if (normalized)
292 if (normalized)
297 if (normalized)
302 if (normalized)
307 if (normalized)
312 if (normalized)
352 attrib.normalized);
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
TransitionDrawable.java 178 float normalized = (float) local
180 done = normalized >= 1.0f;
181 normalized = Math.min(normalized, 1.0f);
182 mAlpha = (int) (mFrom + (mTo - mFrom) * normalized);
  /external/v8/src/
diy-fp.h 35 // with a uint64 significand and an int exponent. Normalized DiyFp numbers will
49 // The result will not be normalized.
58 // than other. The result will not be normalized.

Completed in 6974 milliseconds

1 2 3 4 5 6 7 8 91011>>