Searched refs:dynamic (Results 1 - 25 of 181) sorted by relevance

12345678

/external/skia/src/animator/
H A DSkAnimateProperties.h14 SK_PROPERTY(dynamic),
/external/skia/src/gpu/
H A DGrIndexBuffer.h27 GrIndexBuffer(GrGpu* gpu, size_t gpuMemorySize, bool dynamic, bool cpuBacked) argument
28 : INHERITED(gpu, gpuMemorySize, dynamic, cpuBacked) {}
H A DGrVertexBuffer.h18 GrVertexBuffer(GrGpu* gpu, size_t gpuMemorySize, bool dynamic, bool cpuBacked) argument
19 : INHERITED(gpu, gpuMemorySize, dynamic, cpuBacked) {}
H A DGrGeometryBuffer.h25 *Retrieves whether the buffer was created with the dynamic flag
27 * @return true if the buffer was created with the dynamic flag
29 bool dynamic() const { return fDynamic; } function in class:GrGeometryBuffer
102 GrGeometryBuffer(GrGpu* gpu, size_t gpuMemorySize, bool dynamic, bool cpuBacked) argument
106 , fDynamic(dynamic)
/external/lldb/test/lang/objc/objc-dynamic-value/
H A DMakefile3 OBJC_SOURCES := dynamic-value.m
/external/antlr/antlr-3.4/runtime/CSharp2/
H A Dantlr3.runtime.net.common.inc37 dynamic="true" />
41 dynamic="true" />
47 dynamic="true" />
52 dynamic="true" />
/external/valgrind/coregrind/
H A Dpub_core_ume.h7 This file is part of Valgrind, a dynamic binary instrumentation
63 Bool dynamic; // OUT: False iff executable is static member in struct:__anon16239
H A Dpub_core_initimg.h8 This file is part of Valgrind, a dynamic binary instrumentation
110 Bool dynamic; /* False iff executable is static */ member in struct:_IICreateImageInfo
/external/elfutils/src/tests/
H A Drun-nm-self.sh25 for what_arg in --debug-syms --defined-only --dynamic --extern-only; do
29 # --dynamic doesn't make sense for ET_REL.
30 if ! test "$what_arg" = "--dynamic" -a "$self_file" = "$ET_REL"; then
/external/icu/icu4c/source/config/
H A Dmh-darwin8 SHAREDLIBCFLAGS = -dynamic
9 SHAREDLIBCXXFLAGS = -dynamic
27 SHLIB.c= $(CC) -dynamiclib -dynamic $(CFLAGS) $(LDFLAGS) $(LD_SOOPTIONS)
28 SHLIB.cc= $(CXX) -dynamiclib -dynamic $(CXXFLAGS) $(LDFLAGS) $(LD_SOOPTIONS)
/external/lldb/source/API/
H A DSBExpressionOptions.cpp87 SBExpressionOptions::SetFetchDynamicValue (lldb::DynamicValueType dynamic) argument
89 m_opaque_ap->SetUseDynamic (dynamic);
/external/clang/test/SemaCXX/
H A Dwarn-bad-memaccess.cpp27 struct ContainsDynamic { X1 dynamic; } contains_dynamic; member in struct:ContainsDynamic
29 struct ContainsArrayDynamic { X1 dynamic[1]; } contains_array_dynamic; member in struct:ContainsArrayDynamic
30 struct ContainsPointerDynamic { X1 *dynamic; } contains_pointer_dynamic; member in struct:ContainsPointerDynamic
34 // expected-warning {{destination for this 'memset' call is a pointer to dynamic class}} \
37 // expected-warning {{destination for this 'memset' call is a pointer to dynamic class}} \
41 // expected-warning {{destination for this 'memset' call is a pointer to dynamic class}} \
45 // expected-warning{{destination for this 'memmove' call is a pointer to dynamic class 'X1'; vtable pointer will be overwritten}} \
48 // expected-warning{{source of this 'memmove' call is a pointer to dynamic class 'X1'; vtable pointer will be moved}} \
51 // expected-warning{{destination for this 'memcpy' call is a pointer to dynamic class 'X1'; vtable pointer will be overwritten}} \
54 // expected-warning{{source of this 'memcpy' call is a pointer to dynamic clas
[all...]
/external/iproute2/genl/
H A DMakefile16 LDFLAGS += -Wl,-export-dynamic
/external/libpng/
H A Dlibpng-config.in42 --L_opts print linker "-L" flags for dynamic linking
43 --R_opts print dynamic linker "-R" or "-rpath" flags
/external/lldb/include/lldb/API/
H A DSBExpressionOptions.h54 SetFetchDynamicValue (lldb::DynamicValueType dynamic = lldb::eDynamicCanRunTarget);
/external/llvm/test/Object/Inputs/
H A Delfver.S6 # Also, strip off non-dynamic symbols:
/external/mdnsresponder/mDNSShared/
H A Ddnsextd.conf10 // dynamic zone that will be accepting Wide-Area Bonjour DNS updates.
22 // policy for your dynamic zone. For example, within a small closed private
26 // zone "my-dynamic-subdomain.company.com."
32 // perform updates in your dynamic zone, like this:
35 // zone "my-dynamic-subdomain.company.com." in
38 // file "db.my-dynamic-subdomain.company.com";
39 // update-policy { grant * wildcard *.my-dynamic-subdomain.company.com.; };
58 zone "my-dynamic-subdomain.company.com." {
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_state_dynamic.c53 if (i915->current.dynamic[offset] == state)
56 i915->current.dynamic[offset] = state;
70 if (!memcmp(src, &i915->current.dynamic[offset], dwords * 4))
74 i915->current.dynamic[offset + i] = src[i];
303 /* These will be dynamic indirect state commands, but for now just end
316 "dynamic",
/external/clang/test/Index/
H A Dcomplete-properties.m21 @dynamic Prop4;
/external/lldb/scripts/Python/interface/
H A DSBExpressionOptions.i55 %feature("docstring", "Sets whether to cast the expression result to its dynamic type.") SetFetchDynamicValue;
58 SetFetchDynamicValue (lldb::DynamicValueType dynamic = lldb::eDynamicCanRunTarget);
/external/clang/test/OpenMP/
H A Dfor_schedule_messages.cpp16 #pragma omp for schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
18 #pragma omp for schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}}
22 #pragma omp for schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
34 #pragma omp for schedule (dynamic, 1)) // expected-warning {{extra tokens at the end of '#pragma omp for' are ignored}}
40 #pragma omp for schedule (static, foobool(argc)), schedule (dynamic, true), schedule (guided, -5)
47 #pragma omp for schedule (dynamic, 1)
57 #pragma omp for schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
59 #pragma omp for schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}}
63 #pragma omp for schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
73 #pragma omp for schedule (dynamic, fooboo
[all...]
H A Dfor_simd_schedule_messages.cpp16 #pragma omp for simd schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
18 #pragma omp for simd schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}}
22 #pragma omp for simd schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
34 #pragma omp for simd schedule (dynamic, 1)) // expected-warning {{extra tokens at the end of '#pragma omp for simd' are ignored}}
40 #pragma omp for simd schedule (static, foobool(argc)), schedule (dynamic, true), schedule (guided, -5)
47 #pragma omp for simd schedule (dynamic, 1)
57 #pragma omp for simd schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
59 #pragma omp for simd schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}}
63 #pragma omp for simd schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
73 #pragma omp for simd schedule (dynamic, fooboo
[all...]
H A Dparallel_for_schedule_messages.cpp16 #pragma omp parallel for schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
18 #pragma omp parallel for schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}}
22 #pragma omp parallel for schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
34 #pragma omp parallel for schedule (dynamic, 1)) // expected-warning {{extra tokens at the end of '#pragma omp parallel for' are ignored}}
40 #pragma omp parallel for schedule (static, foobool(argc)), schedule (dynamic, true), schedule (guided, -5)
47 #pragma omp parallel for schedule (dynamic, 1)
57 #pragma omp parallel for schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
59 #pragma omp parallel for schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}}
63 #pragma omp parallel for schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
73 #pragma omp parallel for schedule (dynamic, fooboo
[all...]
H A Dparallel_for_simd_schedule_messages.cpp16 #pragma omp parallel for simd schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
18 #pragma omp parallel for simd schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}}
22 #pragma omp parallel for simd schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
34 #pragma omp parallel for simd schedule (dynamic, 1)) // expected-warning {{extra tokens at the end of '#pragma omp parallel for simd' are ignored}}
40 #pragma omp parallel for simd schedule (static, foobool(argc)), schedule (dynamic, true), schedule (guided, -5)
47 #pragma omp parallel for simd schedule (dynamic, 1)
57 #pragma omp parallel for simd schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
59 #pragma omp parallel for simd schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}}
63 #pragma omp parallel for simd schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
73 #pragma omp parallel for simd schedule (dynamic, fooboo
[all...]
/external/javassist/src/main/javassist/scopedpool/
H A DScopedClassPool.java218 * @param dynamic
221 protected void cacheCtClass(String classname, CtClass c, boolean dynamic) { argument
222 if (dynamic) {
223 super.cacheCtClass(classname, c, dynamic);

Completed in 4821 milliseconds

12345678