HomeSort by relevance Sort by last modified time
    Searched defs:cc (Results 551 - 575 of 1211) sorted by null

<<21222324252627282930>>

  /external/chromium_org/cc/test/
test_context_provider.h 13 #include "cc/output/context_provider.h"
14 #include "cc/test/test_context_support.h"
17 namespace cc { namespace
84 } // namespace cc
test_context_support.h 13 namespace cc { namespace
79 } // namespace cc
  /external/chromium_org/cc/trees/
blocking_task_runner.cc 5 #include "cc/trees/blocking_task_runner.h"
13 namespace cc { namespace
106 } // namespace cc
proxy_timing_history.cc 5 #include "cc/trees/proxy_timing_history.h"
12 namespace cc { namespace
66 } // namespace cc
  /external/chromium_org/chrome/browser/media/
desktop_media_list_ash.h 21 namespace cc { namespace
  /external/chromium_org/content/browser/android/in_process/
synchronous_compositor_output_surface.h 12 #include "cc/output/compositor_frame.h"
13 #include "cc/output/managed_memory_policy.h"
14 #include "cc/output/output_surface.h"
18 namespace cc { namespace
52 : NON_EXPORTED_BASE(public cc::OutputSurface) {
58 virtual bool BindToClient(cc::OutputSurfaceClient* surface_client) OVERRIDE;
61 virtual void SwapBuffers(cc::CompositorFrame* frame) OVERRIDE;
65 scoped_refptr<cc::ContextProvider> onscreen_context_provider);
67 scoped_ptr<cc::CompositorFrame> DemandDrawHw(
74 void ReturnResources(const cc::CompositorFrameAck& frame_ack)
    [all...]
  /external/chromium_org/content/renderer/pepper/
pepper_graphics_2d_host.h 22 namespace cc { namespace
73 cc::TextureMailbox* mailbox,
74 scoped_ptr<cc::SingleReleaseCallback>* release_callback);
  /external/chromium_org/native_client_sdk/src/examples/api/url_loader/
url_loader_handler.cc 47 pp::CompletionCallback cc = local
49 url_loader_.Open(url_request_, cc);
120 pp::CompletionCallback cc = local
124 result = url_loader_.ReadResponseBody(buffer_, READ_BUFFER_SIZE, cc);
140 cc.Run(result);
  /external/chromium_org/ppapi/native_client/src/trusted/weak_ref/
call_on_main_thread.h 73 pp::CompletionCallback cc = local
74 WeakRefNewCallback(anchor, callback_fn, raw_data, &cc);
78 cc,
147 pp::CompletionCallback cc = local
148 WeakRefNewCallback(anchor, raw_callback_fn, raw_data, &cc);
151 cc,
238 pp::CompletionCallback cc = local
241 "WeakRefCallOnMainThread: got cc\n");
244 cc,
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_cc.c 47 sizeof(*ccv), 32, &brw->cc.vp_offset);
94 * Creates the state cache entry for the given CC unit key.
100 struct brw_cc_unit_state *cc; local
102 cc = brw_state_batch(brw, AUB_TRACE_CC_STATE,
103 sizeof(*cc), 64, &brw->cc.state_offset);
104 memset(cc, 0, sizeof(*cc));
110 cc->cc0.stencil_enable = 1;
111 cc->cc0.stencil_func
    [all...]
  /external/clang/test/CXX/special/class.inhctor/
elsewhere.cpp 46 C<char> cc; // expected-note {{here}} variable
  /external/javassist/src/main/javassist/
CtConstructor.java 247 CtClass cc = declaringClass; local
248 cc.checkModify();
257 Javac jv = new Javac(b, cc);
266 methodInfo.rebuildStackMapIf6(cc.getClassPool(), cc.getClassFile2());
CtNewConstructor.java 100 CtConstructor cc = new CtConstructor(parameters, declaring); local
101 cc.setExceptionTypes(exceptions);
102 cc.setBody(body);
103 return cc;
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_cc.c 47 sizeof(*ccv), 32, &brw->cc.vp_offset);
94 * Creates the state cache entry for the given CC unit key.
100 struct brw_cc_unit_state *cc; local
102 cc = brw_state_batch(brw, AUB_TRACE_CC_STATE,
103 sizeof(*cc), 64, &brw->cc.state_offset);
104 memset(cc, 0, sizeof(*cc));
110 cc->cc0.stencil_enable = 1;
111 cc->cc0.stencil_func
    [all...]
  /external/valgrind/main/none/tests/s390x/
