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

1 2

  /external/clang/test/Index/
file-refs.c 2 VALUE = 3
8 return x+glob_x+VALUE;
27 // CHECK: EnumConstantDecl=VALUE:2:3 (Definition)
28 // CHECK-NEXT: EnumConstantDecl=VALUE:2:3 (Definition) =[2:3 - 2:8]
29 // CHECK-NEXT: DeclRefExpr=VALUE:2:3 =[8:19 - 8:24]
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
JavaExpression.java 64 VALUE("Value") {
68 return call(Type.VALUE, "asVariableValue", expression, TemplateTranslator.DATA_CONTEXT);
70 return call(Type.VALUE, "asValue", expression);
114 // calls with no return value). Wraps the input expression with a
132 * The Java literal representing the type (e.g. "int", "boolean", "Value")
218 * and thus there is no return value.
243 public static JavaExpression string(String value) {
244 return new StringExpression(value);
249 private final String value;
    [all...]
  /external/webkit/Source/WebCore/html/parser/
create-html-entity-table 36 VALUE = 1
49 def convert_value_to_int(value):
50 assert(value[0] == "U")
51 assert(value[1] == "+")
52 return "0x" + value[2:]
130 convert_value_to_int(entry[VALUE])))
  /packages/apps/Settings/src/com/android/settings/
GoogleLocationSettingHelper.java 58 private static final String VALUE = "value";
81 * Get the current value for the 'Use value for location' setting.
90 c = resolver.query(GOOGLE_SETTINGS_CONTENT_URI, new String[] { VALUE }, NAME + "=?",
105 int value; local
107 value = Integer.parseInt(stringValue);
109 value = USE_LOCATION_FOR_SERVICES_NOT_SET;
111 return value;
115 * Change the value of the 'Use My Location' setting. This launches a GSF activity which ha
    [all...]
  /cts/tests/src/android/content/cts/
DummyProvider.java 58 public static final String VALUE = "value";
86 + NAME + " TEXT," + VALUE + " TEXT"+ ");");
106 db.insert(tbName, VALUE, values);
  /packages/experimental/AndroidVendorSecurityTool/src/com/android/vending/sectool/v1/
GoogleSettingsContract.java 40 * Common base for tables of name/value settings.
44 public static final String VALUE = "value";
47 String name, String value) {
52 values.put(VALUE, value);
81 * @return the corresponding value, or null if not present
84 String value = null; local
87 c = resolver.query(CONTENT_URI, new String[] { NameValueTable.VALUE },
89 if (c != null && c.moveToNext()) value = c.getString(0)
107 String value = getString(resolver, name); local
146 int value; local
162 long value; local
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
MessageTest.java 36 public static final int VALUE = 3;
280 bundle.putInt(KEY, VALUE);
287 assertEquals(VALUE, mMessage.getData().getInt(KEY));
318 bundle.putInt(KEY, VALUE);
328 assertEquals(VALUE, mMessage.getData().getInt(KEY));
  /frameworks/base/core/java/android/provider/
BrowserContract.java 44 * to specify that it is a sync adapter. The default value is false. If true
499 * Flag indicating that an item is a bookmark. A value of 1 indicates a bookmark, a value
521 * Key for a setting value.
526 * Value for a setting.
528 public static final String VALUE = "value";
541 cursor = context.getContentResolver().query(CONTENT_URI, new String[] { VALUE },
558 values.put(VALUE, enabled ? 1 : 0);
Contacts.java 129 * The value of this setting.
134 public static final String VALUE = "value";
206 Cursor cursor = cr.query(Settings.CONTENT_URI, new String[]{VALUE},
221 String value) {
230 values.put(VALUE, value);
    [all...]
CalendarContract.java 132 * to specify that it is a sync adapter. The default value is false. If set
298 * <P>Type: INTEGER (color value)</P>
474 // Create the content value
    [all...]
Settings.java 626 * Common base for tables of name/value settings.
630 public static final String VALUE = "value";
633 String name, String value) {
638 values.put(VALUE, value);
658 new String[] { Settings.NameValueTable.VALUE };
713 String value = b.getPairValue(); local
715 mValues.put(name, value);
717 return value;
736 String value = c.moveToNext() ? c.getString(0) : null; local
937 long value; local
2320 long value; local
    [all...]
  /external/jsilver/src/com/google/streamhtmlparser/impl/
HtmlParserImpl.java 70 private static final InternalState VALUE;
103 VALUE = InternalState.getInstanceHtml("VALUE");
135 private final CharacterRecorder value; field in class:HtmlParserImpl
141 // True iff InsertText() was called at the start of a URL attribute value.
158 value = new CharacterRecorder();
176 value = new CharacterRecorder(aHtmlParserImpl.value);
289 return (getState() == STATE_VALUE) ? value.getContent() : "";
302 // False when not inside an HTML attribute value
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsDatabaseHelper.java 417 public static final String VALUE = Data.DATA2;
2754 String value = cursor.getString(Upgrade303Query.DATA1); local
2790 String value = cursor.getString(Upgrade303Query.DATA1); local
4284 Object value = fromValues.get(fromKey); local
4335 String value = null; local
4351 setProperty(getWritableDatabase(), key, value); local
    [all...]
  /external/clang/lib/Sema/
SemaExpr.cpp 363 assert(!T.isNull() && "r-value conversion on typeless expression?");
369 // Create a load out of an ObjCProperty l-value, if necessary.
403 // If the lvalue has qualified type, the value has the unqualified
404 // version of the type of the lvalue; otherwise, the value has the
432 // First, convert to an r-value.
459 // value is converted to an int; otherwise, it is converted to an
497 // operand or a subexpression thereof the value contained in the
520 /// interfaces passed by value.
    [all...]
  /cts/tools/signature-tools/lib/
stringtemplate.jar 
  /external/collada/include/1.4/dom/
domTypes.h 237 FX_OPAQUE_ENUM_A_ONE, /**< When a transparent opaque attribute is set to A_ONE, it means the transparency information will be taken from the alpha channel of the color, texture, or parameter supplying the value. The value of 1.0 is opaque in this mode. */
238 FX_OPAQUE_ENUM_RGB_ZERO, /**< When a transparent opaque attribute is set to RGB_ZERO, it means the transparency information will be taken from the red, green, and blue channels of the color, texture, or parameter supplying the value. Each channel is modulated independently. The value of 0.0 is opaque in this mode. */
298 FX_SURFACE_FORMAT_HINT_RANGE_ENUM_SNORM, /**< Format is representing a decimal value that remains within the -1 to 1 range. Implimentation could be integer-fixedpoint or floats. */
299 FX_SURFACE_FORMAT_HINT_RANGE_ENUM_UNORM, /**< Format is representing a decimal value that remains within the 0 to 1 range. Implimentation could be integer-fixedpoint or floats. */
860 VALUE = 142,
    [all...]
  /prebuilt/sdk/14/
android.jar 
  /prebuilt/common/ecj/
ecj.jar 
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/12/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 

Completed in 2475 milliseconds

1 2