HomeSort by relevance Sort by last modified time
    Searched defs:lvalue (Results 1 - 25 of 29) sorted by null

1 2

  /external/jetty/src/java/org/eclipse/jetty/servlet/
Invoker.java 95 String lvalue=value.toLowerCase(Locale.ENGLISH); local
98 _nonContextServlets=value.length()>0 && lvalue.startsWith("t");
102 _verbose=value.length()>0 && lvalue.startsWith("t");
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_main.c 148 long long lvalue = (long long)value; local
149 lvalue = MIN2(lvalue, ((long long)1 << (type.width - 1)) - 1);
152 *((int8_t *)dst + index) = (int8_t)lvalue;
155 *((int16_t *)dst + index) = (int16_t)lvalue;
158 *((int32_t *)dst + index) = (int32_t)lvalue;
161 *((int64_t *)dst + index) = (int64_t)lvalue;
168 unsigned long long lvalue = (long long)value; local
169 lvalue = MIN2(lvalue, ((unsigned long long)1 << type.width) - 1)
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/personalization/
UserHistoryDictionaryTestsHelper.java 137 long lvalue = Math.abs((long)value); local
138 while (lvalue > 0) {
139 builder.append(CHARACTERS[(int)(lvalue % lengthOfChars)]);
140 lvalue /= lengthOfChars;
  /art/runtime/interpreter/
unstarted_runtime_test.cc 813 constexpr uint64_t lvalue = UINT64_C(0x3fe0c152382d7365); local
814 tmp->SetVRegLong(0, static_cast<int64_t>(lvalue));
832 constexpr uint64_t lvalue = UINT64_C(0x3fe0c152382d7365); local
833 tmp->SetVRegLong(0, static_cast<int64_t>(lvalue));
  /external/iproute2/tc/
em_meta.c 354 PARSE_ERR(arg, "lvalue and rvalue are not compatible.");
364 unsigned long lvalue = 0, rvalue = 0; local
376 a = parse_object(args, args, &meta_hdr.left, &lvalue, NULL);
408 dump_value(n, TCA_EM_META_LVALUE, lvalue, &meta_hdr.left);
  /external/libbrillo/brillo/glib/
object.h 40 element_type*& lvalue() { function in class:brillo::details::ResetHelper
54 // The Resetter() function return a temporary object containing an lvalue of
56 // destructs, the associated scoped pointer is reset with the lvalue. It is of
65 // function(Resetter(x).lvalue());
  /external/ppp/pppd/plugins/radius/
avpair.c 77 vp->lvalue = len;
80 vp->lvalue = strlen((char *) pval);
90 vp->lvalue = * (UINT4 *) pval;
158 UINT4 lvalue; local
227 pair->lvalue = attrlen;
233 memcpy ((char *) &lvalue, (char *) ptr,
235 pair->lvalue = ntohl (lvalue);
268 UINT4 lvalue; local
322 pair->lvalue = vlen
    [all...]
sendserver.c 37 UINT4 lvalue; local
65 length = vp->lvalue;
77 lvalue = htonl(vp->lvalue);
78 memcpy(buf, (char *) &lvalue, sizeof(UINT4));
93 length = vp->lvalue;
133 length = vp->lvalue;
158 length = vp->lvalue;
168 lvalue = htonl (vp->lvalue);
    [all...]
radiusclient.h 333 UINT4 lvalue; member in struct:value_pair
  /external/clang/test/SemaCXX/
expression-traits.cpp 29 // basic.lval/1 Every expression is either an lvalue or an rvalue.
34 // an lvalue.
39 static_assert(__is_lvalue_expr(expr), "should be an lvalue"); \
43 static_assert(!__is_rvalue_expr(expr), "should be an lvalue"); \
140 // (8.3.2, 8.5.3), ... the expression is an lvalue.
149 // 5.1/2 A string literal is an lvalue; all other
218 // expression. ...The result is an lvalue if the entity is
253 // entity denoted by the identifier. The result is an lvalue if
266 // member. The result is an lvalue if the member is a static
280 // expr.call/10: A function call is an lvalue if and only if th
364 Class lvalue; local
506 Class lvalue; local
    [all...]
  /system/tools/aidl/
ast_java.h 150 Variable* lvalue; member in struct:android::aidl::java::Assignment
154 Assignment(Variable* lvalue, Expression* rvalue);
155 Assignment(Variable* lvalue, Expression* rvalue, const Type* cast);
181 Expression* lvalue; member in struct:android::aidl::java::Comparison
185 Comparison(Expression* lvalue, const std::string& op, Expression* rvalue);
234 Variable* lvalue = nullptr; member in struct:android::aidl::java::VariableDeclaration
238 VariableDeclaration(Variable* lvalue);
239 VariableDeclaration(Variable* lvalue, Expression* rvalue,
  /external/clang/lib/CodeGen/
CGAtomic.cpp 40 LValue LVal;
43 AtomicInfo(CodeGenFunction &CGF, LValue &lvalue)
46 assert(!lvalue.isGlobalReg());
48 if (lvalue.isSimple()) {
49 AtomicTy = lvalue.getType();
71 if (lvalue.getAlignment().isZero())
72 lvalue.setAlignment(AtomicAlign);
74 LVal = lvalue;
75 } else if (lvalue.isBitField())
693 LValue lvalue = MakeAddrLValue(Ptr, AtomicTy); local
    [all...]
CGDecl.cpp 602 const LValue &destLV, const Expr *init) {
622 LValue srcLV = CGF.EmitLValue(srcExpr);
653 LValue &lvalue,
655 lvalue.setAddress(CGF.emitBlockByrefAddress(lvalue.getAddress(), var));
659 LValue lvalue, bool capturedByInit) {
660 Qualifiers::ObjCLifetime lifetime = lvalue.getObjCLifetime();
664 drillIntoBlockVariable(*this, lvalue, cast<VarDecl>(D))
665 EmitStoreThroughLValue(RValue::get(value), lvalue, true); local
1299 EmitAtomicInit(const_cast<Expr*>(init), lvalue); local
    [all...]
CGObjC.cpp 149 LValue LV = MakeAddrLValue(
161 LValue KeyLV = MakeAddrLValue(
169 LValue ValueLV = MakeAddrLValue(
356 LValue lvalue = EmitLValue(lvalueExpr); local
357 llvm::Value *result = EmitARCLoadWeakRetained(lvalue.getAddress());
554 LValue lvalue, QualType type);
639 /// lvalue-to-rvalue expressions.
1356 LValue lvalue variable
2827 LValue lvalue = EmitLValue(e->getLHS()); local
2844 LValue lvalue = EmitLValue(e->getLHS()); local
    [all...]
CGExpr.cpp 172 // FIXME: This function should take an LValue as an argument.
189 LValue LV = MakeAddrLValue(Location, E->getType());
349 LValue CodeGenFunction::
369 LValue RefTempDst = MakeAddrLValue(Object, M->getType(),
438 LValue LV = MakeAddrLValue(Object, E->getType(),
442 "materialized temporary field is not a simple lvalue");
461 // Emit the expression as an lvalue.
462 LValue LV = EmitLValue(E);
747 EmitComplexPrePostIncDec(const UnaryOperator *E, LValue LV,
771 // Store the updated result through the lvalue
1269 LValue lvalue = local
3942 LValue lvalue = MakeAddrLValue(addr, type, AlignmentSource::Decl); local
    [all...]
  /prebuilts/devtools/tools/lib/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/m2/repository/jfree/jfreechart/1.0.9/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/m2/repository/net/sourceforge/htmlunit/htmlunit-core-js/2.14/
htmlunit-core-js-2.14.jar 
  /prebuilts/tools/common/m2/repository/org/mozilla/rhino/1.7R3/
rhino-1.7R3.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/jetty/jetty-util/8.1.14.v20131031/
jetty-util-8.1.14.v20131031.jar 
  /external/guice/extensions/struts2/lib/
jetty-6.1.0.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.server_6.1.23.v201004211559.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/groovy/groovy-all/2.3.6/
groovy-all-2.3.6.jar 
  /prebuilts/tools/common/m2/repository/net/sourceforge/saxon/saxon/9.1.0.8/
saxon-9.1.0.8.jar 

Completed in 454 milliseconds

1 2