/external/clang/test/PCH/ |
tentative-defs.h | 2 int variable; variable
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/ |
elfreloc-ext.asm | 1 EXTERN variable 2 mov eax, variable 3 mov ax, variable 4 mov al, variable
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
dynOptionMenuWidget.py | 13 def __init__(self, master, variable, value, *values, **kwargs): 18 OptionMenu.__init__(self, master, variable, value, *values, **kwargs) 21 self.variable=variable 33 command=_setit(self.variable,item,self.command)) 35 self.variable.set(value)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
dynOptionMenuWidget.py | 13 def __init__(self, master, variable, value, *values, **kwargs): 18 OptionMenu.__init__(self, master, variable, value, *values, **kwargs) 21 self.variable=variable 33 command=_setit(self.variable,item,self.command)) 35 self.variable.set(value)
|
/external/chromium_org/third_party/ocmock/OCMock/ |
OCMArg.h | 33 #define OCMOCK_VALUE(variable) [NSValue value:&variable withObjCType:@encode(__typeof__(variable))]
|
/frameworks/compile/mclinker/ |
mcld.mk | 2 $(error Must set variable MCLD_ROOT_PATH before including this! $(LOCAL_PATH)) 9 $(error Must set variable LLVM_ROOT_PATH before including this! $(LOCAL_PATH))
|
/external/doclava/src/com/google/doclava/ |
Resolution.java | 24 * <p>Resolutions contain a Variable and a Value, both of which are set in the Resolution constructor. 31 * <p>Values are the value to which the variable contained within this {@link Resolution} refers. 34 * contains "superclass" as its variable and "Dialog" as its value. 42 * Creates a new resolution with variable and value. 43 * @param variable The piece of data within a Java type that needs to be updated 45 * @param value The value to which the variable contained within this {@link Resolution} refers. 48 public Resolution(String variable, String value, InfoBuilder builder) { 49 mVariable = variable; 63 * @return The value to which the variable contained within this {@link Resolution} refers.
|
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/ |
VariableLocator.java | 47 * @param variable the variable node to evaluate. 48 * @return a String representing the Variable name, or {@code null} if it is a compound variable 51 private String quickEval(PVariable variable) { 52 if (variable instanceof ANameVariable) { 53 return ((ANameVariable) variable).getWord().getText(); 54 } else if (variable instanceof ADecNumberVariable) { 55 return ((ADecNumberVariable) variable).getDecNumber().getText(); 56 } else if (variable instanceof AHexNumberVariable) [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/env/ |
variable.hpp | 12 // Description : defines model of program environment variable 86 // ************** runtime::environment::variable ************** // 90 class variable : public variable_base { class in namespace:boost::BOOST_RT_PARAM_NAMESPACE::environment 93 explicit variable( cstring var_name ); 96 explicit variable( cstring var_name, Modifiers const& m ); 98 explicit variable( rt_env_detail::variable_data& data ) function in class:boost::BOOST_RT_PARAM_NAMESPACE::environment::variable 101 // other variable assignment 102 void operator=( variable const& v ) { m_data = v.m_data; } 126 }; // class variable 132 operator<<( std::basic_ostream<CharT,Tr>& os, variable<T> const& v 203 variable<T>::variable( cstring var_name ) function in class:boost::BOOST_RT_PARAM_NAMESPACE::environment::variable 211 variable<T>::variable( cstring var_name, Modifiers const& m ) function in class:boost::BOOST_RT_PARAM_NAMESPACE::environment::variable [all...] |
/external/bison/src/ |
muscle-tab.h | 106 /* Indicates whether a variable's value was specified with -D/--define, with 113 /* Define the muscles for %define variable VARIABLE with VALUE specified 115 grammar file while the previous definition for VARIABLE was specified 120 this as a user occurrence of VARIABLE by invoking 122 void muscle_percent_define_insert (char const *variable, location variable_loc, 127 %define variable VARIABLE is defined, return its value. Otherwise, return 128 the empty string. Also, record Bison's usage of VARIABLE by defining 129 b4_percent_define_bison_variables(VARIABLE). The caller is responsible fo [all...] |
muscle-tab.c | 399 /** If the \a variable name is obsolete, return the name to use, 400 * otherwise \a variable. */ 403 muscle_percent_variable_update (char const *variable) 416 char const *res = variable; 419 if (STREQ (conversion[i].obsolete, variable)) 433 char const *variable = muscle_percent_variable_update (var); local 434 char const *name = UNIQSTR_CONCAT ("percent_define(", variable, ")"); 435 char const *loc_name = UNIQSTR_CONCAT ("percent_define_loc(", variable, ")"); 437 UNIQSTR_CONCAT ("percent_define_syncline(", variable, ")"); 438 char const *how_name = UNIQSTR_CONCAT ("percent_define_how(", variable, ")"); [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/ |
jsilver.sablecc | 64 args, // Args to command: "some.variable=3 ?>" 222 | {set} cs_open set command_delimiter variable assignment expression cs_close 226 variable.variable, 229 | {name} cs_open name command_delimiter variable cs_close 233 variable.variable)} 253 | {with} cs_open with command_delimiter variable assignment expression cs_close 259 variable.variable, [all...] |
/ndk/sources/host-tools/make-3.81/ |
variable.c | 27 #include "variable.h" 42 /* Create a new pattern-specific variable struct. */ 64 /* Look up a target in the pattern-specific variable list. */ 104 /* Hash table of all global variable definitions. */ 109 struct variable const *key = (struct variable const *) keyv; 116 struct variable const *key = (struct variable const *) keyv; 123 struct variable const *x = (struct variable const *) xv [all...] |
variable.h | 21 /* Codes in a variable definition saying where the definition came from. 25 o_default, /* Variable from the default set. */ 26 o_env, /* Variable from environment. */ 27 o_file, /* Variable given in a makefile. */ 28 o_env_override, /* Variable from environment, if -e. */ 29 o_command, /* Variable given by user. */ 30 o_override, /* Variable from an `override' directive. */ 31 o_automatic, /* Automatic variable -- cannot be set. */ 44 /* Structure that represents one variable definition. 51 struct variable struct 105 struct variable variable; member in struct:pattern_var [all...] |
/external/compiler-rt/make/ |
util.mk | 31 # Function: Set variable value 33 # Set the given make variable to the given value. 36 # Function: Append variable value 38 # Append the given value to the given make variable. 41 # Function: IsDefined variable 43 # Check whether the given variable is defined. 46 # Function: IsUndefined variable 48 # Check whether the given variable is undefined. 51 # Function: VarOrDefault variable default-value 53 # Get the value of the given make variable, or the default-value if the variabl [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/functions/structure/ |
NameFunction.java | 27 * Returns the Data variable name for a local variable alias. 32 * @param args A local variable 39 Data variable = variableValue.getReference(); local 40 if (variable != null) { 41 return literalValue(variable.getSymlink().getName(), variableValue.getEscapeMode(),
|
/external/smack/src/org/jivesoftware/smackx/ |
ReportedData.java | 157 private String variable; field in class:ReportedData.Column 164 * @param variable the variable name of the column. 167 public Column(String label, String variable, String type) { 169 this.variable = variable; 210 * Returns the variable name that the column is showing. 212 * @return the variable name of the column. 215 return variable; 229 * Returns the values of the field whose variable matches the requested variable 255 private String variable; field in class:ReportedData.Field [all...] |
/external/chromium_org/third_party/WebKit/Source/testing/plugin/Tests/ |
FormValue.cpp | 40 NPError FormValue::NPP_GetValue(NPPVariable variable, void *value) 42 if (variable == NPPVformValue) {
|
PluginScriptableNPObjectInvokeDefault.cpp | 50 virtual NPError NPP_GetValue(NPPVariable variable, void *value) 52 if (variable != NPPVpluginScriptableNPObject)
|
/external/chromium_org/third_party/libjingle/source/talk/build/ |
common.gypi | 43 'java_home%': '<!(python -c "import os; dir=os.getenv(\'JAVA_HOME\', \'/usr/lib/jvm/java-6-sun\'); assert os.path.exists(os.path.join(dir, \'include/jni.h\')), \'Point \\$JAVA_HOME or the java_home gyp variable to a directory containing include/jni.h!\'; print dir")',
|
/development/ndk/platforms/android-9/arch-x86/src/ |
__dso_handle.S | 29 # The __dso_handle global variable is used by static
|
__dso_handle_so.S | 29 # The __dso_handle global variable is used by static
|
/external/chromium_org/third_party/angle/src/compiler/ |
VariablePacker.cpp | 209 const TVariableInfo& variable = variables[ii]; 210 if (GetNumComponentsPerRow(variable.type) != 4) { 213 topNonFullRow_ += GetNumRows(variable.type) * variable.size; 223 const TVariableInfo& variable = variables[ii]; 224 if (GetNumComponentsPerRow(variable.type) != 3) { 227 num3ColumnRows += GetNumRows(variable.type) * variable.size; 242 const TVariableInfo& variable = variables[ii]; 243 if (GetNumComponentsPerRow(variable.type) != 2) [all...] |
/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/qemu/distrib/sdl-1.2.15/ |
Makefile | 31 $(error "The BUILD_SYSTEM variable was not defined by your configuration sub-makefile. Aborting")
|