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

1 2

  /external/oprofile/libregex/tests/
regex_test.cpp 32 regular_expression_replace rep; local
34 setup_regex(rep, "../stl.pat");
50 rep.execute(str);
  /libcore/luni/src/test/java/tests/security/cert/
CertPathCertPathRepTest.java 30 MyCertPathRep rep = cp.new MyCertPathRep("MyEncoding", testEncoding); local
31 assertEquals(testEncoding, rep.getData());
32 assertEquals("MyEncoding", rep.getType());
44 MyCertPathRep rep = cp.new MyCertPathRep("MyEncoding", testEncoding); local
47 Object obj = rep.readResolve();
53 rep = cp.new MyCertPathRep("MyEncoding", new byte[] {(byte) 1, (byte) 2, (byte) 3 });
55 rep.readResolve();
CertificateCertificateRepTest.java 33 MyCertificateRep rep = c1.new MyCertificateRep("TEST_TYPE", new byte[] { local
37 rep.getData()));
38 assertEquals("TEST_TYPE", rep.getType());
61 MyCertificateRep rep = c1.new MyCertificateRep("TEST_TYPE", new byte[] { local
65 rep.readResolve();
  /external/icu4c/i18n/
casetrn.cpp 36 Replaceable *rep=(Replaceable *)csc->p; local
56 c=rep->char32At(csc->index-1);
67 c=rep->char32At(csc->index);
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...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
DerGeneralizedTimeEDTest.java 56 String rep = new String(encoded, 2, encoded[1] & 0xff, "UTF-8"); local
57 assertEquals("full", "20041202093934.187Z", rep);
63 rep = new String(encoded, 2, encoded[1] & 0xff, "UTF-8");
64 assertEquals("2 fraction", "20041202093934.18Z", rep);
70 rep = new String(encoded, 2, encoded[1] & 0xff, "UTF-8");
71 assertEquals("1 fraction", "20041202093934.1Z", rep);
77 rep = new String(encoded, 2, encoded[1] & 0xff, "UTF-8");
78 assertEquals("no fraction", "20041202093934Z", rep);
87 rep = new String(encoded, 2, encoded[1] & 0xff, "UTF-8");
88 assertEquals("midnight", "20040606000000Z", rep);
    [all...]
DerUTCTimeEDTest.java 58 String rep = new String(encoded, 2, encoded[1] & 0xff, "UTF-8"); local
59 assertEquals("no fraction", "041202093934Z", rep);
68 rep = new String(encoded, 2, encoded[1] & 0xff, "UTF-8");
69 assertEquals("midnight", "040606000000Z", rep);
  /external/webkit/Source/JavaScriptCore/runtime/
SmallStrings.cpp 46 StringImpl* rep(unsigned char character) function in class:JSC::SmallStringsStorage
136 m_singleCharacterStrings[character] = new (globalData) JSString(globalData, PassRefPtr<StringImpl>(m_storage->rep(character)), JSString::HasOtherOwner);
143 return m_storage->rep(character);
Structure.cpp 68 bool StructureTransitionTable::contains(StringImpl* rep, unsigned attributes) const
72 return transition && transition->m_nameInPrevious == rep && transition->m_attributesInPrevious == attributes;
74 return map()->contains(make_pair(rep, attributes));
77 inline Structure* StructureTransitionTable::get(StringImpl* rep, unsigned attributes) const
81 return (transition && transition->m_nameInPrevious == rep && transition->m_attributesInPrevious == attributes) ? transition : 0;
83 return map()->get(make_pair(rep, attributes));
286 StringImpl* rep = propertyName.impl(); local
293 PropertyMapEntry* entry = m_propertyTable->find(rep).first;
695 StringImpl* rep = propertyName.impl(); local
708 m_propertyTable->add(PropertyMapEntry(globalData, this, rep, newOffset, attributes, specificValue))
720 StringImpl* rep = propertyName.impl(); local
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/cert/
PKIXBuilderParameters_ImplTest.java 230 String rep = p.toString(); local
232 assertNotNull(rep);
  /external/hyphenation/
example.c 29 void single_hyphenations(char * word, char * hyphen, char ** rep, int * pos, int * cut, int utf8) {
35 if (rep && rep[j]) {
39 printf(" - %s%s", word, rep[j]);
73 char ** rep; local
144 rep = NULL;
150 (optd && hnj_hyphen_hyphenate2(dict, lcword, n-1, hyphens, hword, &rep, &pos, &cut))) {
182 if (optdd) single_hyphenations(lcword, hyphens, rep, pos, cut, dict->utf8);
183 if (rep) {
185 if (rep[i]) free(rep[i])
    [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/support/src/test/java/org/apache/harmony/security/tests/support/cert/
MyCertificate.java 46 public CertificateRep rep; field in class:MyCertificate
  /dalvik/dx/src/com/android/dx/ssa/
Dominators.java 142 SsaBasicBlock vAncestorRep = vabbInfo.rep;
143 SsaBasicBlock vRep = vbbInfo.rep;
146 vbbInfo.rep = vAncestorRep;
161 return bbInfo.rep;
261 bbInfo.rep = v;
273 * rep(resentative) is known as "label" in the paper. It is the node
276 public SsaBasicBlock rep; field in class:Dominators.DFSInfo
  /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/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...]
XF86DGA.c 105 xXF86DGAGetVideoLLReply rep; local
115 if (!_XReply(dpy, (xReply *)&rep, 0, xFalse)) {
121 *offset = /*(char *)*/rep.offset;
122 *width = rep.width;
123 *bank_size = rep.bank_size;
124 *ram_size = rep.ram_size;
161 xXF86DGAGetViewPortSizeReply rep; local
171 if (!_XReply(dpy, (xReply *)&rep, 0, xFalse)) {
177 *width = rep.width;
178 *height = rep.height
217 xXF86DGAGetVidPageReply rep; local
290 xXF86DGAQueryDirectVideoReply rep; local
317 xXF86DGAViewPortChangedReply rep; local
    [all...]
  /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/zlib/contrib/minizip/
minizip.c 333 char rep=0; local
344 rep = answer[0] ;
345 if ((rep>='a') && (rep<='z'))
346 rep -= 0x20;
348 while ((rep!='Y') && (rep!='N') && (rep!='A'));
349 if (rep=='N')
351 if (rep=='A'
    [all...]
miniunz.c 365 char rep=0; local
382 rep = answer[0] ;
383 if ((rep>='a') && (rep<='z'))
384 rep -= 0x20;
386 while ((rep!='Y') && (rep!='N') && (rep!='A'));
389 if (rep == 'N')
392 if (rep == 'A'
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/joystick/bsd/
SDL_sysjoystick.c 141 #define REP_BUF_DATA(rep) ((rep)->buf->ucr_data)
143 #define REP_BUF_DATA(rep) ((rep)->buf->data)
247 struct report *rep; local
296 rep = &hw->inreport;
297 if (ioctl(fd, USB_GET_REPORT_ID, &rep->rid) < 0) {
298 rep->rid = -1; /* XXX */
300 if (report_alloc(rep, hw->repdesc, REPORT_INPUT) < 0) {
303 if (rep->size <= 0)
389 struct report *rep; local
    [all...]
  /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/quake/quake/src/QW/server/
pr_edict.c 240 static int rep = 0; local
255 gefvCache[rep].pcache = def;
256 strcpy (gefvCache[rep].field, field);
257 rep ^= 1;
  /frameworks/base/core/java/android/text/method/
QwertyKeyListener.java 255 String rep = getReplacement(content, x, oldStart, view); local
257 if (rep != null) {
268 content.replace(x, oldStart, rep);
  /external/chromium/chrome/browser/search_engines/
template_url.cc 560 GURL::Replacements rep; local
565 rep.SetPath(favicon_path, url_parse::Component(0, favicon_path_len));
566 rep.ClearUsername();
567 rep.ClearPassword();
568 rep.ClearQuery();
569 rep.ClearRef();
570 return url.ReplaceComponents(rep);

Completed in 3981 milliseconds

1 2