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

1 2 3

  /frameworks/base/libs/rs/
rsVertexArray.h 44 bool normalized; member in class:android::renderscript::VertexArray::Attrib
57 void addLegacy(uint32_t type, uint32_t size, uint32_t stride, RsDataKind kind, bool normalized, uint32_t offset);
rsVertexArray.cpp 57 normalized = a.normalized;
69 normalized = false;
88 void VertexArray::addLegacy(uint32_t type, uint32_t size, uint32_t stride, RsDataKind kind, bool normalized, uint32_t offset)
95 mAttribs[mCount].normalized = normalized;
110 mAttribs[idx].normalized,
207 mAttribs[ct].normalized,
rsType.cpp 151 mGL.mUser[userNum].normalized = c.getType() != RS_TYPE_FLOAT_32;//c.getIsNormalized();
161 mGL.mVtx.normalized = false;
170 mGL.mColor.normalized = c.getType() != RS_TYPE_FLOAT_32;
179 mGL.mNorm.normalized = false;
188 mGL.mTex.normalized = false;
197 mGL.mPointSize.normalized = false;
  /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...]
  /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);
  /bionic/libc/kernel/common/linux/
hdsmart.h 24 unsigned char normalized; member in struct:ata_smart_attribute_s
  /development/ndk/platforms/android-3/include/linux/
hdsmart.h 24 unsigned char normalized; member in struct:ata_smart_attribute_s
  /external/kernel-headers/original/linux/
hdsmart.h 30 unsigned char normalized; member in struct:ata_smart_attribute_s
  /external/webkit/WebCore/platform/graphics/
WidthIterator.cpp 94 UChar32 normalized = normalizeVoicingMarks(currentCharacter); local
95 if (normalized) {
96 c = normalized;
240 QString res = tmp.normalized(QString::NormalizationForm_C, QChar::Unicode_3_2);
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
hdsmart.h 24 unsigned char normalized; member in struct:ata_smart_attribute_s
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
hdsmart.h 24 unsigned char normalized; member in struct:ata_smart_attribute_s
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
hdsmart.h 24 unsigned char normalized; member in struct:ata_smart_attribute_s
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
hdsmart.h 24 unsigned char normalized; member in struct:ata_smart_attribute_s
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
hdsmart.h 24 unsigned char normalized; member in struct:ata_smart_attribute_s
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
hdsmart.h 24 unsigned char normalized; member in struct:ata_smart_attribute_s
  /external/freetype/src/truetype/
ttgxvar.c 484 /* tuple_coords :: The coordinates of the tuple in normalized axis */
838 /* Set the blend (normalized) coordinates for this instance of the */
996 FT_Fixed* normalized = NULL; local
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
NameSplitter.java 642 String normalized = lastToken.toUpperCase(); local
643 if (mSuffixesSet.contains(normalized)) {
652 normalized += ".";
656 while (normalized.length() <= mMaxSuffixLength) {
658 if (mSuffixesSet.contains(normalized)) {
675 normalized = tokens.mTokens[pos].toUpperCase() + "." + normalized;
727 final String normalized = word.toUpperCase(); local
729 return mLastNamePrefixesSet.contains(normalized)
730 || mLastNamePrefixesSet.contains(normalized + ".")
    [all...]
  /frameworks/base/opengl/tools/glgen/stubs/gles11/
GLES20cHeader.cpp 145 GLboolean normalized, GLsizei stride, const GLvoid *pointer, GLsizei count) {
146 glVertexAttribPointer(indx, size, type, normalized, stride, pointer);
  /frameworks/base/tools/aidl/
Type.cpp 1151 string normalized = normalize_generic(name); local
1154 ssize_t baseIndex = normalized.find('<');
1155 string base(normalized.c_str(), baseIndex);
1168 while (normalized[start] != '\0') {
1169 end = normalized.find(',', start);
1170 if (end == normalized.npos) {
1171 end = normalized.find('>', start);
1173 string s(normalized.c_str()+start, end-start);
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
RecurrenceProcessor.java 334 Log.i(TAG, "normalized t=" + t + " " + t.month
    [all...]
  /external/chromium/third_party/icu/public/i18n/unicode/
timezone.h 336 * Returns the canonical system timezone ID or the normalized
340 * or the custom time zone ID in normalized format.
352 * Returns the canonical system time zone ID or the normalized
356 * or the custom time zone ID in normalized format.
736 * Parse a custom time zone identifier and return the normalized
740 * @param normalized Receives the normalized custom ID
    [all...]
  /external/icu4c/i18n/unicode/
timezone.h 270 * Returns the canonical system timezone ID or the normalized
274 * or the custom time zone ID in normalized format.
286 * Returns the canonical system time zone ID or the normalized
290 * or the custom time zone ID in normalized format.
710 * Parse a custom time zone identifier and return the normalized
714 * @param normalized Receives the normalized custom ID
717 * @return The normalized custom id string.
719 static UnicodeString& getCustomID(const UnicodeString& id, UnicodeString& normalized,
723 * Returns the normalized custome time zone ID for the given offset fields
    [all...]
  /external/v8/test/mjsunit/
object-literal-gc.js 32 // normalized object literals correctly.
  /external/webkit/WebKit/chromium/src/
GraphicsContext3D.cpp 128 void vertexAttribPointer(unsigned long indx, int size, int type, bool normalized,
165 bool normalized; member in class:WebCore::GraphicsContext3DInternal::VertexAttribPointerState
349 , normalized(false)
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/
FilenameUtils.java 201 * @return the normalized filename, or null if invalid
247 * @return the normalized filename, or null if invalid
258 * @return the normalized filename
361 * The returned path is always normalized via {@link #normalize(String)},
365 * it will be normalized and returned.
366 * Otherwise, the paths will be joined, normalized and returned.
    [all...]

Completed in 917 milliseconds

1 2 3