Searched refs:Value (Results 51 - 75 of 3761) sorted by relevance

1234567891011>>

/external/jsilver/src/com/google/clearsilver/jsilver/functions/operators/
H A DNotEqualFunction.java20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
28 public Value execute(Value... args) {
29 Value left = args[0];
30 Value right = args[1];
H A DNumericAddFunction.java20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
28 public Value execute(Value... args) {
29 Value left = args[0];
30 Value right = args[1];
H A DNumericEqualFunction.java20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
28 public Value execute(Value... args) {
29 Value left = args[0];
30 Value right = args[1];
H A DNumericNotEqualFunction.java20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
28 public Value execute(Value... args) {
29 Value left = args[0];
30 Value right = args[1];
H A DOrFunction.java20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
28 public Value execute(Value... args) {
29 Value left = args[0];
30 Value right = args[1];
/external/jsilver/src/com/google/clearsilver/jsilver/functions/string/
H A DFindFunction.java20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
33 public Value execute(Value... args) {
34 Value fullStringValue = args[0];
35 Value subStringValue = args[1];
/external/llvm/lib/Target/NVPTX/
H A DNVPTXUtilities.h20 #include "llvm/IR/Value.h"
37 bool isTexture(const llvm::Value &);
38 bool isSurface(const llvm::Value &);
39 bool isSampler(const llvm::Value &);
40 bool isImage(const llvm::Value &);
41 bool isImageReadOnly(const llvm::Value &);
42 bool isImageWriteOnly(const llvm::Value &);
43 bool isImageReadWrite(const llvm::Value &);
44 bool isManaged(const llvm::Value &);
46 std::string getTextureName(const llvm::Value
[all...]
/external/chromium_org/tools/gn/
H A Dscope_per_file_provider.cc22 const Value* ScopePerFileProvider::GetProgrammaticValue(
47 const Value* ScopePerFileProvider::GetCurrentToolchain() {
49 current_toolchain_.reset(new Value(NULL,
55 const Value* ScopePerFileProvider::GetDefaultToolchain() {
57 default_toolchain_.reset(new Value(NULL,
64 const Value* ScopePerFileProvider::GetPythonPath() {
66 python_path_.reset(new Value(NULL,
72 const Value* ScopePerFileProvider::GetRootBuildDir() {
74 root_build_dir_.reset(new Value(NULL, DirectoryWithNoLastSlash(
80 const Value* ScopePerFileProvide
[all...]
H A Dfunction_process_file_template.cc60 Value RunProcessFileTemplate(Scope* scope,
62 const std::vector<Value>& args,
66 return Value();
73 return Value();
79 const Value& template_arg = args[1];
80 if (template_arg.type() == Value::STRING) {
86 return Value();
87 } else if (template_arg.type() == Value::LIST) {
89 return Value();
92 return Value();
[all...]
H A Dfunction_process_file_template_unittest.cc12 std::vector<Value> args;
14 Value sources(NULL, Value::LIST);
15 sources.list_value().push_back(Value(NULL, "//src/foo.txt"));
18 Value expansion(NULL, "1234{{source_name_part}}5678");
22 Value result = functions::RunProcessFileTemplate(
26 ASSERT_TRUE(result.type() == Value::LIST);
28 ASSERT_TRUE(result.list_value()[0].type() == Value::STRING);
35 std::vector<Value> args;
37 Value source
[all...]
/external/compiler-rt/lib/ubsan/
H A Dubsan_value.cc21 SIntMax Value::getSIntValue() const {
42 UIntMax Value::getUIntValue() const {
58 UIntMax Value::getPositiveIntValue() const {
69 FloatMax Value::getFloatValue() const {
77 __fp16 Value;
78 internal_memcpy(&Value, &Val, 4);
79 return Value;
83 float Value; local
84 internal_memcpy(&Value, &Val, 4);
85 return Value;
88 double Value; local
[all...]
/external/chromium_org/chrome/browser/ui/cocoa/applescript/
H A Dapple_event_util.h11 class Value;
17 NSAppleEventDescriptor* ValueToAppleEventDescriptor(const base::Value* value);
/external/chromium_org/components/policy/core/common/
H A Dmac_util.h16 class Value;
21 // Converts a CFPropertyListRef to the equivalent base::Value. CFDictionary
27 POLICY_EXPORT scoped_ptr<base::Value> PropertyToValue(
/external/chromium_org/extensions/browser/
H A Dextension_function_util.h12 class Value;
20 bool ReadOneOrMoreIntegers(base::Value* value, std::vector<int>* result);
/external/chromium_org/extensions/browser/value_store/
H A Dvalue_store_change.h27 const std::string& key, base::Value* old_value, base::Value* new_value);
36 const base::Value* old_value() const;
40 const base::Value* new_value() const;
46 const std::string& key, base::Value* old_value, base::Value* new_value);
49 const scoped_ptr<base::Value> old_value_;
50 const scoped_ptr<base::Value> new_value_;
/external/chromium_org/extensions/common/
H A Dvalue_counter.h13 class Value;
18 // Keeps a running count of Values, like map<Value, int>. Adding / removing
19 // values increments / decrements the count associated with a given Value.
22 // because there is no operator<() defined on Value, so we must iterate to find
23 // whether a Value is equal to an existing one.
30 // after. Does not take ownership of |value|. In the case where a Value equal
33 int Add(const base::Value& value);
37 int Remove(const base::Value& value);
40 int AddIfMissing(const base::Value& value);
45 explicit Entry(const base::Value
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DPrivateScriptRunner.h19 static v8::Handle<v8::Value> installClassIfNeeded(LocalFrame*, String className);
20 static v8::Handle<v8::Value> runDOMAttributeGetter(ScriptState*, ScriptState* scriptStateInUserScript, const char* className, const char* attributeName, v8::Handle<v8::Value> holder);
21 static bool runDOMAttributeSetter(ScriptState*, ScriptState* scriptStateInUserScript, const char* className, const char* attributeName, v8::Handle<v8::Value> holder, v8::Handle<v8::Value> v8Value);
22 static v8::Handle<v8::Value> runDOMMethod(ScriptState*, ScriptState* scriptStateInUserScript, const char* className, const char* methodName, v8::Handle<v8::Value> holder, int argc, v8::Handle<v8::Value> argv[]);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DHashTools.h30 struct Value { struct in namespace:blink
36 const Value* findValue(register const char* str, register unsigned len);
/external/chromium_org/third_party/re2/util/
H A Dsparse_array.h99 template<typename Value>
161 inline iterator set(int i, Value v);
167 inline Value get(int i, Value defaultv) const;
175 inline iterator set_existing(int i, Value v);
179 inline iterator set_new(int i, Value v);
183 inline Value get_existing(int i) const;
232 template<typename Value>
233 SparseArray<Value>::SparseArray()
238 template<typename Value>
[all...]
/external/regex-re2/util/
H A Dsparse_array.h99 template<typename Value>
161 inline iterator set(int i, Value v);
167 inline Value get(int i, Value defaultv) const;
175 inline iterator set_existing(int i, Value v);
179 inline iterator set_new(int i, Value v);
183 inline Value get_existing(int i) const;
232 template<typename Value>
233 SparseArray<Value>::SparseArray()
237 template<typename Value>
[all...]
/external/chromium_org/extensions/renderer/
H A Druntime_custom_bindings.h22 void OpenChannelToExtension(const v8::FunctionCallbackInfo<v8::Value>& args);
25 void OpenChannelToNativeApp(const v8::FunctionCallbackInfo<v8::Value>& args);
28 void GetManifest(const v8::FunctionCallbackInfo<v8::Value>& args);
29 void GetExtensionViews(const v8::FunctionCallbackInfo<v8::Value>& args);
/external/chromium_org/third_party/skia/experimental/SkV8Example/
H A DBaseContext.h54 const PropertyCallbackInfo<Value>& info,
56 static void SetStyle(Local<String> name, Local<Value> value,
61 const PropertyCallbackInfo<Value>& info);
62 static void SetFillStyle(Local<String> name, Local<Value> value,
65 const PropertyCallbackInfo<Value>& info);
66 static void SetStrokeStyle(Local<String> name, Local<Value> value,
69 const PropertyCallbackInfo<Value>& info);
71 const PropertyCallbackInfo<Value>& info);
74 static void FillRect(const v8::FunctionCallbackInfo<Value>& args);
75 static void Stroke(const v8::FunctionCallbackInfo<Value>
[all...]
/external/llvm/include/llvm/Object/
H A DRelocVisitor.h31 int64_t Value; member in struct:llvm::object::RelocToApply
36 RelocToApply(int64_t Value, char Width) : Value(Value), Width(Width) {} argument
37 RelocToApply() : Value(0), Width(0) {}
50 uint64_t Value = 0) {
56 return visitELF_X86_64_64(R, Value);
58 return visitELF_X86_64_PC32(R, Value, SecAddr);
60 return visitELF_X86_64_32(R, Value);
62 return visitELF_X86_64_32S(R, Value);
215 visitELF_386_32(RelocationRef R, uint64_t Value) argument
220 visitELF_386_PC32(RelocationRef R, uint64_t Value, uint64_t SecAddr) argument
232 visitELF_X86_64_64(RelocationRef R, uint64_t Value) argument
236 visitELF_X86_64_PC32(RelocationRef R, uint64_t Value, uint64_t SecAddr) argument
243 visitELF_X86_64_32(RelocationRef R, uint64_t Value) argument
248 visitELF_X86_64_32S(RelocationRef R, uint64_t Value) argument
255 visitELF_PPC64_ADDR32(RelocationRef R, uint64_t Value) argument
261 visitELF_PPC64_ADDR64(RelocationRef R, uint64_t Value) argument
268 visitELF_PPC_ADDR32(RelocationRef R, uint64_t Value) argument
275 visitELF_MIPS_32(RelocationRef R, uint64_t Value) argument
282 visitELF_MIPS_64(RelocationRef R, uint64_t Value) argument
290 visitELF_AARCH64_ABS32(RelocationRef R, uint64_t Value) argument
301 visitELF_AARCH64_ABS64(RelocationRef R, uint64_t Value) argument
307 visitELF_390_32(RelocationRef R, uint64_t Value) argument
318 visitELF_390_64(RelocationRef R, uint64_t Value) argument
323 visitELF_SPARC_32(RelocationRef R, uint32_t Value) argument
328 visitELF_SPARCV9_32(RelocationRef R, uint64_t Value) argument
333 visitELF_SPARCV9_64(RelocationRef R, uint64_t Value) argument
338 visitELF_ARM_ABS32(RelocationRef R, uint64_t Value) argument
[all...]
/external/skia/experimental/SkV8Example/
H A DBaseContext.h54 const PropertyCallbackInfo<Value>& info,
56 static void SetStyle(Local<String> name, Local<Value> value,
61 const PropertyCallbackInfo<Value>& info);
62 static void SetFillStyle(Local<String> name, Local<Value> value,
65 const PropertyCallbackInfo<Value>& info);
66 static void SetStrokeStyle(Local<String> name, Local<Value> value,
69 const PropertyCallbackInfo<Value>& info);
71 const PropertyCallbackInfo<Value>& info);
74 static void FillRect(const v8::FunctionCallbackInfo<Value>& args);
75 static void Stroke(const v8::FunctionCallbackInfo<Value>
[all...]
/external/chromium_org/content/browser/gpu/
H A Dcompositor_util.h43 CONTENT_EXPORT base::Value* GetFeatureStatus();
44 CONTENT_EXPORT base::Value* GetProblems();
45 CONTENT_EXPORT base::Value* GetDriverBugWorkarounds();

Completed in 8761 milliseconds

1234567891011>>