HomeSort by relevance Sort by last modified time
    Searched refs:Value (Results 676 - 700 of 2613) sorted by null

<<21222324252627282930>>

  /external/clang/test/SemaTemplate/
operator-function-id-template.cpp 9 template<int Value, typename T> bool operator==(A<T>, A<T>);
  /external/jsilver/src/com/google/clearsilver/jsilver/values/
VariantValue.java 26 * @see Value
28 abstract class VariantValue extends Value {
36 protected abstract String value(); method in class:VariantValue
40 return TypeConverter.asBoolean(value());
45 String value = value(); local
46 return value == null ? EMPTY : value;
52 return TypeConverter.asNumber(value());
  /external/libweave/include/weave/test/
mock_device.h 46 const base::Value*(const std::string& component,
52 const base::Value& value,
83 const base::Value*(const std::string& name));
86 const base::Value& value,
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 80 // Otherwise, just return the character as its ascii value.
94 virtual Value *codegen() = 0;
103 Value *codegen() override;
112 Value *codegen() override;
124 Value *codegen() override;
136 Value *codegen() override;
385 static std::map<std::string, Value *> NamedValues;
387 Value *ErrorV(const char *Str) {
392 Value *NumberExprAST::codegen() {
396 Value *VariableExprAST::codegen()
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 86 // Otherwise, just return the character as its ascii value.
100 virtual Value *codegen() = 0;
109 Value *codegen() override;
118 Value *codegen() override;
130 Value *codegen() override;
142 Value *codegen() override;
391 static std::map<std::string, Value *> NamedValues;
396 Value *ErrorV(const char *Str) {
416 Value *NumberExprAST::codegen() {
420 Value *VariableExprAST::codegen()
    [all...]
  /external/llvm/include/llvm/Analysis/
GlobalsModRef.h 48 DenseMap<const Value *, const GlobalValue *> AllocsForIndirectGlobals;
63 DeletionCallbackHandle(GlobalsAAResult &GAR, Value *V)
106 bool AnalyzeUsesOfPointer(Value *V,
113 bool isNonEscapingGlobalNoAlias(const GlobalValue *GV, const Value *V);
  /external/llvm/include/llvm/CodeGen/
GCStrategy.h 56 #include "llvm/IR/Value.h"
99 /// Return the name of the GC strategy. This is the value of the collector
120 /// If the value specified can be reliably distinguished, returns true for
124 virtual Optional<bool> isGCManagedPointer(const Value *V) const {
  /external/llvm/include/llvm/LTO/
LTOCodeGenerator.h 86 void setShouldInternalize(bool Value) { ShouldInternalize = Value; }
87 void setShouldEmbedUselists(bool Value) { ShouldEmbedUselists = Value; }
  /external/llvm/include/llvm/MC/
MCStreamer.h 86 virtual void emitAssignment(MCSymbol *Symbol, const MCExpr *Value);
117 virtual void emitAttribute(unsigned Attribute, unsigned Value);
130 virtual void emitThumbSet(MCSymbol *Symbol, const MCExpr *Value);
395 /// \brief Emit an assignment of \p Value to \p Symbol.
398 /// symbol = value
401 /// value in the current context. For the assembly streamer, this prints the
405 /// \param Value - The value for the symbol.
406 virtual void EmitAssignment(MCSymbol *Symbol, const MCExpr *Value);
424 /// \param DescValue - The value to set into the n_desc field
    [all...]
MCTargetAsmParser.h 125 void setAvailableFeatures(uint64_t Value) { AvailableFeatures = Value; }
128 void setParsingInlineAsm (bool Value) { ParsingInlineAsm = Value; }
  /external/llvm/lib/CodeGen/SelectionDAG/
SDNodeDbgValue.h 25 class Value;
33 SDNODE = 0, // value is the result of an expression
34 CONST = 1, // value is a constant
35 FRAMEIX = 2 // value is contents of a stack location
43 const Value *Const; // valid for constants
66 SDDbgValue(MDNode *Var, MDNode *Expr, const Value *C, uint64_t off,
96 // Returns the Value* for a constant
97 const Value *getConst() const { assert (kind==CONST); return u.Const; }
102 // Returns whether this is an indirect value.
116 // property. A SDDbgValue is invalid if the SDNode that produces the value i
    [all...]
  /external/llvm/lib/MC/
MCNullStreamer.cpp 36 void EmitGPRel32Value(const MCExpr *Value) override {}
  /external/llvm/lib/Transforms/ObjCARC/
PtrState.h 23 #include "llvm/IR/Value.h"
62 /// pair all on the known same pointer value can be eliminated, regardless
182 void HandlePotentialUse(BasicBlock *BB, Instruction *Inst, const Value *Ptr,
184 bool HandlePotentialAlterRefCount(Instruction *Inst, const Value *Ptr,
200 void HandlePotentialUse(Instruction *Inst, const Value *Ptr,
203 bool HandlePotentialAlterRefCount(Instruction *Inst, const Value *Ptr,
  /external/pdfium/fpdfsdk/src/jsapi/
fxjs_v8_embeddertest.cpp 29 v8::Local<v8::Value> fred = FXJS_GetObjectElement(isolate(), This, L"fred");
  /external/proguard/src/proguard/evaluation/value/
InitialValueFactory.java 21 package proguard.evaluation.value;
26 * This value factory creates initial values for fields and array elements,
27 * with the help of a given value factory. Note that this class itself doesn't
39 * @param valueFactory the value factory that will actually create the
49 * Creates an initial value (0, 0L, 0.0f, 0.0, null) of the given type.
51 public Value createValue(String type)
  /external/proguard/src/proguard/preverify/
CodePreverifier.java 32 import proguard.evaluation.value.*;
274 Value value = variables.getValue(index); local
279 if (value != null &&
286 if (value.isCategory2())
302 Value value = variables.getValue(index); local
303 Value producerValue = variables.getProducerValue(index);
308 if (value != null &&
317 value,
356 Value value = stack.getTop(index); local
375 Value value = stack.getTop(index); local
    [all...]
  /external/v8/src/extensions/
gc-extension.cc 19 void GCExtension::GC(const v8::FunctionCallbackInfo<v8::Value>& args) {
gc-extension.h 21 static void GC(const v8::FunctionCallbackInfo<v8::Value>& args);
  /external/v8/test/cctest/
print-extension.cc 39 void PrintExtension::Print(const v8::FunctionCallbackInfo<v8::Value>& args) {
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_InvTransformDequant_LumaDC.c 57 * Return Value:
73 OMX_S32 m1[4][4], m2[4][4], Value;
126 Value = (m2[j][i] * V + (1 << (1 - QPer))) >> (2 - QPer);
130 Value = m2[j][i] * V * (1 << (QPer - 2));
133 pDst[j * 4 + i] = (OMX_S16) Value;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
got_prel.d 8 Offset Info Type Sym.Value Sym. Name
12 Offset Info Type Sym.Value Sym. Name
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-i386/
combreloc.d 9 Offset Info Type Sym.Value Sym. Name
16 Offset Info Type Sym.Value Sym. Name
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-m68k/
tls-gd-1.d 7 Tag Type Name/Value
19 Offset Info Type Sym.Value Sym. Name \+ Addend
tls-gd-2.d 7 Tag Type Name/Value
20 Offset Info Type Sym.Value Sym. Name \+ Addend
tls-gd-ie-1.d 7 Tag Type Name/Value
20 Offset Info Type Sym.Value Sym. Name \+ Addend

Completed in 563 milliseconds

<<21222324252627282930>>