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

1 2 3 4 5 6

  /external/chromium/third_party/icu/source/i18n/
uspoof_build.cpp 50 int32_t *errorType, UParseError *pe, UErrorCode *status) {
62 if (pe != NULL) {
63 pe->line = 0;
64 pe->offset = 0;
65 pe->preContext[0] = 0;
66 pe->postContext[0] = 0;
74 ConfusabledataBuilder::buildConfusableData(This, confusables, confusablesLen, errorType, pe, *status);
75 buildWSConfusableData(This, confusablesWholeScript, confusablesWholeScriptLen, pe, *status);
uregexc.cpp 27 UParseError *pe,
38 return uregex_open(patString.getBuffer(), patString.length(), flags, pe, status);
uspoof_buildwsconf.h 59 int32_t confusablesWSLen, UParseError *pe, UErrorCode &status);
  /external/icu4c/i18n/
uspoof_build.cpp 50 int32_t *errorType, UParseError *pe, UErrorCode *status) {
62 if (pe != NULL) {
63 pe->line = 0;
64 pe->offset = 0;
65 pe->preContext[0] = 0;
66 pe->postContext[0] = 0;
74 ConfusabledataBuilder::buildConfusableData(This, confusables, confusablesLen, errorType, pe, *status);
75 buildWSConfusableData(This, confusablesWholeScript, confusablesWholeScriptLen, pe, *status);
uregexc.cpp 27 UParseError *pe,
38 return uregex_open(patString.getBuffer(), patString.length(), flags, pe, status);
uspoof_wsconf.h 65 int32_t confusablesWSLen, UParseError *pe, UErrorCode &status);
  /external/iproute2/lib/
inet_proto.c 29 struct protoent *pe; local
34 pe = getprotobynumber(proto);
35 if (pe) {
37 strncpy(ncache, pe->p_name, 16);
38 strncpy(buf, pe->p_name, len);
49 struct protoent *pe; local
61 pe = getprotobyname(buf);
62 if (pe) {
63 icache = pe->p_proto;
64 strncpy(ncache, pe->p_name, 16)
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
PrivilegedActionException2Test.java 44 PrivilegedActionException pe = new PrivilegedActionException(e); local
45 assertEquals("Did not encapsulate test exception!", e, pe
49 pe = new PrivilegedActionException(null);
50 assertNull("Did not encapsulate null test exception properly!", pe
65 PrivilegedActionException pe = new PrivilegedActionException(e); local
66 assertEquals("Did not encapsulate test IOException!", e, pe
81 PrivilegedActionException pe = new PrivilegedActionException(ex); local
84 Throwable res = pe.getCause();
  /bionic/libc/kernel/common/linux/
posix_acl.h 45 #define FOREACH_ACL_ENTRY(pa, acl, pe) for(pa=(acl)->a_entries, pe=pa+(acl)->a_count; pa<pe; pa++)
  /development/ndk/platforms/android-3/include/linux/
posix_acl.h 45 #define FOREACH_ACL_ENTRY(pa, acl, pe) for(pa=(acl)->a_entries, pe=pa+(acl)->a_count; pa<pe; pa++)
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
posix_acl.h 45 #define FOREACH_ACL_ENTRY(pa, acl, pe) for(pa=(acl)->a_entries, pe=pa+(acl)->a_count; pa<pe; pa++)
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
posix_acl.h 45 #define FOREACH_ACL_ENTRY(pa, acl, pe) for(pa=(acl)->a_entries, pe=pa+(acl)->a_count; pa<pe; pa++)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
posix_acl.h 45 #define FOREACH_ACL_ENTRY(pa, acl, pe) for(pa=(acl)->a_entries, pe=pa+(acl)->a_count; pa<pe; pa++)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
posix_acl.h 45 #define FOREACH_ACL_ENTRY(pa, acl, pe) for(pa=(acl)->a_entries, pe=pa+(acl)->a_count; pa<pe; pa++)
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
posix_acl.h 45 #define FOREACH_ACL_ENTRY(pa, acl, pe) for(pa=(acl)->a_entries, pe=pa+(acl)->a_count; pa<pe; pa++)
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
posix_acl.h 45 #define FOREACH_ACL_ENTRY(pa, acl, pe) for(pa=(acl)->a_entries, pe=pa+(acl)->a_count; pa<pe; pa++)
  /libcore/luni/src/main/java/org/apache/harmony/security/fortress/
DefaultPolicyParser.java 139 PolicyEntry pe = resolveGrant(ge, ks, system, resolve); local
140 if (!pe.isVoid()) {
141 result.add(pe);
204 DefaultPolicyScanner.PrincipalEntry pe = iter local
207 pe.name = PolicyUtils.expand(pe.name, system);
209 if (pe.klass == null) {
210 principals.add(getPrincipalByAlias(ks, pe.name));
212 principals.add(new UnresolvedPrincipal(pe.klass, pe.name))
218 DefaultPolicyScanner.PermissionEntry pe = iter local
    [all...]
  /frameworks/base/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...]
  /external/chromium/base/
pe_image_unittest.cc 146 // Tests that we are able to enumerate stuff from a PE file, and that
155 PEImage pe(module);
157 EXPECT_TRUE(pe.VerifyMagic());
159 DWORD os = pe.GetNTHeaders()->OptionalHeader.MajorOperatingSystemVersion;
160 os = os * 10 + pe.GetNTHeaders()->OptionalHeader.MinorOperatingSystemVersion;
162 pe.EnumSections(SectionsCallback, &count);
166 pe.EnumImportChunks(ImportChunksCallback, &count);
170 pe.EnumDelayImportChunks(DelayImportChunksCallback, &count);
174 pe.EnumExports(ExportsCallback, &count);
179 pe.EnumAllImports(ImportsCallback, &count)
    [all...]
  /external/clearsilver/util/
filter.c 58 int pi[2]={-1,-1}, po[2]={-1,-1}, pe[2]={-1,-1}; local
89 if (pipe (pe) == -1)
127 close (pe[0]);
128 dup2 (pe[1], 2);
129 close (pe[1]);
150 close (pe[0]);
151 close (pe[1]);
168 close (pe[1]);
169 *fderr = pe[0];
  /libcore/luni/src/main/java/org/apache/harmony/security/
DefaultPolicyScanner.java 264 PrincipalEntry pe = new PrincipalEntry(); local
266 pe.klass = st.sval;
269 pe.klass = PrincipalEntry.WILDCARD;
273 pe.name = st.sval;
275 pe.name = PrincipalEntry.WILDCARD;
279 return pe;
310 PermissionEntry pe = new PermissionEntry(); local
312 pe.klass = st.sval;
314 pe.name = st.sval;
321 pe.actions = st.sval
    [all...]
  /external/chromium/third_party/icu/source/common/
ucase.c 414 const uint16_t *pe=GET_EXCEPTIONS(csp, props); local
415 uint16_t excWord=*pe++;
417 GET_SLOT_VALUE(excWord, UCASE_EXC_LOWER, pe, c);
431 const uint16_t *pe=GET_EXCEPTIONS(csp, props); local
432 uint16_t excWord=*pe++;
434 GET_SLOT_VALUE(excWord, UCASE_EXC_UPPER, pe, c);
448 const uint16_t *pe=GET_EXCEPTIONS(csp, props); local
449 uint16_t excWord=*pe++;
458 GET_SLOT_VALUE(excWord, idx, pe, c);
517 const uint16_t *pe0, *pe=GET_EXCEPTIONS(csp, props) local
700 const uint16_t *pe=GET_EXCEPTIONS(csp, props); local
1057 const uint16_t *pe=GET_EXCEPTIONS(csp, props), *pe2; local
1201 const uint16_t *pe=GET_EXCEPTIONS(csp, props), *pe2; local
1347 const uint16_t *pe=GET_EXCEPTIONS(csp, props); local
1411 const uint16_t *pe=GET_EXCEPTIONS(csp, props), *pe2; local
    [all...]
  /frameworks/base/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:__anon9135
45 Word16 pe; member in struct:__anon9136
  /external/kernel-headers/original/linux/
posix_acl.h 46 #define FOREACH_ACL_ENTRY(pa, acl, pe) \
47 for(pa=(acl)->a_entries, pe=pa+(acl)->a_count; pa<pe; pa++)
  /external/icu4c/common/
ucase.c 414 const uint16_t *pe=GET_EXCEPTIONS(csp, props); local
415 uint16_t excWord=*pe++;
417 GET_SLOT_VALUE(excWord, UCASE_EXC_LOWER, pe, c);
431 const uint16_t *pe=GET_EXCEPTIONS(csp, props); local
432 uint16_t excWord=*pe++;
434 GET_SLOT_VALUE(excWord, UCASE_EXC_UPPER, pe, c);
448 const uint16_t *pe=GET_EXCEPTIONS(csp, props); local
449 uint16_t excWord=*pe++;
458 GET_SLOT_VALUE(excWord, idx, pe, c);
517 const uint16_t *pe0, *pe=GET_EXCEPTIONS(csp, props) local
682 const uint16_t *pe=GET_EXCEPTIONS(csp, props); local
699 const uint16_t *pe=GET_EXCEPTIONS(csp, props); local
1062 const uint16_t *pe=GET_EXCEPTIONS(csp, props), *pe2; local
1206 const uint16_t *pe=GET_EXCEPTIONS(csp, props), *pe2; local
1352 const uint16_t *pe=GET_EXCEPTIONS(csp, props); local
1416 const uint16_t *pe=GET_EXCEPTIONS(csp, props), *pe2; local
    [all...]

Completed in 9342 milliseconds

1 2 3 4 5 6