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

1 2 3 4 5 6 7 8 910

  /external/v8/test/mjsunit/regress/
regress-crbug-272564.js 39 function pe(a, b, c) { function
46 pe(a, b, 0);
47 pe(a, b, 0);
48 %OptimizeFunctionOnNextCall(pe);
49 pe(a, b, 0);
  /external/iproute2/lib/
inet_proto.c 30 struct protoent *pe; local
35 pe = getprotobynumber(proto);
36 if (pe) {
38 strncpy(ncache, pe->p_name, 16);
39 strncpy(buf, pe->p_name, len);
50 struct protoent *pe; local
62 pe = getprotobyname(buf);
63 if (pe) {
64 icache = pe->p_proto;
65 strncpy(ncache, pe->p_name, 16)
    [all...]
  /external/skia/gm/
dashcubics.cpp 19 SkPathEffect* pe = SkDashPathEffect::Create(intervals, 2, 0); local
30 paint.setPathEffect(pe)->unref();
patheffects.cpp 19 SkPathEffect* pe = paint->getPathEffect(); local
22 if (pe) {
23 compose = SkComposePathEffect::Create(pe, corner);
  /system/bt/bta/mce/
bta_mce_act.c 81 tSDP_PROTOCOL_ELEM pe; local
90 if (!SDP_FindProtocolListElemInRec(p_rec, UUID_PROTOCOL_RFCOMM, &pe))
93 evt_data.mas[found].scn = pe.params[0];
  /external/guice/core/test/com/google/inject/
ProvisionExceptionsTest.java 47 } catch(ProvisionException pe) {
49 Asserts.assertContains(pe.getMessage(),
51 assertEquals(1, pe.getErrorMessages().size());
52 assertEquals(IllegalStateException.class, pe.getCause().getClass());
53 assertEquals(IllegalStateException.class, Errors.getOnlyCause(pe.getErrorMessages()).getClass());
69 } catch(ProvisionException pe) {
71 Asserts.assertContains(pe.getMessage(),
73 assertEquals(1, pe.getErrorMessages().size());
74 assertEquals(IOException.class, pe.getCause().getClass());
75 assertEquals(IOException.class, Errors.getOnlyCause(pe.getErrorMessages()).getClass())
    [all...]
  /external/aac/libAACenc/src/
line_pe.h 104 INT sfbPe[MAX_GROUPED_SFB]; /* pe for each sfb */
107 INT pe; /* sum of sfbPe */ member in struct:__anon5393
114 INT pe; member in struct:__anon5394
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
PrivilegedActionException2Test.java 30 PrivilegedActionException pe = new PrivilegedActionException(e); local
31 assertEquals("Did not encapsulate test exception!", e, pe
35 pe = new PrivilegedActionException(null);
36 assertNull("Did not encapsulate null test exception properly!", pe
45 PrivilegedActionException pe = new PrivilegedActionException(e); local
46 assertEquals("Did not encapsulate test IOException!", e, pe
  /frameworks/av/media/libstagefright/codecs/aacenc/inc/
line_pe.h 34 Word16 sfbPe[MAX_GROUPED_SFB]; /* pe for each sfb */
37 Word16 pe; /* sum of sfbPe */ member in struct:__anon27595
45 Word16 pe; member in struct:__anon27596
  /libcore/ojluni/src/main/java/sun/security/util/
PropertyExpander.java 81 int pe = p+2; local
84 if (pe < max && value.charAt(pe) == '{') {
85 pe = value.indexOf("}}", pe);
86 if (pe == -1 || pe+2 == max) {
92 pe++;
93 sb.append(value.substring(p, pe+1));
96 while ((pe < max) && (value.charAt(pe) != '}'))
    [all...]
  /external/harfbuzz_ng/src/
hb-buffer-deserialize-json.hh 448 const char *p = buf, *pe = buf + buf_len; local
453 while (p < pe && ISSPACE (*p))
455 if (p < pe && *p == (buffer->len ? ',' : '['))
476 if ( p == pe )
629 if ( ++p != pe )
640 return p == pe && *(p-1) != ']';
hb-buffer-deserialize-text.hh 325 const char *p = buf, *pe = buf + buf_len; local
330 while (p < pe && ISSPACE (*p))
332 if (p < pe && *p == (buffer->len ? '|' : '['))
337 const char *eof = pe, *tok = NULL;
353 if ( p == pe )
485 if ( ++p != pe )
568 return p == pe && *(p-1) != ']';
hb-ot-shape-complex-indic-machine.hh 1575 unsigned int p, pe, eof, ts HB_UNUSED, te HB_UNUSED, act HB_UNUSED; local
    [all...]
hb-ot-shape-complex-myanmar-machine.hh 284 unsigned int p, pe, eof, ts HB_UNUSED, te HB_UNUSED, act HB_UNUSED; local
300 pe = eof = buffer->len;
311 if ( p == pe )
381 if ( ++p != pe )
hb-ot-shape-complex-use-machine.hh 383 unsigned int p, pe, eof, ts HB_UNUSED, te HB_UNUSED, act HB_UNUSED; local
399 pe = eof = buffer->len;
410 if ( p == pe )
528 if ( ++p != pe )
  /external/skia/samplecode/
SamplePathEffects.cpp 48 SkPathEffect* pe = SkComposePathEffect::Create(outer, inner); local
51 return pe;
66 SkPathEffect* pe = SkComposePathEffect::Create(outer, inner); local
69 return pe;
  /external/skia/src/gpu/
GrStrokeInfo.h 91 bool setDashInfo(const SkPathEffect* pe) {
92 if (pe && !this->isFillStyle()) {
94 fDashType = pe->asADash(&dashInfo);
98 pe->asADash(&dashInfo);
181 const SkPathEffect* pe = paint.getPathEffect(); local
182 this->setDashInfo(pe);
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
line_pe.c 37 * description: constants that do not change during successive pe calculations
79 Word32 pe, constPart, nActiveLines; local
81 peData->pe = peData->offset;
90 pe = 0;
127 pe = pe + peChanData->sfbPe[sfbGrp+sfb];
133 peChanData->pe = saturate(pe);
138 pe += peData->pe;
    [all...]
  /system/bt/bta/hf_client/
bta_hf_client_sdp.c 221 tSDP_PROTOCOL_ELEM pe; local
238 if (SDP_FindProtocolListElemInRec(p_rec, UUID_PROTOCOL_RFCOMM, &pe))
240 bta_hf_client_cb.scb.peer_scn = (UINT8) pe.params[0];
  /dalvik/dx/src/com/android/dx/cf/direct/
AttributeListParser.java 156 ParseException pe = new ParseException(ex); local
157 pe.addContext("...while parsing attributes[" + i + "]");
158 throw pe;
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
ShapeDrawable1.java 112 PathEffect pe = new DiscretePathEffect(10, 4); local
115 new ComposePathEffect(pe2, pe));
  /external/icu/icu4c/source/test/intltest/
reptest.cpp 285 UParseError pe; local
287 pe, status);
  /libcore/ojluni/src/main/java/sun/net/
ProgressMonitor.java 129 ProgressEvent pe = new ProgressEvent(pi, pi.getURL(), pi.getMethod(), pi.getContentType(), pi.getState(), pi.getProgress(), pi.getExpected()); local
130 pl.progressStart(pe);
166 ProgressEvent pe = new ProgressEvent(pi, pi.getURL(), pi.getMethod(), pi.getContentType(), pi.getState(), pi.getProgress(), pi.getExpected()); local
167 pl.progressFinish(pe);
198 ProgressEvent pe = new ProgressEvent(pi, pi.getURL(), pi.getMethod(), pi.getContentType(), pi.getState(), pi.getProgress(), pi.getExpected()); local
199 pl.progressUpdate(pe);
  /system/bt/bta/sdp/
bta_sdp_act.c 96 tSDP_PROTOCOL_ELEM pe; local
122 if (SDP_FindProtocolListElemInRec(p_rec, UUID_PROTOCOL_RFCOMM, &pe))
124 record->mns.hdr.rfcomm_channel_number = pe.params[0];
136 tSDP_PROTOCOL_ELEM pe; local
175 if (SDP_FindProtocolListElemInRec(p_rec, UUID_PROTOCOL_RFCOMM, &pe))
177 record->mas.hdr.rfcomm_channel_number = pe.params[0];
190 tSDP_PROTOCOL_ELEM pe; local
221 if (SDP_FindProtocolListElemInRec(p_rec, UUID_PROTOCOL_RFCOMM, &pe))
223 record->pse.hdr.rfcomm_channel_number = pe.params[0];
235 tSDP_PROTOCOL_ELEM pe; local
316 tSDP_PROTOCOL_ELEM pe; local
346 tSDP_PROTOCOL_ELEM pe; local
    [all...]
  /cts/tests/tests/security/jni/
android_security_cts_NativeCodeTest.cpp 74 struct perf_event_attr pe[2]; local
76 memset(pe, 0, sizeof(pe));
77 pe[0].type = 2;
78 pe[0].config = 72;
79 pe[0].size = 80;
80 pe[1].type = PERF_TYPE_RAW;
81 pe[1].size = 80;
82 fd[0]=syscall(__NR_perf_event_open, &pe[0], 0, 0, -1, 0);
83 fd[1]=syscall(__NR_perf_event_open, &pe[1], 0, 0, fd[0], 0)
    [all...]

Completed in 1370 milliseconds

1 2 3 4 5 6 7 8 910