| /external/ipsec-tools/src/racoon/ |
| vendorid.h | 96 const char *string; member in struct:vendor_id
|
| /external/jmonkeyengine/engine/src/android/jme3test/android/ |
| R.java | 39 public static final class string { class in class:R
|
| /external/jmonkeyengine/engine/src/core/com/jme3/asset/ |
| AssetKey.java | 46 protected String name; 47 protected transient String folder; 48 protected transient String extension; 50 public AssetKey(String name){ 58 protected static String getExtension(String name){ 73 protected static String getFolder(String name){ 81 public String getName() { 89 public String getExtension() 150 String string = parts[i]; local 165 String string = list.get(i); local [all...] |
| /external/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/ |
| LwjglSmoothingTimer.java | 193 * <code>toString</code> returns the string representation of this timer 200 * @return the string representation of this object. 203 public String toString() { 204 String string = super.toString(); local 205 string += "\nTime: " + oldTime; 206 string += "\nFPS: " + getFrameRate(); 207 return string;
|
| /external/kernel-headers/original/linux/ |
| moduleparam.h | 47 char *string; member in struct:kparam_string 86 /* Actually copy string: maxlen param is usually sizeof(string). */ 87 #define module_param_string(name, string, len, perm) \ 89 = { len, string }; \ 92 __MODULE_PARM_TYPE(name, "string")
|
| /external/libppp/src/ |
| chat.h | 67 } string[MAXABORTS]; member in struct:chat::__anon22796
|
| /external/mesa3d/src/gallium/auxiliary/gallivm/ |
| lp_bld_const.c | 438 * Build a zero-terminated constant string. 446 LLVMValueRef string = LLVMAddGlobal(gallivm->module, LLVMArrayType(i8, len), ""); local 447 LLVMSetGlobalConstant(string, TRUE); 448 LLVMSetLinkage(string, LLVMInternalLinkage); 449 LLVMSetInitializer(string, LLVMConstStringInContext(gallivm->context, str, len, TRUE)); 450 string = LLVMConstBitCast(string, LLVMPointerType(i8, 0)); 451 return string;
|
| /external/mesa3d/src/mapi/glapi/gen/ |
| glX_XML.py | 30 import sys, getopt, string namespace 355 """Return the length, as a string, of the variable-sized 464 In these cases the string 'X_GLXVendorPrivate' or
|
| glX_proto_send.py | 30 import sys, getopt, copy, string namespace 38 tmp = '%s_%s' % (tmp, string.lower(str[i:i+3])) 41 tmp = '%s_%s' % (tmp, string.lower(str[i])) 633 skip_condition = "(%s)" % (string.join( condition_list, ") && (" )) [all...] |
| glX_proto_size.py | 30 import sys, getopt, copy, string namespace 290 print ' compsize = __gl%s_size(%s);' % (f.name, string.join(f.count_parameter_list, ",")) 540 dst = p.string() 608 # size string for the variable length parameter(s). While
|
| /external/okhttp/src/main/java/com/squareup/okhttp/ |
| Response.java | 71 public String header(String name) { 75 public String header(String name, String defaultValue) { 76 String result = headers.get(name); 80 public List<String> headers(String name) { 84 public Set<String> headerNames() { 92 public String headerName(int index) 158 public String string() throws IOException { method in class:Response.Body [all...] |
| /external/open-vcdiff/src/ |
| varint_bigendian_test.cc | 19 #include <string.h> // strlen 20 #include <string> 29 typedef std::string string; typedef in class:open_vcdiff::__anon25726::VarintBETestCommon 50 string s_;
|
| vcdecoder_test.h | 20 #include <string> 28 // Those elements are provided as string members and can be modified or 32 typedef std::string string; typedef in class:open_vcdiff::VCDiffDecoderTest 81 // Assuming the length of the given string can be expressed as a VarintBE 86 // Assuming the length of the given string can be expressed as a one-byte 92 // Assuming the length of the given string can be expressed as a two-byte 98 // Assuming the length of the given string can be expressed as a two-byte 108 string delta_file_; 110 // This string is not populated during setup, but is used to receive th [all...] |
| /external/openfst/src/lib/ |
| properties.cc | 20 // string names of the properties. 269 bool string = true; local 277 string = false; 280 if (string) 407 // Property string names (indexed by bit position). 427 "string", "not string",
|
| /external/skia/src/animator/ |
| SkDisplayEvent.cpp | 35 SK_MEMBER_PROPERTY(key, String), // a single key (also last key pressed) 36 SK_MEMBER_PROPERTY(keys, String), // a single key or dash-delimited range of keys 38 SK_MEMBER(target, String), 219 input->string.set(meta.findString(name)); 238 SkString* string = value.fOperand.fString; local 239 const char* chars = string->c_str();
|
| /external/skia/src/xml/ |
| SkJS.cpp | 197 SkBool SkJS::ValueToString(jsval value, SkString* string) { 201 string->set(JS_GetStringBytes(str)); 211 SkString string; local 212 success = js.ValueToString(val, &string); 214 SkASSERT(strcmp(string.c_str(), "3.142857142857143") == 0); 225 success = js.ValueToString(val, &string);
|
| SkJSDisplayable.cpp | 234 SkString* string= NULL; local 257 info->getString(displayable, &string); 287 str = JS_NewStringCopyN(cx, string->c_str(), string->size()); 310 SkString string; local 335 string.set(JS_GetStringBytes(str)); 360 info->setString(displayable, &string);
|
| /external/smack/src/org/xbill/DNS/ |
| Header.java | 240 /** Converts the header's flags into a String */ 241 public String 247 sb.append(Flags.string(i)); 253 String 258 sb.append("opcode: " + Opcode.string(getOpcode())); 259 sb.append(", status: " + Rcode.string(newrcode)); 266 sb.append(Section.string(i) + ": " + getCount(i) + " "); 270 /** Converts the header into a String */ 271 public String
|
| Rcode.java | 105 /** Converts a numeric Rcode into a String */ 106 public static String 107 string(int i) { method in class:Rcode 111 /** Converts a numeric TSIG extended Rcode into a String */ 112 public static String 117 /** Converts a String representation of an Rcode into its numeric value */ 119 value(String s) {
|
| TypeBitmap.java | 87 public String 92 sb.append(Type.string(t));
|
| /external/v8/tools/ |
| js2c.py | 34 import os, re, sys, string namespace 89 def ParseValue(string): 90 string = string.strip() 91 if string.startswith('[') and string.endswith(']'): 92 return string.lstrip('[').rstrip(']').split() 94 return string 198 args = map(string.strip, macro_match.group(2).split(',')) 205 args = map(string.strip, python_match.group(2).split(',') [all...] |
| /frameworks/av/media/libmedia/ |
| MemoryLeakTrackUtil.cpp | 37 // Use the String-class below instead of String8 to allocate all memory 55 const char *string() const { function in struct:android::MyString8 161 write(fd, result.string(), result.size());
|
| /frameworks/base/media/jni/mediaeditor/ |
| VideoEditorJava.cpp | 76 // Get the error string. 320 jstring string = NULL; local 331 // Check if an object containing a string was specified. 334 // Retrieve the string object. 335 string = (jstring)pEnv->GetObjectField(object, stringFieldId); 342 // The string itself was specified. 343 string = (jstring)object; 346 // Check if the string could be retrieved. 347 if (NULL != string) 349 // Get a local copy of the string [all...] |
| /frameworks/base/tools/aapt/ |
| XMLNode.h | 88 String16 string; member in struct:XMLNode::attribute_entry
|
| /frameworks/wilhelm/tests/examples/ |
| xaVideoDecoderCapabilities.cpp | 19 #include <string.h> 57 // Use a table of [integer, string] entries to map an integer to a string 61 const char *string; member in struct:__anon32603 69 return table[i].string; 75 // Use a table of [integer, table] entries to map a pair of integers to a string 95 // Map a video codec and profile to string 158 // Map a video codec and level to string
|