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

1 2 3 4 5 6

  /external/chromium/third_party/icu/public/common/unicode/
urep.h 57 * @param rep A pointer to "this" UReplaceable object.
61 int32_t (*length)(const UReplaceable* rep);
66 * returned by (*length)(rep). See unistr.h for a description of
69 * @param rep A pointer to "this" UReplaceable object.
74 UChar (*charAt)(const UReplaceable* rep,
82 * @param rep A pointer to "this" UReplaceable object.
87 UChar32 (*char32At)(const UReplaceable* rep,
95 * @param rep A pointer to "this" UReplaceable object.
106 void (*replace)(UReplaceable* rep,
116 * @param rep A pointer to "this" UReplaceable object
    [all...]
  /external/icu4c/common/unicode/
urep.h 57 * @param rep A pointer to "this" UReplaceable object.
61 int32_t (*length)(const UReplaceable* rep);
66 * returned by (*length)(rep). See unistr.h for a description of
69 * @param rep A pointer to "this" UReplaceable object.
74 UChar (*charAt)(const UReplaceable* rep,
82 * @param rep A pointer to "this" UReplaceable object.
87 UChar32 (*char32At)(const UReplaceable* rep,
95 * @param rep A pointer to "this" UReplaceable object.
106 void (*replace)(UReplaceable* rep,
116 * @param rep A pointer to "this" UReplaceable object
    [all...]
  /external/webkit/WebKit/mac/Carbon/
CarbonUtils.m 102 NSBitmapImageRep* rep = NULL;
110 rep = [reps objectAtIndex:i];
115 if ( rep )
117 //CGColorSpaceRef csync = (CGColorSpaceRef)[rep valueForProperty:NSImageColorSyncProfileData];
121 [rep getBitmapDataPlanes:planes];
123 image = _NSCreateImageRef( planes, [rep pixelsWide], [rep pixelsHigh],
124 [rep bitsPerSample], [rep samplesPerPixel], [rep bitsPerPixel]
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/Xinerama/
Xinerama.c 103 xPanoramiXQueryVersionReply rep; local
114 if (!_XReply (dpy, (xReply *) &rep, 0, xTrue)) {
119 *major_versionp = rep.majorVersion;
120 *minor_versionp = rep.minorVersion;
138 xPanoramiXGetStateReply rep; local
148 if (!_XReply (dpy, (xReply *) &rep, 0, xTrue)) {
155 panoramiX_info->window = rep.window;
156 panoramiX_info->State = rep.state;
167 xPanoramiXGetScreenCountReply rep; local
177 if (!_XReply (dpy, (xReply *) &rep, 0, xTrue))
197 xPanoramiXGetScreenSizeReply rep; local
248 xXineramaIsActiveReply rep; local
278 xXineramaQueryScreensReply rep; local
    [all...]
  /libcore/luni/src/test/java/tests/security/cert/
CertPathCertPathRepTest.java 41 MyCertPathRep rep = cp.new MyCertPathRep("MyEncoding", testEncoding); local
42 assertEquals(testEncoding, rep.getData());
43 assertEquals("MyEncoding", rep.getType());
61 MyCertPathRep rep = cp.new MyCertPathRep("MyEncoding", testEncoding); local
64 Object obj = rep.readResolve();
70 rep = cp.new MyCertPathRep("MyEncoding", new byte[] {(byte) 1, (byte) 2, (byte) 3 });
72 rep.readResolve();
CertificateCertificateRepTest.java 44 MyCertificateRep rep = c1.new MyCertificateRep("TEST_TYPE", new byte[] { local
48 rep.getData()));
49 assertEquals("TEST_TYPE", rep.getType());
78 MyCertificateRep rep = c1.new MyCertificateRep("TEST_TYPE", new byte[] { local
82 rep.readResolve();
  /bionic/libc/arch-x86/string/
bzero.S 29 rep /* zero until word aligned */
35 rep
39 rep
memset.S 39 rep
44 rep
49 L1: rep
bcopy.S 66 rep
70 rep
82 rep
88 rep
  /external/webkit/JavaScriptCore/runtime/
PropertyNameArray.cpp 31 void PropertyNameArray::add(UString::Rep* identifier)
33 ASSERT(identifier == &UString::Rep::empty() || identifier->isIdentifier());
38 if (identifier == m_data->propertyNameVector()[i].ustring().rep())
44 m_set.add(m_data->propertyNameVector()[i].ustring().rep());
JSVariableObject.cpp 39 if (symbolTable().contains(propertyName.ustring().rep()))
63 SymbolTableEntry entry = symbolTable().inlineGet(propertyName.ustring().rep());
SmallStrings.cpp 46 UString::Rep* rep(unsigned char character) { return &m_reps[character]; } function in class:JSC::SmallStringsStorage
49 UString::Rep m_reps[numCharactersToStore];
58 new (&m_reps[i]) UString::Rep(&characterBuffer[i], 1, PassRefPtr<UStringImpl>(baseString));
131 m_singleCharacterStrings[character] = new (globalData) JSString(globalData, m_storage->rep(character), JSString::HasOtherOwner);
134 UString::Rep* SmallStrings::singleCharacterStringRep(unsigned char character)
138 return m_storage->rep(character);
Identifier.h 39 Identifier(ExecState* exec, UString::Rep* rep) : _ustring(add(exec, rep)) { }
40 Identifier(ExecState* exec, const UString& s) : _ustring(add(exec, s.rep())) { }
44 Identifier(JSGlobalData* globalData, UString::Rep* rep) : _ustring(add(globalData, rep)) { }
45 Identifier(JSGlobalData* globalData, const UString& s) : _ustring(add(globalData, s.rep())) { }
76 static void remove(UString::Rep*);
78 static bool equal(const UString::Rep*, const char*)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/Xv/
Xv.c 116 xvQueryExtensionReply rep; local
124 if (!_XReply(dpy, (xReply *)&rep, 0, xFalse)) {
130 *p_version = rep.version;
131 *p_revision = rep.revision;
151 xvQueryAdaptorsReply rep; local
174 if (_XReply(dpy, (xReply *)&rep, 0, xFalse) == 0) {
180 size = rep.length << 2;
192 if (rep.num_adaptors == 0) {
195 size = rep.num_adaptors*sizeof(SDL_NAME(XvAdaptorInfo));
207 for (ii=0; ii<rep.num_adaptors; ii++)
312 xvQueryEncodingsReply rep; local
609 xvGrabPortReply rep; local
736 xvGetPortAttributeReply rep; local
777 xvQueryBestSizeReply rep; local
814 xvQueryPortAttributesReply rep; local
869 xvListImageFormatsReply rep; local
942 xvQueryImageAttributesReply rep; local
    [all...]
  /external/webkit/JavaScriptCore/bytecode/
EvalCodeCache.h 50 evalExecutable = m_cacheMap.get(evalSource.rep());
59 m_cacheMap.set(evalSource.rep(), evalExecutable);
71 typedef HashMap<RefPtr<UString::Rep>, RefPtr<EvalExecutable> > EvalCacheMap;
  /external/webkit/WebCore/bridge/jni/jsc/
JavaStringJSC.h 49 m_rep = UString().rep();
58 m_rep = UString(reinterpret_cast<const UChar*>(uc), size).rep();
76 RefPtr<UString::Rep> m_rep;
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/Xxf86vm/
XF86VMode.c 124 xXF86VidModeQueryVersionReply rep; local
133 if (!_XReply(dpy, (xReply *)&rep, 0, xFalse)) {
138 *majorVersion = rep.majorVersion;
139 *minorVersion = rep.minorVersion;
191 xXF86VidModeGetGammaReply rep; local
201 if (!_XReply(dpy, (xReply *)&rep, 0, xFalse)) {
206 Gamma->red = ((float)rep.red) / 10000.;
207 Gamma->green = ((float)rep.green) / 10000.;
208 Gamma->blue = ((float)rep.blue) / 10000.;
222 xXF86VidModeGetModeLineReply rep; local
299 xXF86VidModeGetAllModeLinesReply rep; local
703 xXF86VidModeValidateModeLineReply rep; local
905 xXF86VidModeGetMonitorReply rep; local
1006 xXF86VidModeGetViewPortReply rep; local
1084 xXF86VidModeGetDotClocksReply rep; local
1168 xXF86VidModeGetGammaRampReply rep; local
1202 xXF86VidModeGetGammaRampSizeReply rep; local
    [all...]
  /external/webkit/WebCore/bridge/c/
c_class.cpp 77 Method* method = _methods.get(identifier.ustring().rep());
90 _methods.set(identifier.ustring().rep(), aMethod);
100 Field* aField = _fields.get(identifier.ustring().rep());
111 _fields.set(identifier.ustring().rep(), aField);
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/XME/
xme.c 234 xXiGMiscQueryVersionReply rep; local
248 if (!_XReply (dpy, (xReply *)&rep, 0, xTrue)) {
254 *major = rep.major;
255 *minor = rep.minor;
267 xXiGMiscQueryViewsReply rep; local
275 if (!_XReply (dpy, (xReply *)&rep, 0, xFalse)) {
281 n = rep.nviews;
309 xXiGMiscQueryResolutionsReply rep; local
318 if (!_XReply (dpy, (xReply *)&rep, 0, xFalse)) {
324 n = rep.nresolutions
371 xXiGMiscFullScreenReply rep; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/Xxf86dga/
XF86DGA2.c 167 xXDGAQueryVersionReply rep; local
176 if (!_XReply(dpy, (xReply *)&rep, 0, xFalse)) {
181 *majorVersion = rep.majorVersion;
182 *minorVersion = rep.minorVersion;
225 xXDGAOpenFramebufferReply rep; local
237 if (!_XReply(dpy, (xReply *)&rep, 0, xFalse)) {
243 if(rep.length) {
244 deviceName = Xmalloc(rep.length << 2);
245 _XRead(dpy, deviceName, rep.length << 2);
249 (unsigned char*)(long)rep.mem1,
288 xXDGAQueryModesReply rep; local
368 xXDGASetModeReply rep; local
603 xXDGAGetViewportStatusReply rep; local
626 xXDGASyncReply rep; local
651 xXDGAChangePixmapModeReply rep; local
    [all...]
  /external/chromium/third_party/icu/source/test/cintltst/
utransts.c 61 static void InitXReplaceable(XReplaceable* rep, const char* cstring) {
62 rep->text = malloc(sizeof(UChar) * (strlen(cstring)+1));
63 u_uastrcpy(rep->text, cstring);
66 static void FreeXReplaceable(XReplaceable* rep) {
67 if (rep->text != NULL) {
68 free(rep->text);
69 rep->text = NULL;
74 static int32_t Xlength(const UReplaceable* rep) {
75 const XReplaceable* x = (const XReplaceable*)rep;
80 static UChar XcharAt(const UReplaceable* rep, int32_t offset)
    [all...]
  /external/icu4c/test/cintltst/
utransts.c 61 static void InitXReplaceable(XReplaceable* rep, const char* cstring) {
62 rep->text = malloc(sizeof(UChar) * (strlen(cstring)+1));
63 u_uastrcpy(rep->text, cstring);
66 static void FreeXReplaceable(XReplaceable* rep) {
67 if (rep->text != NULL) {
68 free(rep->text);
69 rep->text = NULL;
74 static int32_t Xlength(const UReplaceable* rep) {
75 const XReplaceable* x = (const XReplaceable*)rep;
80 static UChar XcharAt(const UReplaceable* rep, int32_t offset)
    [all...]
  /external/grub/stage2/
nbloader.S 67 rep
110 rep
  /external/webkit/JavaScriptCore/profiler/
CallIdentifier.h 59 key.m_name.rep()->hash(),
60 key.m_url.rep()->hash(),
63 return UString::Rep::computeHash(reinterpret_cast<char*>(hashCodes), sizeof(hashCodes));
  /external/chromium/third_party/icu/source/i18n/
utrans.cpp 17 #include "unicode/rep.h"
40 UReplaceable *rep; member in class:ReplaceableGlue
91 this->rep = replaceable;
98 return (*func->length)(rep);
102 return (*func->charAt)(rep, offset);
106 return (*func->char32At)(rep, offset);
112 (*func->replace)(rep, start, limit, text.getBuffer(), text.length());
118 (*func->extract)(rep, start, limit, target.getBuffer(limit-start));
123 (*func->copy)(rep, start, limit, dest);
397 UReplaceable* rep,
    [all...]

Completed in 585 milliseconds

1 2 3 4 5 6