cu24.c 18 uint32_t cc; member in struct:__anon36927
57 int cc = 42; local
70 : "+d"(dest), "+d"(source), "=d"(cc),
73 : "memory", "cc");
80 regs.cc = cc;
110 printf(" cc = %d\n", result.cc);
166 /* When both operands are exhausted, cc=0 takes precedence.
cu24_1.c 18 uint32_t cc; member in struct:__anon36928
57 int cc = 42; local
70 : "+d"(dest), "+d"(source), "=d"(cc),
73 : "memory", "cc");
80 regs.cc = cc;
110 printf(" cc = %d\n", result.cc);
166 /* When both operands are exhausted, cc=0 takes precedence.
cu42.c 15 uint32_t cc; member in struct:__anon36930
60 int cc = 42; local
73 : "+d"(dest), "+d"(source), "=d"(cc),
76 : "memory", "cc");
83 regs.cc = cc;
107 printf(" cc = %d\n", result.cc);
167 /* When both operands are exhausted, cc=0 takes precedence.
182 run_test(buff, 0, invalid, sizeof invalid); // cc =
    [all...]
  /frameworks/compile/mclinker/unittests/
SymbolCategoryTest.cpp 62 LDSymbol* cc = LDSymbol::Create(*c); local
68 m_pTestee->add(*cc);
105 LDSymbol* cc = LDSymbol::Create(*c); local
111 c->setSymPtr(cc);
117 m_pTestee->add(*cc);
  /system/core/libutils/
FileMap.cpp 202 int cc, sysAdvice; local
215 cc = madvise(mBasePtr, mBaseLength, sysAdvice);
216 if (cc != 0)
218 return cc;
  /bionic/libc/upstream-openbsd/lib/libc/gen/
fnmatch.c 102 struct cclass *cc; local
124 for (cc = cclasses; cc->name != NULL; cc++) {
125 if (!strncmp(pattern, cc->name, len) && cc->name[len] == '\0') {
126 if (cc->isctype((unsigned char)test))
131 if (cc->name == NULL) {
  /build/tools/acp/
acp.c 44 int i, cc; local
  /external/chromium_org/android_webview/browser/
hardware_renderer.h 11 #include "cc/layers/delegated_frame_resource_collection.h"
12 #include "cc/trees/layer_tree_host_client.h"
13 #include "cc/trees/layer_tree_host_single_thread_client.h"
17 namespace cc { namespace
29 class HardwareRenderer : public cc::LayerTreeHostClient,
30 public cc::LayerTreeHostSingleThreadClient,
31 public cc::DelegatedFrameResourceCollectionClient {
41 // cc::LayerTreeHostClient overrides.
48 virtual scoped_ptr<cc::OutputSurface> CreateOutputSurface(
56 // cc::LayerTreeHostSingleThreadClient overrides
    [all...]
shared_renderer_state.h 13 #include "cc/output/compositor_frame.h"
14 #include "cc/output/compositor_frame_ack.h"
18 namespace cc { namespace
40 cc::CompositorFrame frame;
75 void InsertReturnedResources(const cc::ReturnedResourceArray& resources);
76 void SwapReturnedResources(cc::ReturnedResourceArray* resources);
101 cc::ReturnedResourceArray returned_resources_;
  /external/chromium_org/cc/animation/
animation.cc 5 #include "cc/animation/animation.h"
11 #include "cc/animation/animation_curve.h"
26 COMPILE_ASSERT(static_cast<int>(cc::Animation::RunStateEnumSize) ==
39 COMPILE_ASSERT(static_cast<int>(cc::Animation::TargetPropertyEnumSize) ==
45 namespace cc { namespace
100 "cc", "Animation", this, "Name", TRACE_STR_COPY(name_buffer));
116 TRACE_EVENT_ASYNC_END0("cc", "Animation", this);
125 TRACE_EVENT_INSTANT2("cc",
248 } // namespace cc
animation_curve.h 9 #include "cc/base/cc_export.h"
10 #include "cc/output/filter_operations.h"
17 namespace cc { namespace
103 } // namespace cc

Completed in 979 milliseconds

<<21222324252627282930>>