Home
last modified time | relevance | path

Searched refs:cc1 (Results 1 – 25 of 65) sorted by relevance

123

/external/v8/src/
Duri.js78 function URIEncodePair(cc1 , cc2, result, index) { argument
79 var u = ((cc1 >> 6) & 0xF) + 1;
80 var w = (cc1 >> 2) & 0xF;
81 var x = cc1 & 3;
187 var cc1 = uri.charCodeAt(k);
188 if (unescape(cc1)) {
189 result[index++] = cc1;
191 if (cc1 >= 0xDC00 && cc1 <= 0xDFFF) throw new $URIError("URI malformed");
192 if (cc1 < 0xD800 || cc1 > 0xDBFF) {
193 index = URIEncodeSingle(cc1, result, index);
[all …]
/external/clang/docs/
DFAQ.rst11 I run ``clang -cc1 ...`` and get weird errors about missing headers
29 $ clang -cc1 hello.c
35 ``clang -cc1`` is the frontend, ``clang`` is the :doc:`driver
45 Users should not run ``clang -cc1`` directly, because ``-cc1`` options are not
48 If you want to use a frontend-only option ("a ``-cc1`` option"), for example
49 ``-ast-dump``, then you need to take the ``clang -cc1`` line generated by the
52 ``clang -cc1``.
DPTHInternals.rst13 The Clang compiler frontend, ``clang -cc1``, supports three command line
16 To generate PTH files using ``clang -cc1``, use the option ``-emit-pth``:
20 $ clang -cc1 test.h -emit-pth -o test.h.pth
28 $ clang -cc1 -include-pth test.h.pth test.c -o test.s
33 for *any* source files that are used by ``clang -cc1`` to process a
40 $ clang -cc1 -emit-pth test.h -o test.h.pth
43 $ clang -cc1 test.c -o test -token-cache test.h.pth
109 of ``clang -cc1`` can share the same pages in memory from a
152 ``stat`` that ``clang -cc1`` uses to resolve which files are included
DClangPlugins.rst123 Note that those options must reach clang's cc1 process. There are two
126 * Directly call the parsing process by using the :option:`-cc1` option; this
130 * Use clang as usual, but prefix all arguments to the cc1 process with
/external/chromium_org/v8/src/
Duri.js82 function URIEncodePair(cc1 , cc2, result, index) { argument
83 var u = ((cc1 >> 6) & 0xF) + 1;
84 var w = (cc1 >> 2) & 0xF;
85 var x = cc1 & 3;
188 var cc1 = uri.charCodeAt(k);
189 if (unescape(cc1)) {
190 array[index++] = cc1;
192 if (cc1 >= 0xDC00 && cc1 <= 0xDFFF) throw new $URIError("URI malformed");
193 if (cc1 < 0xD800 || cc1 > 0xDBFF) {
194 index = URIEncodeSingle(cc1, array, index);
[all …]
/external/clang/examples/PrintFunctionNames/
DREADME.txt9 $ clang -cc1 -load ../../Debug+Asserts/lib/libPrintFunctionNames.so -plugin print-fns some-input-fi…
10 $ clang -cc1 -load ../../Debug+Asserts/lib/libPrintFunctionNames.so -plugin print-fns -plugin-arg-p…
11 $ clang -cc1 -load ../../Debug+Asserts/lib/libPrintFunctionNames.so -plugin print-fns -plugin-arg-p…
14 $ clang -cc1 -load ../../Debug+Asserts/lib/libPrintFunctionNames.dylib -plugin print-fns some-input…
15 $ clang -cc1 -load ../../Debug+Asserts/lib/libPrintFunctionNames.dylib -plugin print-fns -plugin-ar…
16 $ clang -cc1 -load ../../Debug+Asserts/lib/libPrintFunctionNames.dylib -plugin print-fns -plugin-ar…
/external/clang/test/Driver/
Ddarwin-objc-defaults.m9 // CHECK-CHECK-I386_OSX10_5: "-cc1"
18 // CHECK-CHECK-I386_OSX10_6: "-cc1"
27 // CHECK-CHECK-I386_IPHONE3_0: "-cc1"
38 // CHECK-CHECK-X86_64_OSX10_5: "-cc1"
47 // CHECK-CHECK-X86_64_OSX10_6: "-cc1"
56 // CHECK-CHECK-X86_64_IPHONE3_0: "-cc1"
67 // CHECK-CHECK-ARMV7_OSX10_5: "-cc1"
76 // CHECK-CHECK-ARMV7_OSX10_6: "-cc1"
85 // CHECK-CHECK-ARMV7_IPHONE3_0: "-cc1"
Ddarwin-objc-options.m7 // CHECK-CHECK-X86_64_ABI1: "-cc1"
16 // CHECK-CHECK-I386_ABI2: "-cc1"
27 // CHECK-CHECK-I386_IOS: "-cc1"
Drewrite-objc.m3 // TEST0: clang{{.*}}" "-cc1"
Drewrite-legacy-objc.m3 // TEST0: clang{{.*}}" "-cc1"
/external/chromium_org/ppapi/tests/
Dtest_video_source.cc107 TestCompletionCallback cc1(instance_->pp_instance(), false); in TestGetFrame() local
108 cc1.WaitForResult(video_source.Open(stream_url_, cc1.GetCallback())); in TestGetFrame()
109 ASSERT_EQ(PP_OK, cc1.result()); in TestGetFrame()
Dtest_video_destination.cc111 TestCompletionCallback cc1(instance_->pp_instance(), false); in TestPutFrame() local
112 cc1.WaitForResult(video_destination.Open(stream_url_, cc1.GetCallback())); in TestPutFrame()
113 ASSERT_EQ(PP_OK, cc1.result()); in TestPutFrame()
Dtest_truetype_font.cc309 TestCompletionCallbackWithOutput< std::vector<char> > cc1( in TestGetTable() local
311 cc1.WaitForResult(font.GetTable(MAKE_TABLE_TAG('c', 'm', 'a', 'p'), in TestGetTable()
313 cc1.GetCallback())); in TestGetTable()
314 const std::vector<char> cmap_data = cc1.output(); in TestGetTable()
316 ASSERT_EQ(static_cast<int32_t>(cmap_data.size()), cc1.result()); in TestGetTable()
/external/v8/test/mjsunit/
Duri.js33 var cc1 = 0x007D; variable
34 var s1 = String.fromCharCode(cc1);
67 assertEquals(cc1, decodeURI(encodeURI(s1)).charCodeAt(0));
/external/clang/test/CodeGenObjC/
Dexternally-initialized-selectors.m1 // RUN: %clang_cc1 -cc1 -fobjc-runtime=macosx-fragile-10.5 -o - -emit-llvm %s | FileCheck %s
2 // RUN: %clang_cc1 -cc1 -o - -emit-llvm %s | FileCheck %s
/external/clang/test/CodeGenObjCXX/
Dexternally-initialized-selectors.mm1 // RUN: %clang_cc1 -cc1 -fobjc-runtime=macosx-fragile-10.5 -o - -emit-llvm %s | FileCheck %s
2 // RUN: %clang_cc1 -cc1 -o - -emit-llvm %s | FileCheck %s
/external/chromium_org/v8/test/mjsunit/
Duri.js33 var cc1 = 0x007D; variable
34 var s1 = String.fromCharCode(cc1);
67 assertEquals(cc1, decodeURI(encodeURI(s1)).charCodeAt(0));
/external/chromium_org/ppapi/tests/clang/
DREADME20 To run a plugin, use clang with the -cc1 -load and -plugin flags and an
25 clang -cc1 -load ppapi/tests/clang/libPrintNamesAndSizes.so \
47 clang -cc1 -load ppapi/tests/clang/libFindAffectedInterfaces.so \
51 clang -cc1 -load tests/clang/libFindAffectedInterfaces.so \
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
Dbrw_cc.c119 cc->cc1.stencil_ref = ctx->Stencil.Ref[0]; in upload_cc_unit()
120 cc->cc1.stencil_write_mask = ctx->Stencil.WriteMask[0]; in upload_cc_unit()
121 cc->cc1.stencil_test_mask = ctx->Stencil.ValueMask[0]; in upload_cc_unit()
133 cc->cc1.bf_stencil_ref = ctx->Stencil.Ref[back]; in upload_cc_unit()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_cc.c119 cc->cc1.stencil_ref = ctx->Stencil.Ref[0]; in upload_cc_unit()
120 cc->cc1.stencil_write_mask = ctx->Stencil.WriteMask[0]; in upload_cc_unit()
121 cc->cc1.stencil_test_mask = ctx->Stencil.ValueMask[0]; in upload_cc_unit()
133 cc->cc1.bf_stencil_ref = ctx->Stencil.Ref[back]; in upload_cc_unit()
/external/libvpx/libvpx/vp8/encoder/
Dssim.c67 const static int64_t cc1 = 26634; // (64^2*(.01*255)^2 variable
84 c1 = (cc1*count*count)>>12; in similarity()
122 c1 = cc1*16; in dssim()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_ssim.c45 static const int64_t cc1 = 26634; // (64^2*(.01*255)^2 variable
55 c1 = (cc1 * count * count) >> 12; in similarity()
/external/srec/srec/cfront/
Dsp_fft.c423 trigonomydata cc1, trigonomydata ss1, in comp_L_butterfly1() argument
475 complex_multiplier(cc1, -ss1, r2, -i2, data + k2, data + k2 + 1); in comp_L_butterfly1()
485 trigonomydata cc1, ss1, cc3, ss3; in do_fft1() local
524 cc1 = cos1[ii]; in do_fft1()
532 comp_L_butterfly1(j, n4, cc1, ss1, cc3, ss3, data + k0); in do_fft1()
/external/iproute2/lib/
Dutils.c727 ssize_t cc1; in getcmdline() local
729 if ((cc1 = getline(&line1, &len1, in)) < 0) { in getcmdline()
731 return cc1; in getcmdline()
748 cc += cc1 - 2; in getcmdline()
/external/clang/test/Rewriter/
Drewrite-byref-vars.mm56 // $CLANG -cc1 -fms-extensions -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 -x objective-c++ -f…

123