/external/webkit/Source/WebCore/platform/graphics/ca/win/ |
CACFLayerTreeHost.cpp | 43 #pragma comment(lib, "QuartzCore_debug") 45 #pragma comment(lib, "QuartzCore")
|
LegacyCACFLayerTreeHost.cpp | 42 #pragma comment(lib, "d3d9") 43 #pragma comment(lib, "d3dx9")
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/ca/win/ |
LayerTreeHostCAWin.cpp | 45 #pragma comment(lib, "WebKitQuartzCoreAdditions_debug") 47 #pragma comment(lib, "WebKitQuartzCoreAdditions")
|
/frameworks/av/media/libstagefright/ |
OggExtractor.cpp | 777 const char *comment = mVc.user_comments[i]; local 779 parseVorbisComment(mFileMeta, comment, commentLength); 780 //ALOGI("comment #%d: '%s'", i + 1, mVc.user_comments[i]); 785 const sp<MetaData> &fileMeta, const char *comment, size_t commentLength) 810 if (!strncasecmp(kMap[j].mTag, comment, tagLen) 811 && comment[tagLen] == '=') { 815 &comment[tagLen + 1], 818 if (!strcasecmp(&comment[tagLen + 1], "true")) { 822 fileMeta->setCString(kMap[j].mKey, &comment[tagLen + 1]);
|
/frameworks/base/tools/aapt/ |
XMLNode.h | 123 status_t appendComment(const String16& comment); 164 commentData(void *userData, const char *comment);
|
/packages/apps/Camera/jni/feature_stab/src/dbregtest/ |
PgmImage.cpp | 178 bool PgmImage::WritePGM(const std::string filename, const std::string comment) 196 out << format_header << "# " << comment << '\n' << m_w << " " << m_h << '\n' << m_colors << '\n'; 245 o << "Comment: " << im.m_comment << "\n";
|
/packages/apps/LegacyCamera/jni/feature_stab/src/dbregtest/ |
PgmImage.cpp | 178 bool PgmImage::WritePGM(const std::string filename, const std::string comment) 196 out << format_header << "# " << comment << '\n' << m_w << " " << m_h << '\n' << m_colors << '\n'; 245 o << "Comment: " << im.m_comment << "\n";
|
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/ |
GpxParser.java | 268 * <p/>A track is composed of a list of {@link TrackPoint} and optional name and comment. 283 void setComment(String comment) { 284 mComment = comment;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/ |
XmlPrettyPrinter.java | 346 String comment = node.getNodeValue(); local 347 boolean multiLine = comment.indexOf('\n') != -1; 348 String trimmed = comment.trim(); 350 // See if this is an "end-of-the-line" comment, e.g. it is not a multi-line 351 // comment and it appears on the same line as an opening or closing element tag; 352 // if so, continue to place it as a suffix comment 378 // Put the comment on a line on its own? Only if it was separated by a blank line 407 // Comment before first child in node 414 // TODO: Reformat the comment text? 424 // Strip off blank lines at the beginning and end of the comment text [all...] |
/sdk/emulator/opengl/tests/gles_android_wrapper/ |
Android.mk | 16 ## comment for no debug
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
ExtractStyleRefactoring.java | 185 String comment = getName(); local 188 comment, //description 189 comment, //comment 511 public Descriptor(String project, String description, String comment, 514 project, description, comment, arguments);
|
/system/core/libpixelflinger/codeflinger/ |
texturing.cpp | 55 comment("compute initial iterated color (smooth and/or dither case)"); 133 comment("load initial iterated color (8888 packed)"); 138 comment("load initial iterated color (dest format packed)"); 336 comment("compute texture coordinates"); 452 comment("fetch texel"); 460 comment("reload s/t (multitexture or linear filtering)"); 467 comment("compute repeat/clamp"); 507 comment("compute linear filtering offsets"); 593 comment("iterate s,t"); 610 comment("merge base & offset") [all...] |
/external/zlib/contrib/minizip/ |
zip.c | 476 the global comment) 485 ZPOS64_T uMaxBack=0xffff; /* maximum size of global comment */ 538 the global comment) 547 ZPOS64_T uMaxBack=0xffff; /* maximum size of global comment */ 731 // read the comment from the standard central header. 784 /* zipfile global comment length */ 1058 const char* comment, int method, int level, int raw, [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/ |
ConfigResults.java | 627 void setInfos(int build_id, int summaryKind, String comment) { 634 buildResults.comment = comment;
|
/external/webkit/Source/WebCore/html/parser/ |
HTMLConstructionSite.cpp | 30 #include "Comment.h" 241 ASSERT(token.type() == HTMLToken::Comment); 242 attach(currentNode(), Comment::create(currentNode()->document(), token.comment())); 247 ASSERT(token.type() == HTMLToken::Comment); 248 attach(m_attachmentRoot, Comment::create(m_document, token.comment())); 253 ASSERT(token.type() == HTMLToken::Comment); 255 attach(parent, Comment::create(parent->document(), token.comment())); [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
LayoutMetadata.java | 100 Node comment = findComment(node); local 101 if (comment != null) { 102 String text = comment.getNodeValue(); 115 * Returns the given property specified in the given XML comment 118 * @param text the comment text for an XML node 225 // Remove the comment, along with surrounding whitespace if applicable 270 /** Finds the comment node associated with the given node, or null if not found */
|
/build/tools/zipalign/ |
ZipEntry.cpp | 108 * Initialize a new entry. Pass in the file name and an optional comment. 112 void ZipEntry::initNew(const char* fileName, const char* comment) 121 if (comment != NULL) 122 mCDE.mFileCommentLength = strlen(comment); 132 strcpy((char*) mCDE.mFileComment, comment); 605 /* grab comment, if any */ 664 /* write comment */ 694 ALOGD(" comment: '%s'\n", mFileComment);
|
ZipEntry.h | 160 * and comment so that we can properly size the LFH area. The 161 * filename is mandatory, the comment is optional. 163 void initNew(const char* fileName, const char* comment);
|
/external/chromium/net/test/ |
test_server_win.cc | 22 #pragma comment(lib, "crypt32.lib")
|
/external/grub/stage2/ |
stage2.c | 767 int pos = 0, literal = 0, comment = 0; local 811 if (comment) 814 comment = 0; 819 comment = 1;
|
/external/libpcap/ |
pcap1.h | 117 PCAP_COMMENT, /* comment */ 159 unsigned char comment[0]; member in struct:pcap1_info_comment
|
/external/libxml2/include/libxml/ |
SAX.h | 146 comment (void *ctx,
|
/external/llvm/lib/TableGen/ |
TGLexer.cpp | 126 // If this is the start of a // comment, skip until the end of the line or 326 return; // Newline is end of comment. 328 // If this is the end of the buffer, end the comment. 348 PrintError(TokStart, "Unterminated comment!"); 351 // End of the comment? 359 // Start of a nested comment?
|
/external/openssl/crypto/perlasm/ |
x86nasm.pl | 122 # comment out OPENSSL_ia32cap_P declarations 129 sub ::comment { foreach (@_) { push(@out,"\t; $_\n"); } }
|
/external/qemu/ |
ia64.ld | 182 .comment 0 : { *(.comment) }
|