/external/clang/test/CXX/temp/temp.param/ |
p2.cpp | 12 template<typename T, typename T::type Value> struct Y0; 13 template<typename T, typename X<T>::type Value> struct Y1; 16 template<static int Value> struct Z; // FIXME: expect an error
|
/external/deqp/framework/delibs/decpp/ |
deMeta.hpp | 47 Value = !Cond 56 Value = false 65 Value = true
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/ |
FunctionExecutor.java | 19 import com.google.clearsilver.jsilver.values.Value; 31 Value executeFunction(String functionName, Value... args);
|
/external/libbrillo/brillo/ |
value_conversion.cc | 22 bool FromValue(const base::Value& in_value, 31 bool FromValue(const base::Value& in_value, 40 std::unique_ptr<base::Value> ToValue(int value) { 41 return std::unique_ptr<base::Value>{new base::FundamentalValue{value}}; 44 std::unique_ptr<base::Value> ToValue(bool value) { 45 return std::unique_ptr<base::Value>{new base::FundamentalValue{value}}; [all...] |
/external/llvm/include/llvm/Analysis/ |
Loads.h | 27 /// from this value cannot trap. If it is not obviously safe to load from the 30 bool isSafeToLoadUnconditionally(Value *V, Instruction *ScanFrom, 38 /// the instruction before ScanFrom) checking to see if we have the value at 40 /// instructions. If the value is available, return it. 43 /// value would be live through. If we scanned the entire block and didn't 54 Value *FindAvailableLoadedValue(Value *Ptr, BasicBlock *ScanBB,
|
VectorUtils.h | 31 class Value; 72 Value *stripGetElementPtr(Value *Ptr, ScalarEvolution *SE, Loop *Lp); 74 /// \brief If a value has only one user that is a CastInst, return it. 75 Value *getUniqueCastUse(Value *Ptr, Loop *Lp, Type *Ty); 79 Value *getStrideFromPointer(Value *Ptr, ScalarEvolution *SE, Loop *Lp); 81 /// \brief Given a vector and an element number, see if the scalar value is 84 Value *findScalarElement(Value *V, unsigned EltNo) [all...] |
/external/llvm/include/llvm/Transforms/Utils/ |
GlobalStatus.h | 16 class Value; 45 /// This global is stored to, but only its initializer and one other value 46 /// is ever stored to it. If this global isStoredOnce, we track the value 56 /// If only one value (besides the initializer constant) is ever stored to 57 /// this global, keep track of what value it is. 58 Value *StoredOnceValue; 76 static bool analyzeGlobal(const Value *V, GlobalStatus &GS);
|
/external/llvm/tools/llvm-diff/ |
DiffConsumer.h | 26 class Value; 37 virtual void enterContext(Value *Left, Value *Right) = 0; 58 DiffContext(Value *L, Value *R) 60 Value *L; 61 Value *R; 64 DenseMap<Value*,unsigned> LNumbering; 65 DenseMap<Value*,unsigned> RNumbering; 73 void printValue(Value *V, bool isL) [all...] |
/external/skia/experimental/SkV8Example/ |
Path2DBuilder.h | 28 static void ConstructPath(const v8::FunctionCallbackInfo<v8::Value>& args); 34 static void ClosePath(const v8::FunctionCallbackInfo<v8::Value>& args); 35 static void MoveTo(const v8::FunctionCallbackInfo<v8::Value>& args); 36 static void LineTo(const v8::FunctionCallbackInfo<v8::Value>& args); 38 const v8::FunctionCallbackInfo<v8::Value>& args); 39 static void BezierCurveTo(const v8::FunctionCallbackInfo<v8::Value>& args); 40 static void Arc(const v8::FunctionCallbackInfo<v8::Value>& args); 41 static void Rect(const v8::FunctionCallbackInfo<v8::Value>& args); 42 static void Oval(const v8::FunctionCallbackInfo<v8::Value>& args); 43 static void ConicTo(const v8::FunctionCallbackInfo<v8::Value>& args) [all...] |
/external/llvm/include/llvm/IR/ |
ValueHandle.h | 1 //===- ValueHandle.h - Value Smart Pointer classes --------------*- C++ -*-===// 19 #include "llvm/IR/Value.h" 36 /// \brief This is the common base class of value handles. 38 /// ValueHandle's are smart pointers to Value's that have special behavior when 39 /// the value is deleted or ReplaceAllUsesWith'd. See the specific handles 42 friend class Value; 68 Value* V; 73 ValueHandleBase(HandleBaseKind Kind, Value *V) 84 Value *operator=(Value *RHS) 267 static const bool value = true; member in struct:llvm::isPodLike [all...] |
IRBuilder.h | 236 /// filled in with the null terminated string value specified. The new global 242 /// \brief Get a constant value representing either true or false. 247 /// \brief Get the constant value for i1 true. 252 /// \brief Get the constant value for i1 false. 257 /// \brief Get a constant 8-bit value. 262 /// \brief Get a constant 16-bit value. 267 /// \brief Get a constant 32-bit value. 272 /// \brief Get a constant 64-bit value. 277 /// \brief Get a constant N-bit value, zero extended or truncated from 278 /// a 64-bit value [all...] |
/external/llvm/include/llvm/ADT/ |
Statistic.h | 41 volatile llvm::sys::cas_flag Value; 44 llvm::sys::cas_flag getValue() const { return Value; } 51 Value = 0; Initialized = false; 54 // Allow use of this class as the value itself. 55 operator unsigned() const { return Value; } 59 Value = Val; 65 // atomic operation to update the value safely in the presence of 66 // concurrent accesses, but not to read the return value, so the 67 // return value is not thread safe. 68 sys::AtomicIncrement(&Value); [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/functions/numeric/ |
AbsFunction.java | 20 import com.google.clearsilver.jsilver.values.Value; 21 import static com.google.clearsilver.jsilver.values.Value.literalConstant; 26 * Returns the absolute value of the numeric expressions. 31 * @param args Single numeric value 32 * @return Absolute value 34 public Value execute(Value... args) { 35 Value arg = args[0];
|
/external/libchrome/base/json/ |
json_value_converter.cc | 11 const base::Value& value, int* field) const { 12 return value.GetAsInteger(field); 16 const base::Value& value, std::string* field) const { 17 return value.GetAsString(field); 21 const base::Value& value, string16* field) const { 22 return value.GetAsString(field); 26 const base::Value& value, double* field) const [all...] |
/external/llvm/unittests/ADT/ |
ilistTest.cpp | 21 int Value; 24 Node(int Value) : Value(Value) {} 26 ~Node() { Value = -1; } 32 EXPECT_EQ(1, List.back().Value); 37 EXPECT_EQ(2, List.back().Value); 38 EXPECT_EQ(2, List.getNextNode(List.front())->Value); 39 EXPECT_EQ(1, List.getPrevNode(List.back())->Value); 42 EXPECT_EQ(2, ConstList.back().Value); [all...] |
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
nv50_ir_build_util.h | 49 // scratch value for a single assignment: 52 inline Instruction *mkOp(operation, DataType, Value *); 53 Instruction *mkOp1(operation, DataType, Value *, Value *); 54 Instruction *mkOp2(operation, DataType, Value *, Value *, Value *); 55 Instruction *mkOp3(operation, DataType, Value *, Value *, Value *, Value *) [all...] |
/art/runtime/base/ |
hash_map.h | 30 template <class Key, class Value> 31 size_t operator()(const std::pair<Key, Value>& pair) const { 38 template <class Key, class Value> 39 bool operator()(const std::pair<Key, Value>& a, const std::pair<Key, Value>& b) const { 42 template <class Key, class Value, class Element> 43 bool operator()(const std::pair<Key, Value>& a, const Element& element) const { 51 template <class Key, class Value, class EmptyFn, 53 class Alloc = std::allocator<std::pair<Key, Value>>> 54 class HashMap : public HashSet<std::pair<Key, Value>, [all...] |
/external/llvm/lib/IR/ |
IntrinsicInst.cpp | 34 static Value *CastOperand(Value *C) { 41 Value *DbgInfoIntrinsic::StripCast(Value *C) { 42 if (Value *CO = CastOperand(C)) { 46 if (Value *CO = CastOperand(GV->getInitializer())) 52 static Value *getValueImpl(Value *Op) { 57 // When the value goes to null, it gets replaced by an empty MDNode. 66 Value *DbgDeclareInst::getAddress() const [all...] |
/external/llvm/lib/Target/Mips/MCTargetDesc/ |
MipsAsmBackend.cpp | 32 // Prepare value for the target space for it 33 static unsigned adjustFixupValue(const MCFixup &Fixup, uint64_t Value, 63 // address range. Forcing a signed division because Value can be negative. 64 Value = (int64_t)Value / 4; 65 // We now check if Value can be encoded as a 16-bit signed immediate. 66 if (!isInt<16>(Value) && Ctx) { 72 // Forcing a signed division because Value can be negative. 73 Value = (int64_t)Value / 4 [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/ |
armVCM4P10_UnpackBlock4x4_s.s | 49 Value RN 4 64 MOV Value, #0 ;// Initialize the zero value 65 MOV Value2, #0 ;// Initialize the zero value 68 STRD Value, [pDst, #0] ;// pDst[0] = pDst[1] = pDst[2] = pDst[3] = 0 69 STRD Value, [pDst, #8] ;// pDst[4] = pDst[5] = pDst[6] = pDst[7] = 0 70 STRD Value, [pDst, #16] ;// pDst[8] = pDst[9] = pDst[10] = pDst[11] = 0 71 STRD Value, [pDst, #24] ;// pDst[12] = pDst[13] = pDst[14] = pDst[15] = 0 80 ;// Next, to compute the offset, where the unpacked value needs to be stored, 88 LDRBNE Value, [pSrc], #2 [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/ |
armVCM4P10_UnpackBlock4x4_s.s | 49 Value RN 4 64 MOV Value, #0 ;// Initialize the zero value 65 MOV Value2, #0 ;// Initialize the zero value 68 STRD Value, [pDst, #0] ;// pDst[0] = pDst[1] = pDst[2] = pDst[3] = 0 69 STRD Value, [pDst, #8] ;// pDst[4] = pDst[5] = pDst[6] = pDst[7] = 0 70 STRD Value, [pDst, #16] ;// pDst[8] = pDst[9] = pDst[10] = pDst[11] = 0 71 STRD Value, [pDst, #24] ;// pDst[12] = pDst[13] = pDst[14] = pDst[15] = 0 80 ;// Next, to compute the offset, where the unpacked value needs to be stored, 88 LDRBNE Value, [pSrc], #2 [all...] |
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/ |
UT_sampler.java | 39 b.setMinification(Sampler.Value.NEAREST); 40 b.setMagnification(Sampler.Value.NEAREST); 41 b.setWrapS(Sampler.Value.CLAMP); 42 b.setWrapT(Sampler.Value.CLAMP); 49 b.setMinification(Sampler.Value.LINEAR_MIP_LINEAR); 53 b.setMagnification(Sampler.Value.LINEAR); 57 b.setWrapS(Sampler.Value.WRAP); 61 b.setWrapT(Sampler.Value.WRAP); 85 _RS_ASSERT("minification.getMagnification() == Sampler.Value.NEAREST", 86 minification.getMagnification() == Sampler.Value.NEAREST) [all...] |
/frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/ |
UT_sampler.java | 39 b.setMinification(Sampler.Value.NEAREST); 40 b.setMagnification(Sampler.Value.NEAREST); 41 b.setWrapS(Sampler.Value.CLAMP); 42 b.setWrapT(Sampler.Value.CLAMP); 49 b.setMinification(Sampler.Value.LINEAR_MIP_LINEAR); 53 b.setMagnification(Sampler.Value.LINEAR); 57 b.setWrapS(Sampler.Value.WRAP); 61 b.setWrapT(Sampler.Value.WRAP); 85 _RS_ASSERT("minification.getMagnification() == Sampler.Value.NEAREST", 86 minification.getMagnification() == Sampler.Value.NEAREST) [all...] |
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/ |
UT_sampler.java | 39 b.setMinification(Sampler.Value.NEAREST); 40 b.setMagnification(Sampler.Value.NEAREST); 41 b.setWrapS(Sampler.Value.CLAMP); 42 b.setWrapT(Sampler.Value.CLAMP); 49 b.setMinification(Sampler.Value.LINEAR_MIP_LINEAR); 53 b.setMagnification(Sampler.Value.LINEAR); 57 b.setWrapS(Sampler.Value.WRAP); 61 b.setWrapT(Sampler.Value.WRAP); 85 _RS_ASSERT("minification.getMagnification() == Sampler.Value.NEAREST", 86 minification.getMagnification() == Sampler.Value.NEAREST) [all...] |
/frameworks/base/media/mca/filterfw/native/core/ |
value.cpp | 21 #include "value.h" 34 POD GetPODValue(Value value) { 35 return value.type == TYPEID ? *reinterpret_cast<POD*>(value.value) : POD(); 39 PTR GetPtrValue(Value value) { 40 return value.type == TYPEID ? reinterpret_cast<PTR>(value.value) : NULL [all...] |