HomeSort by relevance Sort by last modified time
    Searched refs:Variable (Results 51 - 75 of 442) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p10.cpp 19 int variable; // expected-note {{declared here}} local
20 (void)[&Overload] () {}; // expected-error {{does not name a variable}}
23 (void)[&Variable] () {}; // expected-error {{use of undeclared identifier 'Variable'; did you mean 'variable'}}
33 (void)[local, // expected-error{{reference to local variable 'local' declared in enclosing function 'test_reaching_scope'}}
  /external/v8/src/compiler/
ast-loop-assignment-analyzer.h 17 class Variable;
33 int GetAssignmentCountForTesting(DeclarationScope* scope, Variable* var);
54 static int GetVariableIndex(DeclarationScope* scope, Variable* var);
71 void AnalyzeAssignment(Variable* var);
  /system/update_engine/update_manager/
real_config_provider.h 38 Variable<bool>* var_is_oobe_enabled() override {
real_shill_provider.h 49 Variable<bool>* var_is_connected() override {
53 Variable<chromeos_update_engine::ConnectionType>* var_conn_type() override {
57 Variable<chromeos_update_engine::ConnectionTethering>* var_conn_tethering() override {
61 Variable<base::Time>* var_conn_last_changed() override {
real_time_provider.cc 32 // A variable returning the current date.
33 class CurrDateVariable : public Variable<Time> {
35 // TODO(garnold) Turn this into an async variable with the needed callback
38 : Variable<Time>(name, TimeDelta::FromHours(1)), clock_(clock) {}
55 // A variable returning the current hour in local time.
56 class CurrHourVariable : public Variable<int> {
58 // TODO(garnold) Turn this into an async variable with the needed callback
61 : Variable<int>(name, TimeDelta::FromMinutes(5)), clock_(clock) {}
umtest_utils.h 27 #include "update_engine/update_manager/variable.h"
39 // Calls GetValue on |variable| and expects its result to be |expected|.
41 static void ExpectVariableHasValue(const T& expected, Variable<T>* variable) {
42 ASSERT_NE(nullptr, variable);
44 variable->GetValue(DefaultTimeout(), nullptr));
45 ASSERT_NE(nullptr, value.get()) << "Variable: " << variable->GetName();
46 EXPECT_EQ(expected, *value) << "Variable: " << variable->GetName()
    [all...]
  /external/deqp/framework/randomshaders/
rsgVariable.cpp 21 * \brief Variable class.
31 Variable::Variable (const VariableType& type, Storage storage, const char* name)
39 Variable::~Variable (void)
43 void Variable::tokenizeDeclaration (GeneratorState& state, TokenStream& str) const
rsgStatement.hpp 74 DeclarationStatement (GeneratorState& state, Variable* variable = DE_NULL);
84 const Variable* m_variable;
140 AssignStatement (const Variable* variable, Expression* value);
141 AssignStatement (GeneratorState& state, const Variable* variable, ConstValueRangeAccess valueRange);
149 const Variable* m_variable;
rsgShader.cpp 58 ShaderInput::ShaderInput (const Variable* variable, ConstValueRangeAccess valueRange)
59 : m_variable (variable)
60 , m_min (variable->getType().getScalarSize())
61 , m_max (variable->getType().getScalarSize())
63 ValueAccess(variable->getType(), &m_min[0]) = valueRange.getMin().value();
64 ValueAccess(variable->getType(), &m_max[0]) = valueRange.getMax().value();
81 void Shader::getOutputs (vector<const Variable*>& outputs) const
84 const vector<Variable*>& globalVars = m_globalScope.getDeclaredVariables();
85 for (vector<Variable*>::const_iterator i = globalVars.begin(); i != globalVars.end(); i++
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Variable/RuntimeDxe/
VariableExLib.c 2 Provides variable driver extended services.
15 #include "Variable.h"
18 Finds variable in storage blocks of volatile and non-volatile storage areas.
20 This code finds variable in storage blocks of volatile and non-volatile storage areas.
22 qualified variable without comparing VariableName and VendorGuid.
24 @param[in] VariableName Name of the variable to be found.
25 @param[in] VendorGuid Variable vendor GUID to be found.
27 output of the variable found.
31 @retval EFI_SUCCESS Variable successfully found.
32 @retval EFI_NOT_FOUND Variable not found
    [all...]
VariableRuntimeDxe.inf 2 # Provides variable service.
4 # This module installs variable arch protocol and variable write arch protocol to provide
5 # variable services: SetVariable, GetVariable, GetNextVariableName and QueryVariableInfo.
8 # This driver will have external input - variable data.
41 Variable.c
43 Variable.h
80 ## PRODUCES ## GUID # Signature of Variable store header
81 ## CONSUMES ## GUID # Signature of Variable store header
86 ## PRODUCES ## GUID # Signature of Variable store header
    [all...]
VariableSmm.inf 2 # Provides SMM variable service.
4 # This module installs SMM variable protocol into SMM protocol database,
5 # which can be used by SMM driver, and installs SMM variable protocol
7 # Dxe driver that the SMM variable service is ready.
9 # SMM Runtime DXE module would install variable arch protocol and variable
10 # write arch protocol based on SMM variable module.
13 # This driver will have external input - variable data and communicate buffer in SMM mode.
16 # The whole SMM authentication variable design relies on the integrity of flash part and SMM.
17 # which is assumed to be protected by platform. All variable code and metadata in flash/SMM Memory
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/VariableAuthenticated/EsalVariableDxeSal/
Variable.c 2 The implementation of Extended SAL variable services.
15 #include "Variable.h"
37 // The current Hii implementation accesses this variable a larg # of times on every boot.
39 // only targets a single variable. Probably to get an performance improvement out of
40 // a Cache you would need a cache that improves the search performance for a variable.
104 Reads/Writes variable storage, volatile or non-volatile.
106 This function reads or writes volatile or non-volatile variable stroage.
111 @param[in] Write TRUE - Write variable store.
112 FALSE - Read variable store.
114 @param[in] Volatile TRUE - Variable is volatile.
    [all...]
AuthService.h 33 Process variable with EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS set, and return the index of associated public key.
39 @param[in] Global The context of this Extended SAL Variable Services Class call.
40 @param[in] Variable The variable information which is used to keep track of variable usage.
41 @param[in] Attributes The attribute value of the variable.
46 @retval EFI_WRITE_PROTECTED The variable is write-protected and needs authentication with
48 @retval EFI_SECURITY_VIOLATION The variable is with EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS
51 @retval EFI_SUCCESS The variable is not write-protected, or passed validation successfully.
60 IN VARIABLE_POINTER_TRACK *Variable,
    [all...]
EsalVariableDxeSal.inf 2 # Provides authenticated variable service for IPF platform
4 # This module installs variable arch protocol and variable write arch protocol to provide
38 Variable.c
39 Variable.h
70 ## SOMETIMES_CONSUMES ## Variable:L"PK"
71 ## CONSUMES ## Variable:L"SetupMode"
72 ## PRODUCES ## Variable:L"SetupMode"
73 ## CONSUMES ## Variable:L"SignatureSupport"
74 ## PRODUCES ## Variable:L"SignatureSupport"
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
AbsPathChecker.java 29 import org.apache.xpath.operations.Variable;
69 * Visit a variable reference.
72 * @param var The variable reference object.
75 public boolean visitVariableRef(ExpressionOwner owner, Variable var)
  /external/testng/
update-beust.com 10 echo Variable "$U" is not set
  /external/v8/src/ast/
variables.h 18 // after binding and variable allocation.
19 class Variable final : public ZoneObject {
21 Variable(Scope* scope, const AstRawString* name, VariableMode mode,
25 // The source code for an eval() call may refer to a variable that is
84 Variable* local_if_not_shadowed() const {
89 void set_local_if_not_shadowed(Variable* local) {
123 typedef ThreadedList<Variable> List;
129 // If this field is set, this variable references the stored locally bound
130 // variable, but it might be shadowed by variable bindings introduced b
    [all...]
  /system/tools/aidl/
ast_java.h 86 struct Variable : public Expression {
91 Variable() = default;
92 Variable(const Type* type, const std::string& name);
93 Variable(const Type* type, const std::string& name, int dimension);
94 virtual ~Variable() = default;
115 Variable* variable = nullptr; member in struct:android::aidl::java::Field
119 Field(int modifiers, Variable* variable);
150 Variable* lvalue
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/
DmpStore.c 86 Load the variable data from file and set to variable data base.
91 @param[out] Found TRUE when at least one variable was loaded and set.
115 DMP_STORE_VARIABLE *Variable;
189 Variable = AllocateZeroPool (sizeof (*Variable) + NameSize + DataSize);
190 if (Variable == NULL) {
195 Variable->Signature = DMP_STORE_VARIABLE_SIGNATURE;
196 Variable->Name = (CHAR16 *) (Variable + 1);
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformInitPei/
BootMode.c 108 EFI_PEI_READ_ONLY_VARIABLE2_PPI *Variable;
119 (void **)&Variable
129 Status = Variable->GetVariable (
130 Variable,
154 EFI_PEI_READ_ONLY_VARIABLE2_PPI *Variable;
197 (void **)&Variable
202 // Use normal setup default from NVRAM variable,
206 Status = Variable->GetVariable (
207 Variable,
215 //The setup variable is corrupted
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
Frame.java 43 protected ArrayList<Variable> vars;
67 Frame(long threadID, long id, Location location, ArrayList<Variable> vars) {
136 public ArrayList<Variable> getVars() {
146 public void setVars(ArrayList<Variable> vars) {
161 for (Variable var : vars) {
201 * This describing frame variable.
204 public final class Variable {
223 public Variable() {
234 * Gets code index of variable.
243 * Sets new code index for variable
    [all...]
  /build/blueprint/parser/
parser_test.go 357 Value: &Variable{
365 OrigValue: &Variable{
388 &Variable{
396 &Variable{
399 Value: &Variable{
418 &Variable{
426 &Variable{
429 Value: &Variable{
449 &Variable{
460 &Variable{
    [all...]
  /external/clang/unittests/Tooling/
RecursiveASTVisitorTestDeclVisitor.cpp 19 bool VisitVarDecl(VarDecl *Variable) {
20 Match(Variable->getNameAsString(), Variable->getLocStart());
45 // Test RAV visits parameter variable declaration of the implicit
49 // Match parameter variable name of implicit copy assignment operator and
  /device/linaro/bootloader/edk2/Nt32Pkg/WinNtAutoScanPei/
WinNtAutoScan.c 53 Validate variable data for the MemoryTypeInformation.
55 @param MemoryData Variable data.
56 @param MemoryDataSize Variable data length.
58 @return TRUE The variable data is valid.
59 @return FALSE The variable data is invalid.
126 EFI_PEI_READ_ONLY_VARIABLE2_PPI *Variable;
190 (VOID **)&Variable
195 Status = Variable->GetVariable (
196 Variable,

Completed in 1342 milliseconds

1 23 4 5 6 7 8 91011>>