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

1 2 3 4

  /external/webkit/Source/WebCore/platform/graphics/qt/
FloatRectQt.cpp 47 FloatRect FloatRect::normalized() const function in class:WebCore::FloatRect
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
PhotoProcessorTest.java 42 final Bitmap normalized = PhotoProcessor.getNormalizedBitmap(sourceBitmap, 50, false); local
45 assertEquals(10, normalized.getWidth());
46 assertEquals(10, normalized.getHeight());
49 assertEquals(Color.argb(255, 255, 255, 255), normalized.getPixel(0, 0));
  /frameworks/compile/slang/
slang_rs_export_element.h 45 bool normalized; member in struct:slang::RSExportElement::__anon19976
  /external/eigen/Eigen/src/Core/
Dot.h 138 MatrixBase<Derived>::normalized() const function in class:Eigen::MatrixBase
150 * \sa norm(), normalized()
  /external/icu4c/i18n/
nortrans.cpp 113 * must not be normalized.
118 UnicodeString input, normalized;
124 fNorm2.normalize(input, normalized, status);
126 text.handleReplaceBetween(start, limit, normalized);
128 int32_t delta = normalized.length() - length;
136 UnicodeString normalized; local
154 fNorm2.normalize(segment, normalized, errorCode);
158 if(segment != normalized) {
159 // replace the input chunk with its normalized form
160 text.handleReplaceBetween(prev, start, normalized);
    [all...]
  /frameworks/rs/driver/
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);
  /external/harfbuzz_ng/src/
hb-glib.cc 254 gchar *normalized; local
260 normalized = g_utf8_normalize (utf8, len, G_NORMALIZE_NFC);
261 len = g_utf8_strlen (normalized, -1);
266 *ab = g_utf8_get_char (normalized);
272 g_free (normalized);
291 gchar *normalized; local
296 normalized = g_utf8_normalize (utf8, len, G_NORMALIZE_NFD);
297 len = g_utf8_strlen (normalized, -1);
302 *a = g_utf8_get_char (normalized);
306 *a = g_utf8_get_char (normalized);
    [all...]
hb-icu.cc 189 UChar utf16[4], normalized[5]; local
202 len = unorm_normalize (utf16, len, UNORM_NFC, 0, normalized, ARRAY_LENGTH (normalized), &icu_err);
205 if (u_countChar32 (normalized, len) == 1) {
206 U16_GET_UNSAFE (normalized, 0, *ab);
248 UChar utf16[2], normalized[2 * HB_UNICODE_MAX_DECOMPOSITION_LEN + 1]; local
263 len = unorm_normalize (utf16, len, UNORM_NFD, 0, normalized, ARRAY_LENGTH (normalized), &icu_err);
267 len = u_countChar32 (normalized, len);
270 U16_GET_UNSAFE (normalized, 0, *a)
318 UChar utf16[2], normalized[2 * HB_UNICODE_MAX_DECOMPOSITION_LEN + 1]; local
    [all...]
  /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/webkit/Source/WebCore/html/canvas/
WebGLVertexArrayObjectOES.h 55 , normalized(false)
67 bool normalized; member in struct:WebCore::WebGLVertexArrayObjectOES::VertexAttribState
  /external/webkit/Source/WebCore/platform/graphics/
Font.cpp 242 String normalized = String::createUninitialized(length, buffer); local
247 return normalized;
WidthIterator.cpp 101 UChar32 normalized = normalizeVoicingMarks(currentCharacter); local
102 if (normalized) {
103 c = normalized;
249 QString res = tmp.normalized(QString::NormalizationForm_C, QChar::Unicode_3_2);
  /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/chromium/chrome/browser/
enumerate_modules_model_win.h 87 // Whether this module has been normalized (necessary before checking it
89 bool normalized; member in struct:ModuleEnumerator::Module
106 // struct. Module information needs to be normalized before comparing against
281 // The vector containing all the modules enumerated. Will be normalized and
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
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]
  /frameworks/base/media/mca/filterfw/native/core/
shader_program.h 133 // normalized between 0.0 and 1.0. If this region exceeds the input frame
138 // the passed Quad. Values are considered normalized between 0.0 and 1.0.
147 // normalized between 0.0 and 1.0. If this region exceeds the output frame
152 // the passed Quad. Values are considered normalized between 0.0 and 1.0.
255 // normalize: True, if not float values should be normalized to the range
413 bool normalized; member in struct:android::filterfw::ShaderProgram::VertexAttrib
  /bionic/libc/kernel/common/linux/
hdsmart.h 31 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
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
GLClientState.h 65 bool normalized; member in struct:GLClientState::__anon1561
86 void setState(int location, int size, GLenum type, GLboolean normalized, GLsizei stride, const void *data);
245 *ptr = (T)(vertexAttrib->normalized);
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Quaternion.h 150 * \sa normalized(), MatrixBase::normalize() */
152 /** \returns a normalized version of \c *this
153 * \sa normalize(), MatrixBase::normalized() */
154 inline Quaternion normalized() const { return Quaternion(m_coeffs.normalized()); } function in class:Eigen::Quaternion
334 * Note that the two input vectors do \b not have to be normalized.
340 Vector3 v0 = a.normalized();
341 Vector3 v1 = b.normalized();
370 * and/or the quaternion is normalized, then it is enough to use the conjugate.
389 * if the quaternion is normalized
    [all...]
  /external/kernel-headers/original/linux/
hdsmart.h 30 unsigned char normalized; member in struct:ata_smart_attribute_s
  /external/opencv/cv/src/
cvsmooth.cpp 84 normalized = false;
96 normalized = false;
118 normalized = _normalized;
120 if( (normalized && CV_MAT_TYPE(_src_type) != CV_MAT_TYPE(_dst_type)) ||
121 (!normalized && CV_MAT_CN(_src_type) != CV_MAT_CN(_dst_type)))
123 "In case of normalized box filter input and output must have the same type.\n"
131 scale = normalized ? 1./(ksize.width*ksize.height) : 1;
142 if( !normalized )
143 CV_ERROR( CV_StsBadArg, "Only normalized box filter can be used for 8u->8u transformation" );
148 if( normalized || CV_MAT_DEPTH(src_type) != CV_8U
447 bool normalized = state->is_normalized(); local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
hdsmart.h 30 unsigned char normalized; member in struct:ata_smart_attribute_s
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
hdsmart.h 30 unsigned char normalized; member in struct:ata_smart_attribute_s
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
hdsmart.h 30 unsigned char normalized; member in struct:ata_smart_attribute_s

Completed in 670 milliseconds

1 2 3 4