/external/chromium_org/build/android/pylib/gtest/ |
setup.py | 111 '--path-variable', 'DEPTH', constants.DIR_SOURCE_ROOT, 112 '--path-variable', 'PRODUCT_DIR', constants.GetOutDirectory(), 114 '--config-variable', 'OS', 'android', 115 '--config-variable', 'CONFIGURATION_NAME', constants.GetBuildType(), 116 '--config-variable', 'asan', '0', 117 '--config-variable', 'chromeos', '0', 118 '--config-variable', 'component', 'static_library', 119 '--config-variable', 'fastbuild', '0', 120 '--config-variable', 'icu_use_data_file_flag', '1', 122 '--config-variable', 'target_arch', 'arm' [all...] |
/external/chromium_org/build/config/linux/ |
pkg_config.gni | 8 # packages. Put the package names you want to query in the "packages" variable 11 # You can also add defines via the "defines" variable. This can be useful to 38 "Variable |packages| must be defined to be a list in pkg_config.")
|
/external/chromium_org/build/linux/ |
pkg-config-wrapper | 15 # the PKG_CONFIG_PATH environment variable- these will be prepended to the 56 # pkg-config's |prefix| variable. 57 prefix=`PKG_CONFIG_PATH=$config_path pkg-config --variable=prefix "$package" | sed -e 's|/usr$||'`
|
/external/chromium_org/third_party/icu/source/samples/ucnv/ |
readme.txt | 49 set the variable ICU_PREFIX=<icu install> 62 Note: The name of the LD_LIBRARY_PATH variable is different on some systems. 64 the variable that is used there. LD_LIBRARY_PATH is the correct name
|
/external/chromium_org/tools/usb_gadget/ |
hid_echo_gadget.py | 35 hid_descriptors.Variable, 39 hid_descriptors.Variable, 43 hid_descriptors.Variable,
|
/external/chromium_org/v8/src/ |
bailout-reason.h | 25 "Assignment to let variable before initialization") \ 26 V(kAssignmentToLOOKUPVariable, "Assignment to LOOKUP variable") \ 59 V(kDeleteWithGlobalVariable, "Delete with global variable") \ 60 V(kDeleteWithNonGlobalVariable, "Delete with non-global variable") \ 98 "ForInStatement with non-local each variable") \ 162 V(kLookupVariableInCountOperation, "Lookup variable in count operation") \ 170 V(kModuleVariable, "Module variable") \ 214 "Reference to a variable which requires dynamic lookup") \ 215 V(kReferenceToGlobalLexicalVariable, "Reference to global lexical variable") \ 216 V(kReferenceToUninitializedVariable, "Reference to uninitialized variable") \ [all...] |
/external/chromium_org/v8/test/webkit/ |
dfg-arguments-osr-exit-multiple-blocks-before-exit.js | 29 return [variable]; 52 var variable = 32; variable 57 variable = "32";
|
dfg-arguments-osr-exit-multiple-blocks.js | 29 return [variable]; 50 var variable = 32; variable 55 variable = "32";
|
dfg-cfg-simplify-phantom-get-local-on-same-block-set-local.js | 25 "Tests that attempts by the DFG simplification to short-circuit a Phantom to a GetLocal on a variable that is SetLocal'd in the same block, and where the predecessor block(s) make no mention of that variable, do not result in crashes." 54 // Basic block that stores to x in foo(), which is a captured variable, with
|
dfg-constant-fold-uncaptured-variable-that-is-later-captured.js | 25 "Tests that constant folding an access to an uncaptured variable that is captured later in the same basic block doesn't lead to assertion failures." 40 // The temporary variable corresponding to the 'bar' callee coming out of the ternary expression will be allocated by 46 // The temporary variable corresponding to the first non-this argument to baz will be allocated to the same virtual
|
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/ |
p3.cpp | 134 // - a definition of a variable of non-literal type 135 NonLiteral nl; // expected-error {{variable of non-literal type 'NonLiteral' cannot be defined in a constexpr function}} 139 // - a definition of a variable of static storage duration 140 static constexpr int n = 123; // expected-error {{static variable not permitted in a constexpr function}} 144 // - a definition of a variable of thread storage duration 145 thread_local constexpr int n = 123; // expected-error {{thread_local variable not permitted in a constexpr function}} 149 // - a definition of a variable for which no initialization is performed 164 // expected-error@-2 {{variable declaration in a constexpr function is a C++1y extension}} 171 // expected-error@-2 {{variable declaration in a constexpr function is a C++1y extension}} 178 // expected-error@-2 {{variable declaration in a constexpr function is a C++1y extension} [all...] |
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/ |
p4.cpp | 39 static const auto a; // expected-error {{declaration of variable 'a' with type 'const auto' requires an initializer}} 51 auto parens2(2, 3); // expected-error {{initializer for variable 'parens2' with type 'auto' contains multiple expressions}} 53 auto parens3({4, 5, 6}); // expected-error {{cannot deduce type for variable 'parens3' with type 'auto' from parenthesized initializer list}}
|
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/ |
p14.cpp | 17 (void)[nc] { }; // expected-error{{capture of variable 'nc' as type 'NonCopyable' calls private copy constructor}} 19 ncr.foo(); // expected-error{{capture of variable 'ncr' as type 'NonCopyable' calls private copy constructor}} 108 auto& y = param; // expected-error{{by-copy capture of variable 'param' with incomplete type 'const rdar15560464::X'}}
|
/external/clang/test/Sema/ |
address_spaces.c | 18 _AS1 int local; // expected-error {{automatic variable qualified with an address space}} 19 _AS1 int array[5]; // expected-error {{automatic variable qualified with an address space}} 20 _AS1 int arrarr[5][5]; // expected-error {{automatic variable qualified with an address space}}
|
anonymous-struct-union.c | 32 xc.d = 0.0; // expected-error{{read-only variable is not assignable}} 33 xc.f = 0; // expected-error{{read-only variable is not assignable}} 34 xc.a = 0; // expected-error{{read-only variable is not assignable}}
|
private-extern.c | 72 extern int g15 = 0; // expected-error{{'extern' variable cannot have an initializer}} 74 __private_extern__ int g16 = 0; // expected-error{{'extern' variable cannot have an initializer}} 80 extern int g18 = 0; // expected-warning{{'extern' variable has an initializer}}
|
/external/clang/test/SemaCXX/ |
lambda-expressions.cpp | 49 []() { return a; }; // expected-error {{variable 'a' cannot be implicitly captured in a lambda with no capture-default specified}} expected-note {{begins here}} 52 [=]() { int* b = &a; }; // expected-error {{cannot initialize a variable of type 'int *' with an rvalue of type 'const int *'}} 54 []() { return [&]() { return a; }; }; // expected-error {{variable 'a' cannot be implicitly captured in a lambda with no capture-default specified}} expected-note {{lambda expression begins here}} 55 []() { return ^{ return a; }; };// expected-error {{variable 'a' cannot be implicitly captured in a lambda with no capture-default specified}} expected-note {{lambda expression begins here}} 56 []() { return [&a] { return a; }; }; // expected-error 2 {{variable 'a' cannot be implicitly captured in a lambda with no capture-default specified}} expected-note 2 {{lambda expression begins here}} 67 [=]() { return c; }; // expected-error {{unnamed variable cannot be implicitly captured in a lambda expression}} 70 [&]() { return e; }; // expected-error {{__block variable 'e' cannot be captured in a lambda expression}} 71 [&e]() { return e; }; // expected-error 2 {{__block variable 'e' cannot be captured in a lambda expression}} 75 (void) ^{ return []() { return f[2]; }; }; // expected-error {{variable 'f' cannot be implicitly captured in a lambda with no capture-default specified}} \ 85 []() { return h; }; // expected-error {{variable 'h' cannot be implicitly captured in a lambda with no capture-default specified}} expected-note {{ (…) [all...] |
/external/clang/test/SemaObjC/ |
property.m | 5 int IVAR; // expected-note{{instance variable is declared here}} 21 @synthesize prop_id = IVAR; // expected-error {{type of property 'prop_id' ('id') does not match type of instance variable 'IVAR' ('int')}} // expected-error {{property 'prop_id' is already implemented}} 81 char data[t.length] = {}; // expected-error {{variable-sized object may not be initialized}}
|
/external/icu/icu4c/source/samples/ucnv/ |
readme.txt | 49 set the variable ICU_PREFIX=<icu install> 62 Note: The name of the LD_LIBRARY_PATH variable is different on some systems. 64 the variable that is used there. LD_LIBRARY_PATH is the correct name
|
/external/lldb/source/Expression/ |
ClangPersistentVariables.cpp | 50 ClangPersistentVariables::RemovePersistentVariable (lldb::ClangExpressionVariableSP variable) 52 RemoveVariable(variable); 54 const char *name = variable->GetName().AsCString();
|
/external/lldb/test/functionalities/watchpoint/watchpoint_set_command/ |
TestWatchpointSetErrorCases.py | 55 'variable']) 56 self.runCmd("watchpoint set variable -w read_write", check=False) 68 self.expect("watchpoint set variable -x -128", error=True,
|
/external/lldb/test/lang/objc/rdar-10967107/ |
TestRdar10967107.py | 50 self.expect("frame variable cf_greg_date --raw", substrs = ['year','month','day','hour','minute','second']) 51 self.expect("frame variable cf_range --raw", substrs = ['location','length']) 53 self.expect("frame variable --raw", substrs = ['year','month','day','hour','minute','second','location','length'])
|
/external/lldb/test/settings/ |
main.cpp | 50 outfile << "Environment variable 'MY_ENV_VAR' successfully passed.\n"; 59 outfile << "The host environment variable 'MY_HOST_ENV_VAR1' successfully passed.\n"; 66 outfile << "The host environment variable 'MY_HOST_ENV_VAR2' successfully passed.\n";
|
/external/lldb/utils/vim-lldb/python-vim-lldb/ |
import_lldb.py | 9 2. Executes the lldb executable pointed to by the LLDB environment variable (or if unset, the first lldb 22 # Allow overriding default path to lldb executable with the LLDB environment variable 61 vim.command('redraw | echo "%s"' % " Error loading lldb module; vim-lldb will be disabled. Check LLDB installation or set LLDB environment variable.")
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
DbgValueHistoryCalculator.h | 23 // For each user variable, keep a list of instruction ranges where this variable 27 // location of a variable, which is assumed to be valid until the end of the
|