/external/opencore/fileformats/mp3/parser/src/ |
imp3ff.cpp | 781 KeyVal.value.pWChar_value = (oscl_wchar*) AllocateKVPKeyArray(leavecode, ValueType, len); 782 oscl_strncpy(KeyVal.value.pWChar_value , (*(iFrame.back())).value.pWChar_value, len); 783 KeyVal.value.pWChar_value[len] = 0; 786 KeyVal.value.pChar_value = (char*) AllocateKVPKeyArray(leavecode, ValueType, len); 787 oscl_strncpy(KeyVal.value.pChar_value , (*(iFrame.back())).value.pChar_value, len); 788 KeyVal.value.pChar_value[len] = 0; 791 KeyVal.value.pUint8_value = (uint8*) AllocateKVPKeyArray(leavecode, ValueType, len); 792 oscl_memcpy(KeyVal.value.pUint8_value, (uint8*)(*(iFrame.back())).value.pUint8_value, len) [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/ |
regress-216320.js | 60 nid=formfield.value; 70 text=formfield.value; 80 date=formfield.value; 115 date=formfield.value; 174 band=form.BAND.options[form.BAND.selectedIndex].value; 186 stdt=adt1.value; 187 etdt=adt2.value; 277 ird1=form.IRD1.value; 278 ird2=form.IRD2.value; 279 ird3=form.IRD3.value; [all...] |
/external/skia/src/images/ |
fpdfemb.h | 112 // Return Value: 127 // Return Value: 141 // Return value: 160 // Return Value: 170 // Return Value: 186 // Return Value: 219 // Return Value: 233 // Return Value: 248 // Return value: 267 // Return Value [all...] |
/external/quake/quake/src/QW/client/ |
menu.c | 384 scr_viewsize.value += dir * 10; 385 if (scr_viewsize.value < 30) 386 scr_viewsize.value = 30; 387 if (scr_viewsize.value > 120) 388 scr_viewsize.value = 120; 389 Cvar_SetValue ("viewsize", scr_viewsize.value); 392 v_gamma.value -= dir * 0.05; 393 if (v_gamma.value < 0.5) 394 v_gamma.value = 0.5; 395 if (v_gamma.value > 1 [all...] |
/cts/tests/tests/database/src/android/database/cts/ |
CursorJoinerTest.java | 186 // For cursor1, value 1~7 result value as LEFT to cursor2 value '11' 195 // For cursor2, value 11~17 result a value as LEFT to cursor1 value '18' 203 // For cursor1 and cursor2, value 18~20 result a value as BOTH 215 * Return a converted decimal number string of input integer parameter 'value', 218 * @param value [all...] |
/dalvik/libcore/logging/src/main/java/java/util/logging/ |
Level.java | 36 * set of predefined logging levels, each associated with an integer value. 161 * The integer value indicating the level. 165 private final int value; field in class:Level 182 * level value. 187 * an integer value indicating the level. 197 * value and resource bundle name. 202 * an integer value indicating the level. 214 this.value = level; 250 * Gets the integer value indicating this level. 252 * @return this level's integer value [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/ |
IntVector.java | 124 * @param value Int to add to the list 126 public final void addElement(int value) 140 m_map[m_firstFree] = value; 148 * @param value Int to add to the list 150 public final void addElements(int value, int numberOfElements) 166 m_map[m_firstFree] = value; 198 * than the value it had previously. 200 * @param value Int to insert 203 public final void insertElementAt(int value, int at) 222 m_map[at] = value; [all...] |
/external/icu4c/test/intltest/ |
idnaconf.cpp | 185 /* Explain <xxxxx> tag to a native value 187 * Since <xxxxx> is always larger than the native value, 285 UnicodeString value; local 299 value.remove(); 303 // explain key:value 306 value.setTo(s,p+1).trim(); 308 if (value.compare(C_TOASCII, -1) == 0) { 310 } else if (value.compare(C_TOUNICODE, -1) == 0){ 314 if (value.compare(C_PASS, -1) == 0){ 316 } else if (value.compare(C_FAIL, -1) == 0) [all...] |
/external/srec/portable/src/ |
PFileSystem.c | 71 LCHAR* value = NULL; local 89 value = MALLOC(sizeof(LCHAR) * (ending - beginning + 1 + 1), MTAG); 90 if (value == NULL) 96 LSTRNCPY(value, beginning, ending - beginning + 1); 97 value[ending-beginning+1] = L('\0'); 98 CHKLOG(rc, lstrtrim(value)); 99 if (LSTRLEN(value) == 0) 101 FREE(value); 102 value = NULL; 106 CHKLOG(rc, arrayList->add(arrayList, value)); 278 PFileSystem* value; local [all...] |
/external/v8/src/ |
zone.h | 211 // typedef Value: the value type 213 // static const kNoValue: the dummy value used to initialize nodes 220 typedef typename Config::Value Value; 226 // Inserts the given key in this tree with the given value. Returns 263 Node(const Key& key, const Value& value) 265 value_(value), 269 Value value() { return value_; function in class:v8::internal::ZoneSplayTree::Node 288 Value& value() { return node_->value_; } function in class:v8::internal::ZoneSplayTree::Locator [all...] |
/external/v8/test/cctest/ |
test-log-stack-tracer.cc | 23 using v8::Value; 98 static v8::Handle<v8::Value> Trace(const v8::Arguments& args); 99 static v8::Handle<v8::Value> JSTrace(const v8::Arguments& args); 100 static v8::Handle<v8::Value> JSEntrySP(const v8::Arguments& args); 101 static v8::Handle<v8::Value> JSEntrySPLevel2(const v8::Arguments& args); 133 // CodeGenerator::GenerateGetFramePointer pushes EBP / RBP value 135 // they check that value is within Smi bounds. 142 v8::Handle<v8::Value> TraceExtension::Trace(const v8::Arguments& args) { 148 v8::Handle<v8::Value> TraceExtension::JSTrace(const v8::Arguments& args) { 160 v8::Handle<v8::Value> TraceExtension::JSEntrySP(const v8::Arguments& args) 219 env->Global()->Set(String::New(name), value); local [all...] |
/external/v8/tools/ |
splaytree.js | 66 * Inserts a node into the tree with the specified key and value if 68 * the value is inserted, it becomes the root of the tree. 71 * @param {*} value Value to insert into the tree. 73 goog.structs.SplayTree.prototype.insert = function(key, value) { 75 this.root_ = new goog.structs.SplayTree.Node(key, value); 84 var node = new goog.structs.SplayTree.Node(key, value); 147 * @return {goog.structs.SplayTree.Node} Node having the minimum key value. 162 * @return {goog.structs.SplayTree.Node} Node having the maximum key value. 177 * @return {goog.structs.SplayTree.Node} Node having the maximum key value tha [all...] |
/external/webkit/WebCore/bindings/v8/custom/ |
V8InjectedScriptHostCustom.cpp | 53 static void WeakReferenceCallback(v8::Persistent<v8::Value> object, void* parameter) 105 v8::Local<v8::Value> v = script->Run(); 109 v8::Handle<v8::Value> args[] = { 114 v8::Local<v8::Value> injectedScriptValue = v8::Function::Cast(*v)->Call(windowGlobal, 3, args); 119 v8::Handle<v8::Value> V8InjectedScriptHost::nodeForIdCallback(const v8::Arguments& args) 127 Node* node = host->nodeForId(args[0]->ToInt32()->Value()); 138 v8::Handle<v8::Value> V8InjectedScriptHost::pushNodePathToFrontendCallback(const v8::Arguments& args) 146 bool withChildren = args[1]->ToBoolean()->Value(); 147 bool selectInUI = args[2]->ToBoolean()->Value(); 155 v8::Handle<v8::Value> V8InjectedScriptHost::databaseForIdCallback(const v8::Arguments& args [all...] |
/external/webkit/WebCore/svg/ |
SVGPatternElement.cpp | 75 if (attr->value() == "userSpaceOnUse") 77 else if (attr->value() == "objectBoundingBox") 80 if (attr->value() == "userSpaceOnUse") 82 else if (attr->value() == "objectBoundingBox") 86 if (!SVGTransformable::parseTransformAttribute(patternTransforms, attr->value())) { 91 setXBaseValue(SVGLength(LengthModeWidth, attr->value())); 93 setYBaseValue(SVGLength(LengthModeHeight, attr->value())); 95 setWidthBaseValue(SVGLength(LengthModeWidth, attr->value())); 96 if (widthBaseValue().value(this) < 0.0) 97 document()->accessSVGExtensions()->reportError("A negative value for pattern attribute <width> is not allowed") [all...] |
/external/webkit/WebKit/gtk/webkit/ |
webkitwebhistoryitem.cpp | 79 static void webkit_web_history_item_set_property(GObject* object, guint prop_id, const GValue* value, GParamSpec* pspec); 81 static void webkit_web_history_item_get_property(GObject* object, guint prop_id, GValue* value, GParamSpec* pspec); 223 static void webkit_web_history_item_set_property(GObject* object, guint prop_id, const GValue* value, GParamSpec* pspec) 229 webkit_web_history_item_set_alternate_title(webHistoryItem, g_value_get_string(value)); 237 static void webkit_web_history_item_get_property(GObject* object, guint prop_id, GValue* value, GParamSpec* pspec) 243 g_value_set_string(value, webkit_web_history_item_get_title(webHistoryItem)); 246 g_value_set_string(value, webkit_web_history_item_get_alternate_title(webHistoryItem)); 249 g_value_set_string(value, webkit_web_history_item_get_uri(webHistoryItem)); 252 g_value_set_string(value, webkit_web_history_item_get_original_uri(webHistoryItem)); 255 g_value_set_double(value, webkit_web_history_item_get_last_visited_time(webHistoryItem)) [all...] |
/frameworks/base/awt/org/apache/harmony/awt/gl/font/ |
FontPeerImpl.java | 83 // italic angle value of this font peer 106 * Default value is true. 112 * has TrueType or Type1 type. Default value is FONT_TYPE_UNDEF. 223 * @param value true, if font peer was created from InputStream 225 public void setCreatedFromStream(boolean value){ 226 this.createdFromStream = value; 238 * @param value String representing font file name 240 public void setFontFileName(String value){ 241 this.tempFontFileName = value; 246 * Note, if glyph is absent in the font's glyphset - returned value [all...] |
/sdk/layoutlib_api/src/com/android/layoutlib/api/ |
ILayoutBridge.java | 60 * @param enumValueMap map attrName => { map enumFlagName => Integer value }. 83 * and the value is the resource value. 87 * value is the resource value. 118 * and the value is the resource value. 122 * value is the resource value. 150 * and the value is the resource value [all...] |
/system/core/libcutils/ |
atomic-android-arm.S | 60 * input: r0=value, r1=address 72 * output: r0 = old value 103 * output: r0 = old value 133 * input: r0=value, r1=address 134 * output: r0 = old value 166 * input: r0=value, r1=address 167 * output: r0 = old value 175 mov r4, r0 /* r4 = the value */ 182 and r1, r0, r4 /* r1 = new value */ 186 and r1, r0, r4 /* r1 = new value */ [all...] |
/dalvik/libcore/sql/src/main/java/java/sql/ |
Timestamp.java | 29 * capability of representing the SQL {@code TIMESTAMP} nanosecond value, in 30 * addition to the regular date/time value which has millisecond resolution. 32 * The {@code Timestamp} class consists of a regular date/time value, where only 33 * the integral seconds value is stored, plus a nanoseconds value where the 36 * The addition of the nanosecond value field to the {@code Timestamp} object 50 // The nanoseconds time value of the Timestamp 75 * which defines the nanosecond value of the timestamp specified 94 * by a supplied time value. 97 * a time value in the format of milliseconds since the Epoc [all...] |
/external/bluetooth/glib/docs/reference/glib/tmpl/ |
keyfile.sgml | 2 Key-value file parser 10 key-value pairs, which we call <firstterm>key files</firstterm> for 23 consists of groups of key-value pairs, interspersed with comments. 32 Name=Key File Example\tthis value shows\nescaping 34 # localized strings are stored in multiple key-value pairs 56 the end of the file. Each key-value pair must be contained in a group. 60 Key-value pairs generally have the form <literal>key=value</literal>, 62 <literal>key[locale]=value</literal>, with a locale identifier of the form 66 characters in value are escaped as \n, \t, \r, and \\, respectively. [all...] |
/external/opencore/doc/oscl_html/ |
classOscl__Rb__Tree.html | 3 <title> TemplateOscl_Rb_Tree< Key, Value, KeyOfValue, Compare, Alloc > class Reference</title> 9 <hr><h1>Oscl_Rb_Tree< Key, Value, KeyOfValue, Compare, Alloc > Class Template Reference<br> 14 <p>Inheritance diagram for Oscl_Rb_Tree< Key, Value, KeyOfValue, Compare, Alloc >: 15 <p><center><img src="classOscl__Rb__Tree.png" usemap="#Oscl_Rb_Tree< Key, Value, KeyOfValue, Compare, Alloc >_map" border="0" alt=""></center> 16 <map name="Oscl_Rb_Tree< Key, Value, KeyOfValue, Compare, Alloc >_map"> 23 <tr><td nowrap align=right valign=top>typedef Value </td><td valign=bottom><a class="el" href="classOscl__Rb__Tree.html#s1">value_type</a></td></tr> 29 Value >::link_type </td><td valign=bottom><a class="el" href="classOscl__Rb__Tree.html#s6">link_type</a></td></tr> 38 <tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="classOscl__Rb__Tree.html#a1">Oscl_Rb_Tree</a> (const Oscl_Rb_Tree< Key, Value, KeyOfValue, Compare, Alloc > &x)</td></tr> 40 <tr><td nowrap align=right valign=top>Oscl_Rb_Tree< Key, Value,<br> 41 KeyOfValue, Compare, Alloc > & </td><td valign=bottom><a class="el" href="classOscl__Rb__Tree.html#a3">operator=</a> (const Oscl_Rb_Tree< Key, Value, KeyOfValue, Compare, Alloc > &x)</td></tr [all...] |
/bionic/libc/bionic/ |
ldexp.c | 26 double value; member in union:__anon3 40 double value; member in union:__anon5 55 ew_u.value = (d); \ 65 gh_u.value = (d); \ 74 sh_u.value = (d); \ 76 (d) = sh_u.value; \
|
system_properties.c | 122 int __system_property_read(const prop_info *pi, char *name, char *value) 133 memcpy(value, pi->value, len + 1); 143 int __system_property_get(const char *name, char *value) 148 return __system_property_read(pi, 0, value); 150 value[0] = 0;
|
/bootable/recovery/edify/ |
README | 87 expression. Their value is the value of the last-evaluated 94 get_it() || "xxx" # returns value of get_it() if that value is 99 but the operator can be used anywhere. Its value is the value of
|
/cts/tools/dx-tests/src/dxc/junit/opcodes/areturn/jm/ |
T_areturn_7.j | 20 .field value Ljava/lang/Integer; 35 putfield dxc.junit.opcodes.areturn.jm.T_areturn_7.value Ljava/lang/Integer; 80 getfield dxc.junit.opcodes.areturn.jm.T_areturn_7.value Ljava/lang/Integer; 89 putfield dxc.junit.opcodes.areturn.jm.T_areturn_7.value Ljava/lang/Integer; 95 getfield dxc.junit.opcodes.areturn.jm.T_areturn_7.value Ljava/lang/Integer; 152 getfield dxc.junit.opcodes.areturn.jm.T_areturn_7.value Ljava/lang/Integer;
|