Home
last modified time | relevance | path

Searched refs:qq (Results 1 – 25 of 70) sorted by relevance

123

/external/chromium_org/third_party/JSON/JSON-2.59/t/
Dxe05_indent_length.t15 is($json->indent_length(2)->encode([1,{foo => 'bar'}, "1", "/"]), qq|[1,{"foo":"bar"},"1","/"]|);
17 is($json->indent->encode([1,{foo => 'bar'}, "1", "/"]), qq|[
28 is($json->escape_slash(1)->pretty->indent_length(2)->encode([1,{foo => 'bar'}, "1", "/"]), qq|[
39 is($json->escape_slash(1)->pretty->indent_length(3)->encode([1,{foo => 'bar'}, "1", "/"]), qq|[
49 is($json->escape_slash(1)->pretty->indent_length(15)->encode([1,{foo => 'bar'}, "1", "/"]), qq|[
60 is($json->indent_length(0)->encode([1,{foo => 'bar'}, "1", "/"]), qq|[
71 ->encode([1,{foo => 'bar'}, "1", "/"]), qq|[1,{"foo":"bar"},"1","/"]|);
De14_decode_prefix.t13 my $complete_text = qq/{"foo":"bar"}/;
14 my $garbaged_text = qq/{"foo":"bar"}\n/;
15 my $garbaged_text2 = qq/{"foo":"bar"}\n\n/;
16 my $garbaged_text3 = qq/{"foo":"bar"}\n----/;
D06_pc_pretty.t61 is($pc->encode($obj), qq|{\n "foo":"bar"\n}\n|, "nospace");
63 is($pc->encode($obj), qq|{\n "foo": "bar"\n}\n|, "after");
65 is($pc->encode($obj), qq|{\n "foo" : "bar"\n}\n|, "both");
67 is($pc->encode($obj), qq|{\n "foo" :"bar"\n}\n|, "before");
D07_pc_esc.t29 $obj = {test => qq|abc"def|};
33 $obj = {qq|te"st| => qq|abc"def|};
37 $obj = {test => qq|abc/def|}; # / => \/
D22_comment_at_eof.t47 is( decoder( qq/#\n[#foo\n"#\\n"#\n]/), '["#\n"]', 'array and string in multiple lines' );
/external/dropbear/libtommath/
Dbn_mp_cnt_lsb.c26 mp_digit q, qq; in mp_cnt_lsb() local
41 qq = q & 15; in mp_cnt_lsb()
42 x += lnz[qq]; in mp_cnt_lsb()
44 } while (qq == 0); in mp_cnt_lsb()
/external/chromium_org/native_client_sdk/src/tools/tests/
Dquote_test.py52 qq = VerboseUnquote(q, specials, escape)
53 self.assertEqual(''.join(qq), in_string)
127 qq = quote.unquote(word, options.special_chars, options.quote)
129 % (word, ''.join(qq)))
135 qq = quote.unquote(q, options.special_chars, options.quote)
137 % (word, q, q, ''.join(qq)))
138 if word != ''.join(qq):
/external/valgrind/main/VEX/orig_amd64/
DSortedToOrig.hs8 x4 = concat (map qq x3)
13 qq :: (Int, String) -> String
14 qq (n, s0) function
/external/qemu/android/
Dhw-control.c106 char* qq = strchr((const char*)q, ':'); in hw_control_do_query() local
108 if (qq == NULL) { in hw_control_do_query()
112 *qq++ = 0; in hw_control_do_query()
113 value = atoi(qq); in hw_control_do_query()
/external/chromium_org/third_party/JSON/JSON-2.59/
DMakefile612 -e "print(qq{Executing $(CI) @all\n}); system(qq{$(CI) @all});" \
613 -e "print(qq{Executing $(RCS_LABEL) ...\n}); system(qq{$(RCS_LABEL) @all});"
/external/clang/test/Analysis/
Dstack-block-returned.cpp7 const bptr &qq = ^{ i=0; }; // expected-note {{binding reference variable 'qq' here}} in bf()
8 return qq; // expected-error {{returning block that lives on the local stack}} in bf()
/external/valgrind/main/VEX/useful/
Dfspill.c4 double qq ( void ) in qq() function
16 double r = qq(); in main()
Dhd_fpu.c496 void fp_calc_fprem ( Int* qq, double* result, double st_0, double st_1 ) in fp_calc_fprem() argument
500 *qq = - (Int)floor(-tmp); in fp_calc_fprem()
502 *qq = (Int)floor(tmp); in fp_calc_fprem()
503 *result = st_0 - (st_1 * (double)(*qq)); in fp_calc_fprem()
1018 Int qq; in do_one_insn_fp() local
1022 fp_calc_fprem( &qq, &vd_dst, in do_one_insn_fp()
1024 fp_set_statusword_flag_to(FP_F_C0, (qq & 4) ? 1 : 0); in do_one_insn_fp()
1025 fp_set_statusword_flag_to(FP_F_C1, (qq & 1) ? 1 : 0); in do_one_insn_fp()
1027 fp_set_statusword_flag_to(FP_F_C3, (qq & 2) ? 1 : 0); in do_one_insn_fp()
/external/llvm/test/Transforms/Inline/
Dinline-invoke-tail.ll6 %qq = bitcast i32* %q to i8*
7 tail call void @llvm.memcpy.p0i8.p0i8.i32(i8* %pp, i8* %qq, i32 4, i32 1, i1 false)
/external/clang/test/PCH/
Dheadersearch.cpp34 void qq(orig_sub*) {all();} in qq() function
Dmissing-file.cpp17 void qq(S*) {} in qq() function
/external/clang/test/Sema/
Dconst-eval-64.c4 #define EVAL_EXPR(testno, expr) int test##testno = sizeof(struct{char qq[expr];});
Dvla.c17 int x = sizeof(struct{char qq[x];}); // expected-error {{fields must have a constant size}}
Dconst-eval.c3 #define EVAL_EXPR(testno, expr) int test##testno = sizeof(struct{char qq[expr];});
/external/bluetooth/bluedroid/stack/include/
Dhcimsgs.h45 UINT8 *qq = ((UINT8 *)((p) + 1) + p->offset + 3 + (off)); UINT8 *rr = (UINT8 *)x; \
46 int ii; for (ii = 0; ii < len; ii++) *rr++ = *qq++; \
51 UINT8 *qq = ((UINT8 *)((p) + 1) + p->offset + 3 + (off)); UINT8 *rr = (UINT8 *)x + 15; \
52 int ii; for (ii = 0; ii < 16; ii++) *rr-- = *qq++; \
57 …UINT8 *qq = ((UINT8 *)((p) + 1) + p->offset + 3 + (off)); UINT8 *rr = (UINT8 *)x + BD_ADDR_LEN - 1…
58 int ii; for (ii = 0; ii < BD_ADDR_LEN; ii++) *rr-- = *qq++; \
63 …UINT8 *qq = ((UINT8 *)((p) + 1) + p->offset + 3 + (off)); UINT8 *rr = (UINT8 *)x + DEV_CLASS_LEN -…
64 int ii; for (ii = 0; ii < DEV_CLASS_LEN; ii++) *rr-- = *qq++; \
69 … UINT8 *qq = ((UINT8 *)((p) + 1) + p->offset + 3 + (off)); UINT8 *rr = (UINT8 *)x + LAP_LEN - 1; \
70 int ii; for (ii = 0; ii < LAP_LEN; ii++) *rr-- = *qq++; \
/external/bluetooth/bluedroid/stack/l2cap/
Dl2c_link.c677 UINT16 qq, yy, qq_remainder; in l2c_link_adjust_allocation() local
720 qq = qq_remainder = 0; in l2c_link_adjust_allocation()
727 qq = low_quota / num_lowpri_links; in l2c_link_adjust_allocation()
735 qq = qq_remainder = 0; in l2c_link_adjust_allocation()
740 l2cb.round_robin_quota, qq); in l2c_link_adjust_allocation()
756 if (( p_lcb->link_xmit_quota > 0 )&&( qq == 0 )) in l2c_link_adjust_allocation()
759 p_lcb->link_xmit_quota = qq; in l2c_link_adjust_allocation()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/tests/testScripts/
Druntests.bat38 unzip -qq -o eclipse-SDK*.zip
39 unzip -qq -o -C VE-junit-tests*.zip */plugins/org.eclipse.test*
/external/chromium_org/v8/test/webkit/
Drehash-assign.js71 qq = 16;
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/crypto/
DSHA1withDSA_SignatureTest.java172 final BigInteger qq = q; in getDSAPrivateKey() local
184 BigInteger q = qq; in getDSAPrivateKey()
206 final BigInteger qq = q;
218 BigInteger q = qq;
/external/clang/test/CodeGenCXX/
Dpointers-to-data-members.cpp247 int qq; member

123