Searched refs:cps (Results 1 - 25 of 28) sorted by relevance

12

/external/llvm/test/MC/ARM/
H A Dcps.s9 cps #0
13 @ CHECK: cps #0 @ encoding: [0xaf,0xf3,0x00,0x81]
17 @ UNDEF-DAG: error: instruction 'cps' requires effect for M-class
H A Ddiagnostics.s409 cps f,#1
411 @ CHECK-ERRORS: cps f,#1
H A Dbasic-thumb2-instructions.s514 cps #0
515 cps.w #0
525 @ CHECK: cps #0 @ encoding: [0xaf,0xf3,0x00,0x81]
526 @ CHECK: cps #0 @ encoding: [0xaf,0xf3,0x00,0x81]
H A Dbasic-arm-instructions.s794 cps #15
798 @ CHECK: cps #15 @ encoding: [0x0f,0x00,0x02,0xf1]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DPolicyQualifierInfo.java21 * PolicyQualifierId ::= OBJECT IDENTIFIER ( id-qt-cps | id-qt-unotice )
48 * @param cps the CPS (certification practice statement) uri as a
52 String cps)
55 qualifier = new DERIA5String (cps);
51 PolicyQualifierInfo( String cps) argument
/external/owasp/sanitizer/src/tests/org/owasp/html/
H A DEncodingTest.java203 StringBuilder cps = new StringBuilder();
210 cps.appendCodePoint(codepoint).append(' ');
219 Encoding.encodeHtmlOnto(cps.toString(), out);
/external/libnfc-nci/src/nfa/include/
H A Dnfa_cho_api.h75 tNFA_CHO_CPS cps; /* carrier power state */ member in struct:__anon10054
127 tNFA_CHO_CPS cps; /* carrier power state */ member in struct:__anon10058
/external/selinux/libsepol/cil/src/
H A Dcil_resolve_ast.h40 int cil_resolve_classpermissionset(struct cil_tree_node *current, struct cil_classpermissionset *cps, void *extra_args);
H A Dcil_reset_ast.c80 static void cil_reset_classpermissionset(struct cil_classpermissionset *cps) argument
82 cil_reset_classperms_list(cps->classperms);
H A Dcil.c2346 void cil_classpermissionset_init(struct cil_classpermissionset **cps) argument
2348 *cps = cil_malloc(sizeof(**cps));
2350 (*cps)->set_str = NULL;
2351 (*cps)->classperms = NULL;
H A Dcil_tree.c867 struct cil_classpermissionset *cps = node->data; local
869 cil_log(CIL_INFO, "CLASSPERMISSIONSET: %s", cps->set_str);
871 cil_tree_print_classperms_list(cps->classperms);
H A Dcil_build_ast.h68 void cil_destroy_classpermissionset(struct cil_classpermissionset *cps);
H A Dcil_internal.h997 void cil_classpermissionset_init(struct cil_classpermissionset **cps);
H A Dcil_build_ast.c770 struct cil_classpermissionset *cps = NULL; local
788 cil_classpermissionset_init(&cps);
790 cps->set_str = parse_current->next->data;
792 rc = cil_fill_classperms_list(parse_current->next->next, &cps->classperms);
797 ast_node->data = cps;
805 cil_destroy_classpermissionset(cps);
809 void cil_destroy_classpermissionset(struct cil_classpermissionset *cps) argument
811 if (cps == NULL) {
815 cil_destroy_classperms_list(&cps->classperms);
817 free(cps);
[all...]
H A Dcil_resolve_ast.c230 int cil_resolve_classpermissionset(struct cil_tree_node *current, struct cil_classpermissionset *cps, void *extra_args) argument
238 rc = cil_resolve_name(current, cps->set_str, CIL_SYM_CLASSPERMSETS, args, &datum);
243 rc = cil_resolve_classperms_list(current, cps->classperms, extra_args);
254 cil_list_for_each(curr, cps->classperms) {
/external/libnfc-nci/src/nfc/ndef/
H A Dndef_cho_utils.c165 UINT8 cps, char *p_carrier_data_ref_str,
197 UINT8_TO_BE_STREAM (p, cps);
164 NDEF_MsgAddWktAc(UINT8 *p_msg, UINT32 max_size, UINT32 *p_cur_size, UINT8 cps, char *p_carrier_data_ref_str, UINT8 aux_data_ref_count, char *p_aux_data_ref_str[]) argument
/external/kernel-headers/original/uapi/linux/
H A Dip_vs.h170 __u32 cps; /* current connection rate */ member in struct:ip_vs_stats_user
/external/libnfc-nci/src/nfc/include/
H A Dndef_utils.h434 UINT8 cps, char *p_carrier_data_ref_str,
/external/chromium-trace/catapult/third_party/coverage/coverage/
H A Dcontrol.py1170 cps = os.environ.get("COVERAGE_PROCESS_START")
1171 if not cps:
1191 cov = Coverage(config_file=cps, auto_data=True)
/external/selinux/libsepol/cil/test/unit/
H A Dtest_cil_build_ast.c1260 struct cil_classpermset *cps; local
1261 cil_classpermset_init(&cps);
1263 int rc = cil_fill_classpermset(test_tree->root->cl_head->cl_head->next->next->cl_head, cps);
1276 struct cil_classpermset *cps; local
1277 cil_classpermset_init(&cps);
1279 int rc = cil_fill_classpermset(test_tree->root->cl_head->cl_head->next->next->cl_head, cps);
1292 struct cil_classpermset *cps; local
1293 cil_classpermset_init(&cps);
1295 int rc = cil_fill_classpermset(test_tree->root->cl_head->cl_head->next->next->cl_head, cps);
1308 struct cil_classpermset *cps; local
1324 struct cil_classpermset *cps; local
1340 struct cil_classpermset *cps; local
1356 struct cil_classpermset *cps; local
1372 struct cil_classpermset *cps; local
1388 struct cil_classpermset *cps = NULL; local
[all...]
H A Dtest_cil_resolve_ast.c3128 struct cil_classpermset *cps = test_db->ast->root->cl_head->next->next->data; local
3130 int rc = cil_resolve_classpermset(test_db->ast->root->cl_head->next->next->next, cps, args);
3152 struct cil_classpermset *cps = test_db->ast->root->cl_head->next->next->data; local
3154 int rc = cil_resolve_classpermset(test_db->ast->root->cl_head->next->next->next, cps, args);
3175 struct cil_classpermset *cps = test_db->ast->root->cl_head->next->next->data; local
3177 int rc = cil_resolve_classpermset(test_db->ast->root->cl_head->next->next->next, cps, args);
3198 struct cil_classpermset *cps; local
3199 cil_classpermset_init(&cps);
3201 int rc = cil_resolve_classpermset(test_db->ast->root->cl_head->next->next->next, cps, args);
3221 struct cil_classpermset *cps local
3244 struct cil_classpermset *cps = ((struct cil_classmapping*)test_db->ast->root->cl_head->next->data)->classpermsets_str->head->data; local
3266 struct cil_classpermset *cps = ((struct cil_classmapping*)test_db->ast->root->cl_head->next->data)->classpermsets_str->head->data; local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 499 milliseconds

12