/external/chromium_org/third_party/skia/src/opts/ |
SkBitmapProcState_opts_none.cpp | 22 // empty implementation just uses default supplied function pointers 25 // empty implementation just uses default supplied function pointers
|
/external/chromium_org/tools/gyp/test/hello/ |
gyptest-default.py | 9 using the default build target. 22 test.up_to_date('hello.gyp', test.DEFAULT)
|
/external/chromium_org/tools/gyp/test/win/ |
gyptest-cl-default-char-is-unsigned.py | 19 test.run_gyp('default-char-is-unsigned.gyp', chdir=CHDIR) 20 test.build('default-char-is-unsigned.gyp', test.ALL, chdir=CHDIR)
|
/external/chromium_org/ui/ozone/ |
generate_ozone_platform_list.py | 12 Example Output: ./generate_ozone_platform_list.py --default wayland dri wayland 78 parser.add_option('--default') 86 # Reorder the platforms when --default is specified. 87 # The default platform must appear first in the platform list. 88 if options.default and options.default in platforms: 89 platforms.remove(options.default) 90 platforms.insert(0, options.default)
|
/external/chromium_org/webkit/browser/ |
webkit_storage_browser_export.h | 21 #define WEBKIT_STORAGE_BROWSER_EXPORT __attribute__((visibility("default"))) 22 #define WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE __attribute__((visibility("default")))
|
/external/clang/test/CXX/temp/temp.param/ |
p1.cpp | 9 class T = A, // expected-note{{previous default template argument defined here}} 10 class C> // expected-error{{template parameter missing a default argument}}
|
p9-0x.cpp | 3 // A default template-argument may be specified for any kind of 5 template<typename ...Types = int> // expected-error{{template parameter pack cannot have a default argument}} 8 template<int ...Values = 0> // expected-error{{template parameter pack cannot have a default argument}} 13 template<template<class> class ...Templates = vector> // expected-error{{template parameter pack cannot have a default argument}} 17 template<typename T = int> // expected-error{{default template argument not permitted on a friend template}} 32 template<typename T> template<typename U = int> struct A1<T>::B { }; // expected-error{{cannot add a default template argument to the definition of a member of a class template}} 41 template<typename T = int> void X2<T>::f0() { } // expected-error{{cannot add a default template argument to the definition of a member of a class template}} 42 template<typename T> template<typename U = int> void X2<T>::f1() { } // expected-error{{cannot add a default template argument to the definition of a member of a class template}}
|
/external/clang/test/CodeGen/ |
pragma-visibility.c | 13 extern __attribute((visibility("default"))) int z; 22 __attribute((visibility("default"))) void g();
|
/external/clang/test/CodeGenCXX/ |
cxx0x-defaulted-templates.cpp | 10 template <> X<bool>::X() = default; 14 template <typename T> X<T>::X() = default;
|
/external/clang/test/Driver/ |
objc_default_synth.m | 1 // We should be synthesizing properties by default on all platforms now. 6 // CHECK: -fobjc-default-synthesize
|
visibility.cpp | 1 // RUN: %clang -### -S -fvisibility=hidden -fvisibility=default %s 2> %t.log 4 // CHECK-1: "-fvisibility" "default" 7 // RUN: %clang -### -S -fvisibility=default -fvisibility=hidden %s 2> %t.log 19 // RUN: %clang -### -S -fvisibility-ms-compat -fvisibility=default %s 2> %t.log 22 // CHECK-4: "-fvisibility" "default" 28 // CHECK-5: "-ftype-visibility" "default" 30 // RUN: %clang -### -S -fvisibility=default -fvisibility-ms-compat %s 2> %t.log 33 // CHECK-6: "-ftype-visibility" "default"
|
/external/clang/test/Parser/ |
cxx-ext-delete-default.cpp | 6 A() = default; // expected-warning {{C++11 extension}} 11 A::~A() = default; //expected-warning {{C++11 extension}}
|
opencl-pragma.cl | 14 #pragma OPENCL FP_CONTRACT DEFAULT 15 #pragma OPENCL FP_CONTRACT FOO // expected-warning {{expected 'ON' or 'OFF' or 'DEFAULT' in pragma}}
|
switch-recovery.cpp | 8 default: 16 default // expected-error{{expected ':' after 'default'}} 30 default; // expected-error {{expected ':' after 'default'}} 39 default: return 5; 56 default: return -1; 73 default: return 1; 83 default: 93 default: return 1 [all...] |
/external/clang/test/SemaObjC/ |
warn-implicit-atomic-property.m | 1 // RUN: %clang_cc1 -fsyntax-only -Wimplicit-atomic-properties -fobjc-default-synthesize-properties -verify -Wno-objc-root-class %s 12 @synthesize P,P1,P2; // expected-warning {{property is assumed atomic by default}}
|
/external/jsr305/ri/src/main/java/javax/annotation/meta/ |
TypeQualifierDefault.java | 11 * defines a default type qualifier that is visible within the scope of the 19 ElementType[] value() default {};
|
/external/kernel-headers/original/linux/can/ |
raw.h | 25 CAN_RAW_LOOPBACK, /* local loopback (default:on) */ 26 CAN_RAW_RECV_OWN_MSGS /* receive my own msgs (default:off) */
|
/external/llvm/test/CodeGen/XCore/ |
switch.ll | 5 switch i32 %i, label %default [ 22 default:
|
/external/skia/src/gpu/ |
GrBlend.h | 22 default: 34 default:
|
/external/skia/src/opts/ |
SkBitmapProcState_opts_none.cpp | 22 // empty implementation just uses default supplied function pointers 25 // empty implementation just uses default supplied function pointers
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/ |
unittest.proto | 39 // See: http://go/proto2-generic-services-default 147 optional int32 default_int32 = 61 [default = 41 ]; 148 optional int64 default_int64 = 62 [default = 42 ]; 149 optional uint32 default_uint32 = 63 [default = 43 ]; 150 optional uint64 default_uint64 = 64 [default = 44 ]; 151 optional sint32 default_sint32 = 65 [default = -45 ]; 152 optional sint64 default_sint64 = 66 [default = 46 ]; 153 optional fixed32 default_fixed32 = 67 [default = 47 ]; 154 optional fixed64 default_fixed64 = 68 [default = 48 ]; 155 optional sfixed32 default_sfixed32 = 69 [default = 49 ] [all...] |
/external/chromium/chrome/browser/sync/syncable/ |
directory_backing_store_unittest.cc | 82 "base_version bigint default -1,server_version bigint default 0," 83 "mtime bigint default 0,server_mtime bigint default 0," 84 "ctime bigint default 0,server_ctime bigint default 0," 85 "server_position_in_parent bigint default 0," 86 "local_external_id bigint default 0,id varchar(255) default 'r'," 87 "parent_id varchar(255) default 'r', [all...] |
/external/chromium_org/net/url_request/ |
url_request_context_builder.h | 11 // populated with "sane" default values. Read through the comments to figure out 46 // The type of HTTP cache. Default is IN_MEMORY. 49 // The max size of the cache in bytes. Default is algorithmically determined 85 // Control support for data:// requests. By default it's disabled. 90 // Control support for file:// requests. By default it's disabled. 96 // Control support for ftp:// requests. By default it's disabled. 102 // By default host_resolver is constructed with CreateDefaultResolver. 107 // Uses BasicNetworkDelegate by default. Note that calling Build will unset 114 // By default HttpCache is enabled with a default constructed HttpCacheParams [all...] |
/external/chromium_org/ppapi/generators/ |
idl_option.py | 19 def __init__(self, name, desc, default = None, callfunc = None, 27 self.default = default 28 self.value = default 38 if self.default is None: 55 if option.default: 56 out = '%s\n\t\t\t(Default: %s)\n' % (out, option.default) 66 # Default IDL options 85 if option.default is None [all...] |
/external/valgrind/main/ |
Makefile.am | 61 # default.supp, as it is built from the base .supp files at compile-time. 64 pkglib_DATA = default.supp 69 BUILT_SOURCES = default.supp valgrind.pc 70 CLEANFILES = default.supp 72 default.supp: $(DEFAULT_SUPP_FILES) 73 echo "# This is a generated file, composed of the following suppression rules:" > default.supp 74 echo "# " $(DEFAULT_SUPP_FILES) >> default.supp 75 cat $(DEFAULT_SUPP_FILES) >> default.supp 113 all-local: default.supp 115 rm -f $(inplacedir)/default.sup [all...] |