/build/kati/testcase/ |
value.mk | 14 echo $(value FOO) 15 echo $(value FOO BAR) 16 echo $(value FOO,BAR) 17 echo $(value $(FOOREF)) 20 echo $(value @) 21 echo '$(value @D)' 22 echo '$(value @F)' 25 $(info $(value X))
|
/external/antlr/antlr-3.4/runtime/Perl5/examples/mexpr/ |
MExpr.g | 14 : e=atom { $value = $e.value; } 15 ( '+' e=atom { $value += $e.value; } 16 | '-' e=atom { $value -= $e.value; } 21 : INT { $value = $INT.text; } 22 | '(' expr ')' { $value = $expr.value; }
|
/external/antlr/antlr-3.4/runtime/Perl5/examples/expr/ |
Expr.g | 23 : e=multExpr { $value = $e.value; } 24 ( '+' e=multExpr { $value += $e.value; } 25 | '-' e=multExpr { $value -= $e.value; } 30 : e=atom { $value = $e.value; } ('*' e=atom { $value *= $e.value; })* 34 : INT { $value = $INT.text; } 39 $value = $v; 44 | '(' expr ')' { $value = $expr.value; }
|
/external/autotest/client/profilers/readprofile/ |
avgprofile | 13 $value = int $map{$key}/5; 14 print "$value $key\n";
|
/external/flatbuffers/php/ |
ByteBuffer.php | 173 * @param $value 176 public function putSbyte($offset, $value) 178 self::validateValue(-128, 127, $value, "sbyte"); 180 $length = strlen($value); 182 return $this->_buffer[$offset] = $value; 187 * @param $value 190 public function putByte($offset, $value) 192 self::validateValue(0, 255, $value, "byte"); 194 $length = strlen($value); 196 return $this->_buffer[$offset] = $value; [all...] |
/external/antlr/antlr-3.4/runtime/Perl5/t/examples/ |
expr.t | 30 : e=multExpr { $value = $e.value; } 31 ( '+' e=multExpr { $value += $e.value; } 32 | '-' e=multExpr { $value -= $e.value; } 37 : e=atom { $value = $e.value; } ('*' e=atom { $value *= $e.value; })* 41 : INT { $value = $INT.text; } 46 $value = $v; 51 | '(' expr ')' { $value = $expr.value; }
|
fig.t | 49 : STRING { $value = $STRING.text; } 50 | INT { $value = Integer.valueOf($INT.text); } 51 | '$' ID { $value = instances.get($ID.text); } 52 | '[' ']' { $value = new ArrayList(); } 57 { $value = elements; }
|
/prebuilts/misc/common/swig/include/2.0.11/php/ |
const.i | 17 "SWIG_LONG_CONSTANT($symname, $value);"; 21 "SWIG_DOUBLE_CONSTANT($symname, $value);"; 24 "SWIG_CHAR_CONSTANT($symname, $value);"; 30 "SWIG_STRING_CONSTANT($symname, $value);"; 37 SWIG_SetPointerZval(z_var, (void*)$value, $1_descriptor, 0);
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/ |
DebugTreeGrammar.g3 | 64 : ^('+' a=expr b=expr) { $value = $a.value.add($b.value); } 65 | ^('-' a=expr b=expr) { $value = $a.value.subtract($b.value); } 66 | ^('*' a=expr b=expr) { $value = $a.value.multiply($b.value); } 67 | ^('/' a=expr b=expr) { $value = $a.value.divide($b.value); } 68 | ^('%' a=expr b=expr) { $value = $a.value.remainder($b.value); } 69 | ID { $value = getValue($ID.text); } 70 | INT { $value = new BigInteger($INT.text); } 71 | call { $value = $call.value; } 84 $value = e.expr();
|
ProfileTreeGrammar.g3 | 64 : ^('+' a=expr b=expr) { $value = $a.value.add($b.value); } 65 | ^('-' a=expr b=expr) { $value = $a.value.subtract($b.value); } 66 | ^('*' a=expr b=expr) { $value = $a.value.multiply($b.value); } 67 | ^('/' a=expr b=expr) { $value = $a.value.divide($b.value); } 68 | ^('%' a=expr b=expr) { $value = $a.value.remainder($b.value); } 69 | ID { $value = getValue($ID.text); } 70 | INT { $value = new BigInteger($INT.text); } 71 | call { $value = $call.value; } 84 $value = e.expr();
|
/external/shflags/src/ |
shflags_test_private.sh | 17 assertNotNull "unexpected screen width (${cols})" "${value}" 94 _flags_validBool "${value}" 95 assertTrue "valid value (${value}) did not validate" $? 100 _flags_validBool "${value}" 101 assertFalse "invalid value (${value}) validated" $? 109 _flags_validFloat "${value}" 110 assertTrue "valid value (${value}) did not validate" $? 115 _flags_validFloat "${value}" 116 assertFalse "invalid value (${value}) validated" $? 138 _flags_validInt "${value}" [all...] |
shflags_test_parsing.sh | 54 assertTrue "-b) boolean was not true (${value})." "${value}" 64 assertTrue "-B) boolean was not true (${value})" ${value} 73 assertFalse "-B) boolean was not false (${value})" ${value} 122 FLAGS ${flag} ${value} >"${stdoutF}" 2>"${stderrF}" 124 assertTrue "FLAGS ${flag} ${value} returned non-zero result (${r3turn})" \ 126 assertEquals "float (${flag} ${value}) test failed." ${value} ${FLAGS_float [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/JavaCompat/ |
Expr.g3 | 86 : e=multExpr {$value = $e.value;} 87 ( '+' e=multExpr {$value += $e.value;} 88 | '-' e=multExpr {$value -= $e.value;} 93 : e=atom {$value = $e.value;} ('*' e=atom {$value *= $e.value;})* 97 : INT {$value = Integer.parseInt($INT.text);} 101 if ( v!=null ) $value = v.intValue(); 104 | '(' expr ')' {$value = $expr.value;}
|
/external/llvm/cmake/modules/ |
GetHostTriple.cmake | 28 set( ${var} ${value} PARENT_SCOPE ) 29 message(STATUS "Target triple: ${value}")
|
HandleLLVMStdlib.cmake | 11 set(${variable} "${${variable}} ${value}" PARENT_SCOPE)
|
/external/swiftshader/third_party/LLVM/cmake/modules/ |
GetTargetTriple.cmake | 28 set( ${var} ${value} PARENT_SCOPE )
29 message(STATUS "Target triple: ${value}")
|
/external/protobuf/src/google/protobuf/compiler/java/ |
java_enum_field_lite.cc | 151 "$deprecation$int get$capitalized_name$Value();\n"); 173 "$deprecation$public int get$capitalized_name$Value() {\n" 188 "private void set$capitalized_name$Value(int value) {\n" 195 "private void set$capitalized_name$($type$ value) {\n" 222 "$deprecation$public int get$capitalized_name$Value() {\n" 223 " return instance.get$capitalized_name$Value();\n" 227 "$deprecation$public Builder set$capitalized_name$Value(int value) {\n" 229 " instance.set$capitalized_name$Value(value);\n" 240 "$deprecation$public Builder set$capitalized_name$($type$ value) {\n" 242 " instance.set$capitalized_name$(value);\n [all...] |
java_enum_field.cc | 165 "$deprecation$int get$capitalized_name$Value();\n"); 187 "$deprecation$public int get$capitalized_name$Value() {\n" 213 "$deprecation$public int get$capitalized_name$Value() {\n" 218 "$deprecation$public Builder set$capitalized_name$Value(int value) {\n" 232 "$deprecation$public Builder set$capitalized_name$($type$ value) {\n" 278 " set$capitalized_name$Value(other.get$capitalized_name$Value());\n" 307 "$type$ value = $type$.forNumber(rawValue);\n" 390 "$deprecation$public int get$capitalized_name$Value() {\n" 420 "$deprecation$public int get$capitalized_name$Value() {\n [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/ |
ExportFieldsPart.java | 48 "", //$NON-NLS-1$ value, 53 "", //$NON-NLS-1$ value, 58 "", //$NON-NLS-1$ value, 63 "", //$NON-NLS-1$ value, 68 "", //$NON-NLS-1$ value,
|
/external/libcxx/cmake/Modules/ |
HandleLibcxxFlags.cmake | 79 set(${def} ${value}) 87 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${value}") 88 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${value}") 89 list(APPEND LIBCXX_COMPILE_FLAGS ${value}) 90 list(APPEND LIBCXX_LINK_FLAGS ${value}) 107 list(APPEND LIBCXX_COMPILE_FLAGS ${value}) 108 list(APPEND LIBCXX_LINK_FLAGS ${value})
|
/external/smali/smali/src/main/antlr/ |
smaliTreeWalker.g | 226 $value = 0; 232 $value |= AccessFlags.getAccessFlag($ACCESS_SPEC.getText()).getValue(); 292 : integer_literal { $value = $integer_literal.value; } 293 | long_literal { $value = $long_literal.value; } 294 | short_literal { $value = $short_literal.value; } 295 | byte_literal { $value = $byte_literal.value; } 296 | float_literal { $value = Float.floatToRawIntBits($float_literal.value); } 297 | double_literal { $value = Double.doubleToRawLongBits($double_literal.value); } 298 | char_literal { $value = (int)$char_literal.value; } 299 | bool_literal { $value = $bool_literal.value?1:0; } [all...] |
/external/ltp/testcases/network/busy_poll/ |
busy_poll01.sh | 58 ROD_SILENT sysctl -q -w net.core.busy_read=$value 59 ROD_SILENT sysctl -q -w net.core.busy_poll=$value 61 tst_rhost_run -s -c "sysctl -q -w net.core.busy_read=$value" 62 tst_rhost_run -s -c "sysctl -q -w net.core.busy_poll=$value"
|
/system/extras/tests/workloads/ |
capture.sh | 66 (0035) x=$(convert $value $xmax $xscale);; 67 (0036) y=$(convert $value $ymax $yscale);;
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/dropSiteRootFiles/ |
index.php | 94 foreach($dropType as $value) {
95 $prefix=$typeToPrefix[$value];
98 <td width=\"30%\">$value</td>";
112 foreach($dropType as $value) {
113 $prefix=$typeToPrefix[$value];
117 <td align=left width=\"30%\"><b><a name=\"$value\"><font color=\"#FFFFFF\" face=\"Arial,Helvetica\">$value";
|
/external/protobuf/src/google/protobuf/compiler/javamicro/ |
javamicro_message_field.cc | 90 "public $message_name$ set$capitalized_name$($type$ value) {\n" 116 "$type$ value = new $type$();\n"); 127 "set$capitalized_name$(value);\n"); 173 "public $message_name$ set$capitalized_name$(int index, $type$ value) {\n" 180 "public $message_name$ add$capitalized_name$($type$ value) {\n" 202 "public $message_name$ set$capitalized_name$(int index, $type$ value) {\n" 209 "public $message_name$ add$capitalized_name$($type$ value) {\n" 249 "$type$ value = new $type$();\n"); 260 "add$capitalized_name$(value);\n");
|